Guest User

Untitled

a guest
Jan 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. ZOMBIE_MAIN:
  2. put stow mace
  3. put stow shield
  4. pause .5
  5. if matchre("$roomobjs", "(\S+) ((which|that) appears dead|\(dead\))") then
  6. {
  7. setvar perf $1
  8. put prep cfb 13
  9. put perform preserve on %perf
  10. pause 4
  11. put perform arise on %perf
  12. pause 10
  13. put cast
  14. put get mace
  15. pause .5
  16. put command zombie give
  17. pause 3
  18. put get shield from pack
  19. put command zombie give
  20. pause 3
  21. put command zombie stance offensive
  22. pause 3
  23. put command zombie behavior aggressive
  24. pause 3
  25. put command zombie special
  26. pause 3
  27. }
  28. ZOMBIE_HEAL:
  29. put prep nr
  30. pause 10
  31. put perform cut
  32. pause 3
  33. put harn 3
  34. pause 3
  35. match ZOMBIE_HEAL_DONE The reconstruction has been completed
  36. matchwait 3
  37.  
  38. MANA_CHECK:
  39. if ($mana < 80) then goto LOW_POWER
  40. else goto ZOMBIE_HEAL
  41.  
  42. LOW_POWER:
  43. pause 10
  44. goto MANA_CHECK
  45.  
  46. ZOMBIE_HEAL_DONE:
  47. exit
Add Comment
Please, Sign In to add comment