NatBelGo.qsrc 1023 B

123456789101112131415161718192021222324252627
  1. # NatBelGo
  2. !2020/10/16
  3. menu_off = 1
  4. gs 'stat'
  5. '<center><b><font color="maroon"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></font></b></center>'
  6. '<center><img <<$set_imgh>> src="images/characters/shared/photos/big16.jpg"></center>'
  7. 'You go up to Natasha and she asks you, "Will you come to my house to do our homework?"'
  8. act 'Go with Natasha':
  9. *clr & cla
  10. minut += 15
  11. NatbelQW['VisitedHome'] = 1
  12. gs 'stat'
  13. '<center><b><font color="maroon"><<$npc_firstname[''A16'']>> <<$npc_lastname[''A16'']>></font></b></center>'
  14. '<center><img <<$set_imgh>> src="images/characters/shared/photos/big16.jpg"></center>'
  15. 'It takes you 15 minutes to walk to Natasha''s home. You discuss all the small stuff in your lives that amuse you.'
  16. if NatbelQW['QWstage'] < 2:
  17. act 'Go into the apartment': gt 'natbelapt', 'study_together'
  18. else
  19. act 'Study together': gt 'natbelapt', 'study_together'
  20. act 'Make her do your homework': gt 'natbelapt', 'make_her_do_homework'
  21. end
  22. end
  23. --- NatBelGo ---------------------------------