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

Auto-recasting?

kavex

Member
Joined
Oct 4, 2014
Messages
65
Reaction score
0
Is there an API to watch a skill's cooldown and recast it? (Not talking about fishing here)
 
not in one but this would work

while (true){
while (skillCooldown(skillName) != 0L) { thread.sleep (50); }
UseSkill (skillName,true,false);
}

obviously either replace skillName with the name, or send it as a parameter. if you send it as a parameter bear in mind that as it is it will never exit that loop or do anything else than cast that skill over and over.
 
Last edited:
Back
Top