Advertisement
heroofhyla

Trevor

Jan 27th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. ## Trevor, the brother in the hallway.
  2.  
  3. portrait left hero
  4. portrait right buddy
  5.  
  6. jumpif les_sucks @got_book_back == true
  7. jumpif give_thanks @have_textbook == true
  8. jumpif give_combination @know_combination == true
  9. jumpif remind_about_combination @need_combination == true
  10. jumpif ask_about_textbook @need_textbook == true
  11.  
  12. label normal_convo
  13. message right Hey there!
  14. subif introduce @met_trevor != true
  15. message left Yo.
  16. finish
  17.  
  18.  
  19. label ask_about_textbook
  20. message right Hey there!
  21. subif introduce @met_trevor != true
  22. message left Hey Trevor. I think you still have my bio textbook.
  23. message left Can I get it back?
  24. message right Aw, jeez.
  25. message left That doesn't sound good.
  26. message right It's in my locker, but I forgot the combination again.
  27. message left Don't you have it written down somewhere?
  28. message right Hmm....
  29. message right Oh! My brother might know. Can you go ask him?
  30. message left Alright.
  31. set @need_combination true
  32. finish
  33.  
  34.  
  35. label remind_about_combination
  36. message right My brother probably knows my locker combination.
  37. message right You'll need to get it from him if you want your bio textbook.
  38. finish
  39.  
  40.  
  41. label give_combination
  42. message right Any luck with the combination?
  43. message left Yeah, Winston knew it.
  44. message left It's 23-19-49.
  45. message right Oh yeah, that rings a bell!
  46. message right One sec, I'll get your book.
  47. blackout
  48. wait 2
  49. reveal
  50. message right Got it!
  51. message left Thanks!
  52. set @have_textbook true
  53. finish
  54.  
  55.  
  56. label give_thanks
  57. message right Thanks for getting me my locker combo.
  58. message left No problem. Thanks for keeping my textbooks safe from Les.
  59. finish
  60.  
  61.  
  62. label les_sucks
  63. message right So Les wound up ruining your books again, huh.
  64. message right I guess hiding them in my locker wasn't enough.
  65. message right I'm really sorry.
  66. message left Not your fault.
  67. message right Still ...
  68. finish
  69.  
  70.  
  71. label introduce
  72. thought left This is Trevor.
  73. thought left He and his brother Winston live next door.
  74. set @met_trevor true
  75. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement