Advertisement
Guest User

Untitled

a guest
May 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function achmel()
  2. {
  3. NTC_PutSkill(NTConfig_AttackSkill[6], NTC_HAND_RIGHT);
  4.  
  5. var achmel = NTC_FindUnit(NTC_UNIT_MONSTER, 796);
  6.  
  7. while (achmel && achmel.hp > 0)
  8. {
  9. NTC_CastSkill(NTConfig_AttackSkill[5], NTC_HAND_LEFT, achmel);
  10. }
  11.  
  12. var company = NTC_FindUnit(NTC_UNIT_MONSTER, 105);
  13. do
  14. {
  15. while (company && company.hp >0)
  16. {
  17. NTC_CastSkill(NTConfig_AttackSkill[5], NTC_HAND_LEFT, company);
  18. }
  19. } while (company.GetNext());
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement