Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1.  
  2. action goto rope when You see an oil lamp overhead hanging from a rope. Perhaps you could cut that as a distraction!
  3.  
  4.  
  5. top:
  6. pause
  7. if $hidden = 0 then put hide
  8. pause .5
  9. pause .5
  10. put prep dead 15
  11. put watch
  12. waitfor Roundtime
  13. pause .5
  14. marauder:
  15. pause
  16. if matchre ("$roomobjs", "marauder") then goto deadfall
  17. else goto marauder
  18. deadfall:
  19. put cast
  20. wait
  21. pause .5
  22. attack:
  23. put attack
  24. wait
  25. if matchre ("$roomobjs", "((which|that) appears dead|\(dead\))") then goto loot
  26. else goto attack
  27.  
  28. loot:
  29. put loot
  30. wait
  31. put stow gem
  32. put stow gem
  33. wait
  34. put hide
  35. wait
  36. pause
  37.  
  38.  
  39. match top You prepare yourself to sneak off deeper into the bank.
  40. match done You begin to sneak out of the bank.
  41. put sneak
  42. matchwait
  43.  
  44.  
  45. done:
  46. exit
  47.  
  48. rope:
  49. put cut rope
  50. put release spell
  51. wait
  52. goto loot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement