Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. screen episodes(scroll="viewport"):
  2.  
  3. ## Ensure other screens do not get input while this screen is displayed.
  4. modal True
  5.  
  6. frame:
  7. xsize 600
  8. ysize 500
  9. ypadding 50
  10. xalign 0.6
  11. yalign 0.5
  12.  
  13. top_padding 150
  14. left_padding 150
  15. right_padding 80
  16. bottom_padding 150
  17.  
  18. has viewport:
  19. mousewheel True
  20. draggable True
  21. #yinitial yvalue
  22. scrollbars "vertical"
  23.  
  24. vbox:
  25.  
  26. #xalign 0.5
  27. spacing 10
  28.  
  29. textbutton _("Unskippable Tutorial") action Start("E1") activate_sound "audio/Poxni_Confirm.wav" xalign 0.5
  30.  
  31. if persistent.E1==True:
  32. textbutton _("Sour Grapes") action Start("E2") activate_sound "audio/Poxni_Confirm.wav"
  33. if persistent.E2==True:
  34. textbutton _("Reflection Rejection, Rejection Reflection") action Start("E3") activate_sound "audio/Poxni_Confirm.wav"
  35. if persistent.E3==True:
  36. textbutton _("Worrywart") action Start("E4") activate_sound "audio/Poxni_Confirm.wav"
  37. if persistent.E4==True:
  38. textbutton _("Germination") action Start("E5") activate_sound "audio/Poxni_Confirm.wav"
  39. if persistent.E5==True:
  40. textbutton _("Incompatible Species") action Start("EPM1") activate_sound "audio/Poxni_Confirm.wav"
  41.  
  42. label _("Episode Select"):
  43. text_size 50
  44. text_font "gui/fonts/Revalia-Regular.ttf"
  45. #style "help" #"confirm_prompt"
  46. xalign 0.57
  47. yalign 0.25
  48.  
  49. textbutton _("Back") action Hide("episodes") xalign 0.355 yalign 0.8 activate_sound "audio/Poxni_Cancel.wav"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement