Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #var portrait = Sprite
  2. #var background = Sprite
  3.  
  4. $ ShowBackground("background")
  5. $ speaker = "Merchant"
  6. $ ShowSprite("portrait")
  7. say speaker "Welcome"
  8.  
  9. label Start:
  10. say speaker "What can I do for you?"
  11.  
  12. choice "Shop":
  13. jump Shop
  14. choice "Goodbye":
  15. jump End
  16. choose
  17.  
  18. label Shop:
  19. $ Broadcast(3)
  20. choice "Exit":
  21. $ Broadcast(3)
  22. jump End
  23. choose
  24.  
  25. label End:
  26. say speaker "Watch yourself out there" no_wait
  27. pause 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement