Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. import Character
  2. import DataType
  3. import Field
  4. import Inventory
  5. import Npc
  6. import Quest
  7. import Terminal
  8. import time
  9. import GameState
  10.  
  11. #change charCount to 1 if you're solo without a Kanna Mule.
  12. #change skill to the skill you want to inject
  13. #assign the actual skill delay of the skill to skillDelay (in ms)
  14. charCount = 2
  15. skillOne = 41121011
  16. skillTwo = 41121021
  17.  
  18. #delete the second statement if you want to kill elite bosses.
  19. if Field.GetCharacterCount()<=charCount and Field.GetEliteState() !=2:
  20. skilloneCount = 0
  21. skilltwoCount = 0
  22. for x in range(0,90,1):
  23. if skilloneCount < 8:
  24. Character.UseSkill(skillOne)
  25. time.sleep(0.008)
  26. skilloneCount += 1
  27. if skilltwoCount < 8:
  28. Character.UseSkill(skillTwo)
  29. skilltwoCount += 1
  30. if x%18 == 0:
  31. skilloneCount = 0
  32.  
  33. time.sleep(0.008)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement