NatBelGo.qsrc 977 B

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