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

bug or what?

iSupreme

New Member
Joined
Oct 22, 2014
Messages
32
Reaction score
0
ok. lets see on skill fireball. chain skill of 3 stages - 1st first skill has cast time and when it casted u can use another 2 skill w/o casttime. IDs - 1st 10752, 2nd 24894, 3rd 24895
so, for example i want use 1st skill only w/o 2 instant skills of chain
Code:
           while (true)
           {
                UseSkill(10752);
               Thread.Sleep(100);
           }
Whata hell is that? why in client character use all 3 skills?
why i post about that? did u see difference between soft and hands when fireball casting? by hands 2nd and 3rd skill do with delay(say hello to ping), but with software when u spam whole chain it looks like 1 big fireball(boost damage!).so i wannt press key on keyboard(first skill) and software will do spam
Code:
           while (true)
           {
                UseSkill(24894);
                UseSkill(24895);
               Thread.Sleep(10);
           }
Because 2nd and 3rd skills cant be casted before 1st skill in chain i can easy keep runing script.

ЗЫ УМОЛЯЮ почините молнию(55й скил ветки магии) - при дистанции больше 10 метров постоянно пишет что нельзя скастовать скил.
 
Last edited:
Back
Top