Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function BigHeal(){
  2.  
  3. if (Orion.ScriptRunning('EZpots')) {
  4. Orion.PauseScript('EZpots');
  5. Orion.CharPrint('self', '1153', '!!Pausing Pots!!');
  6. Orion.Exec('ThrowExplosion', true);
  7. Orion.CharPrint('self', '33', '!!Toss Pot Need to Heal!!');
  8. Orion.Wait(500);
  9. }
  10.  
  11. if (Player.Poisoned())
  12. Orion.Cast('Cure', self);
  13. else
  14. Orion.Cast('Greater Heal', self);
  15. Orion.Wait(500);
  16.  
  17. if (Orion.ScriptRunning('EZpots')){
  18. Orion.Wait(1000);
  19. Orion.Terminate('EZpots')
  20. return;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement