Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. define y = ("Yukio")
  2. define location = 1
  3. label start:
  4.  
  5. scene bathroom
  6.  
  7. y "Where am I?"
  8. y "What happened?"
  9.  
  10. screen movement():
  11. frame:
  12. xalign 1.0 ypos 400
  13. imagebutton:
  14. idle "arrowPasive.png"
  15. if location = 1:
  16. action Jump("exit")
  17.  
  18. frame:
  19. xalign 0.0 ypos 400
  20. imagebutton:
  21. idle "arrowPasive.png"
  22. if location = 1:
  23. action Jump("living")
  24.  
  25.  
  26. call screen movement
  27.  
  28. label living:
  29. scene living
  30. y "It is night already..."
  31.  
  32. label exit:
  33. scene exit
  34. y "I need to find a way to open this door"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement