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

Spell not casting

Status
Not open for further replies.

nick1988

New Member
Joined
Sep 1, 2014
Messages
163
Reaction score
2
I have one spell in my AutoEXP Plugin, that I just can't get to work. Can anyone of you see an error in the following code snippet?

Code:
if (skillCooldown("Insulating Lens") == 0)
{
UseSkill("Insulating Lens  ", true);  
Thread.Sleep(100);
}

All my other spells are build like this, and work so far. Just that one stupid spell won't seem to get used...
 
UseSkill("Insulating Lens ", true);
Change for (you have a few spaces at the end)
UseSkill("Insulating Lens", true);
 
lol, omg. that worked.. I hate it when such small errors happen. I looked at the stupid code for like half an hour and couldn't see whats wrong :P
 
lol, omg. that worked.. I hate it when such small errors happen. I looked at the stupid code for like half an hour and couldn't see whats wrong :P

Happens to the best. Haha.
Keep up working on those routines and thanks for releasing it!
 
Status
Not open for further replies.
Back
Top