Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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. put watch
  15. wait
  16. marauder:
  17. pause
  18. if matchre ("$roomobjs", "marauder") then goto deadfall
  19. else goto marauder
  20. deadfall:
  21. put cast
  22. wait
  23. pause .5
  24. attack:
  25. put attack
  26. wait
  27. if matchre ("$roomobjs", "((which|that) appears dead|\(dead\))") then goto loot
  28. else goto attack
  29.  
  30. loot:
  31. put loot
  32. wait
  33. put hide
  34. wait
  35. pause
  36.  
  37.  
  38. match top You prepare yourself to sneak off deeper into the bank.
  39. match done You begin to sneak out of the bank.
  40. put sneak
  41. matchwait
  42.  
  43.  
  44. done:
  45. exit
  46.  
  47. rope:
  48. put cut rope
  49. put release spell
  50. wait
  51. goto loot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement