Advertisement
Daedroth

Untitled

Jan 7th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. Begin Boss_sct
  2.  
  3.  
  4. short Once
  5.  
  6. if ( Boss->GetHealth > 0 )
  7. if ( Boss->GetHEalthGetRatio < 50 )
  8. set Once to Random 3
  9. if ( Once == 1 )
  10. if ( Cultist_1->GetHealth > 0 )
  11. Cultist_1->cast Heal_spell Boss
  12. set Once to 4
  13. else
  14. return
  15. endif
  16. elseif ( Once == 2 )
  17. if ( Cultist_2->GetHealth > 0 )
  18. Cultist_2->cast Heal_Spell Boss
  19. set Once to 4
  20. else
  21. return
  22. endif
  23. elseif ( Once == 0 )
  24. return
  25. elseif ( Once == 4 )
  26. set Once to 0
  27. return
  28. endif
  29. endif
  30. if ( Cultist_1->GetHEalth <= 0 )
  31. Cultist_1->resurrect
  32. endif
  33. if ( Cultist_1->GetHEalth <= 0 )
  34. Cultist_1->resurrect
  35. endif
  36. endif
  37.  
  38. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement