What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Fight 4 Me - Stone Arrow

Make sure your using the Gladiator version, I do arenas everyday and it has never failed me
 
if i do

if (skillCooldown("Redoubt") == 0 || skillCooldown("Freerunner") == 0 && hpp(me) <= 95)
{
UseSkillAndWait("Redoubt", true);
Thread.Sleep(10);
UseSkillAndWait("Freerunner", true);
Thread.Sleep(10);
}

Insted:

if (skillCooldown("Redoubt") == 0 || skillCooldown("Freerunner") == 0 && hpp(me) <= 95)
{
UseSkillAndWait("Redoubt", true);
Thread.Sleep(40);
UseSkillAndWait("Freerunner", true);
Thread.Sleep(40);
}

in both cases the character gona cast the two buffs? or if I remove the delay the character will use the first and ignore the second buff?
 
if i do

if (skillCooldown("Redoubt") == 0 || skillCooldown("Freerunner") == 0 && hpp(me) <= 95)
{
UseSkillAndWait("Redoubt", true);
Thread.Sleep(10);
UseSkillAndWait("Freerunner", true);
Thread.Sleep(10);
}

Insted:

if (skillCooldown("Redoubt") == 0 || skillCooldown("Freerunner") == 0 && hpp(me) <= 95)
{
UseSkillAndWait("Redoubt", true);
Thread.Sleep(40);
UseSkillAndWait("Freerunner", true);
Thread.Sleep(40);
}

in both cases the character gona cast the two buffs? or if I remove the delay the character will use the first and ignore the second buff?

I do not know. I cannot see what you are using for: "UseSkillAndWait"
If I had to guess though, yes it should cast both in both cases.

You should change either your || operator or include nested if statements to check for cooldowns.

Right now your code says that even if Freerunner is not off CD, and even if you are not below or at 95% health, if Redoubt is off CD your character will try to cast Redoubt and Freerunner.
c# - OR, AND Operator - Stack Overflow
 
Can you make it so that if you use the 'gladiator' one, it runs in for you and you also have the option of turning it off as a widget?
 
Can you make it so that if you use the 'gladiator' one, it runs in for you and you also have the option of turning it off as a widget?

I would have to read into how to make it run as a widget first. I might look into doing so in the near future yes. As far as making it run in for you, no I can't do that.
 
anyway you can make a darkrunner version that doesnt move at all either :(

Yes, but I've been running short on spare time since college classes started.
I made one a while back, had someone test it, and the build I used for it ended up being really bad for botting.
 
Back
Top