Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. #Turbo
  2.  
  3. Sub Main
  4. /declare ReslowDelay 360
  5. /declare ReslowTimer timer ${ReslowDelay}s
  6. /declare SlowSpell string outer Turgur's Insects
  7. /declare i int local 0
  8.  
  9. /declare Mobs[4] int local
  10. /if (${Spawn[npc Slakiz].ID}) /varset Mobs[1] ${Spawn[npc Slakiz].ID}
  11. /if (${Spawn[npc Yasiz].ID}) /varset Mobs[2] ${Spawn[npc Yasiz].ID}
  12. /if (${Spawn[npc Heriz].ID}) /varset Mobs[3] ${Spawn[npc Heriz].ID}
  13. /if (${Spawn[npc Nilasz].ID}) /varset Mobs[4] ${Spawn[npc Nilasz].ID}
  14.  
  15. /for i 1 to 4
  16. /if (!${Mobs[${i}]}) {
  17. /echo Failed to find one of the slow mobs. Exiting.
  18. /endmacro
  19. }
  20. /next i
  21.  
  22. |Retard Check:
  23. /stand
  24.  
  25. /echo All 4 slow targets located, pausing macro. When you are ready to begin type /mqp.
  26. /mqp
  27. /echo Now begining to slow.
  28.  
  29. :SlowLoop
  30. /stand
  31. /varset ReslowTimer ${ReslowDelay}s
  32. /for i 1 to 4
  33. /casting "${SlowSpell}" -targetid|${Mobs[${i}]} -maxtries|5
  34. /delay 5s ${Me.Casting.ID}
  35. /delay 5s !${Me.Casting.ID}
  36. /delay 15
  37. /next i
  38. /sit
  39. /delay 6m !${ReslowTimer.Value}
  40. /goto :SlowLoop
  41.  
  42.  
  43. /return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement