Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1.  
  2. #dyn 0x740000
  3. #org @start
  4. '-----------------------------------
  5. special 0x187
  6. compare LASTRESULT 2
  7. if == jump :end
  8. lockall
  9. storeitem 0 FLUFFYTAIL
  10. checkitem FLUFFYTAIL 1
  11. compare LASTRESULT 0
  12. if == jump @donthave ' Smaller Than
  13. msgbox @havemsg ' This rock appears to...
  14. callstd MSG_YESNO ' Yes/No message
  15. compare LASTRESULT 0
  16. if == jump :end
  17. removeitem FLUFFYTAIL 1
  18. msgbox @IusedThis ' \v\h02 used \v\h03!
  19. callstd MSG_NOCLOSE ' Non-closing message
  20. applymovement LASTTALKED @move ' rock_animate end
  21. pauseevent 0
  22. disappear LASTTALKED
  23. :end
  24. releaseall
  25. end
  26.  
  27. #org @donthave
  28. '-----------------------------------
  29. msgbox @donthavemsg ' It's a cursed rock, ...
  30. callstd MSG_SIGN
  31. end
  32.  
  33.  
  34.  
  35. #org @havemsg
  36. = This rock appears to be breakable.\nWould you like to use a \v\h02?
  37.  
  38. #org @IusedThis
  39. = \v\h01 used the \v\h02!
  40.  
  41. #org @donthavemsg
  42. = It's a cursed rock, but a \v\h02\nmay be able to smash it.
  43.  
  44. #org @move
  45. lock
  46. M rock_animate end
  47. m run_up run_left run_left run_left run_left run_left run_left run_left run_left run_left run_left run_left run_left end
  48. release
  49. end
Add Comment
Please, Sign In to add comment