Jump to content

Recommended Posts

Hi, 

I want know how change the timer the robot click for release spirit ?

Its not credible when the robot accept to release spirit, he click instant when he die. I dont have problem in my leveling my chars and when i battleground today this is my 4 account in one day banned. 

 

Thank for your help

 

Link to comment
https://wrobot.eu/forums/topic/8250-change-time-to-release-spirit/
Share on other sites

Hello, try plugin like: Main.cs

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        robotManager.Events.FiniteStateMachineEvents.OnRunState +=
            delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable)
            {
                if (wManager.Wow.Helpers.Battleground.IsInBattleground() && state is wManager.Wow.Bot.States.ResurrectBG)
                {
                    System.Threading.Thread.Sleep(1000);
                }
            };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(replace 1000 by wait time in ms)

On 13/01/2018 at 2:45 AM, Droidz said:

Hello, try plugin like: Main.cs

(replace 1000 by wait time in ms)

There is no way to get this put into the main product via default?

 

instant release on death is an easy flag for people spotting bots in PvP.  I dont see any downsides on a 2-4 random second delay on release.

2 minutes ago, eeny said:

There is no way to get this put into the main product via default?

 

instant release on death is an easy flag for people spotting bots in PvP.  I dont see any downsides on a 2-4 random second delay on release.

Tons of addons will auto-release in battlegrounds. This is not the reason why you get banned in battlegrounds...

On 16/01/2018 at 10:49 PM, eeny said:

There is no way to get this put into the main product via default?

 

instant release on death is an easy flag for people spotting bots in PvP.  I dont see any downsides on a 2-4 random second delay on release.

I'll add this

  • 8 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...