sleep_reflections.qsrc 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # sleep_reflections
  2. if $ARGS[0] = 'event_check':
  3. if test_var = 1: $sleep_events_priority[] = 'gs ''sleep_reflections'', ''test_reflection'' '
  4. !!check I did the code correct for these two
  5. if daystart >= anushkaQW['sleep_reflection_day'] + 7:
  6. if anushkaQW['sveta_love'] = 10: $sleep_events_priority[] = 'gs ''sleep_reflections'', ''anushka_love'' '
  7. end
  8. if daystart >= artemQW['sleep_reflection_day'] + 7:
  9. if artemQW['bf'] >= 1: $sleep_events_priority[] = 'gs ''sleep_reflections'', ''artem_love'' '
  10. end
  11. end
  12. if $ARGS[0] = 'end':
  13. sleepVars['sleep_reflection_day'] = daystart
  14. gs 'pre_sleep_events', 'event_end'
  15. end
  16. if $ARGS[0] = 'test_reflection':
  17. if ARGS[1] = 0: gt 'sleep_reflections', $ARGS[0], 1
  18. 'This is a test reflection!'
  19. 'Sveta is thinking deeply about "TEST_PERSON"'
  20. 'Wow, what interesting thoughts'
  21. act 'positive':
  22. *clr & cla
  23. test_var = 2
  24. 'You think positive things about "TEST_PERSON"!'
  25. act 'Go to sleep': killvar 'test_var' & gs 'sleep_reflections', 'end'
  26. end
  27. act 'negative':
  28. *clr & cla
  29. test_var = -1
  30. 'You think negative things about "TEST_PERSON"!'
  31. act 'Go to sleep': killvar 'test_var' & gs 'sleep_reflections', 'end'
  32. end
  33. act 'ignore': killvar 'test_var' & gs 'sleep_reflections', 'end'
  34. end
  35. !!check I did the code correctly for these two and at the top
  36. if $ARGS[0] = 'anushka_love':
  37. if ARGS[1] = 0: gt 'sleep_reflections', $ARGS[0], 1
  38. anushkaQW['sleep_reflection_day'] = daystart
  39. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/anushka/nush_model/sveta_photographer/set1/pose4.jpg"></center>'
  40. 'As you drift off to sleep you start thinking about all the time you have been spending with Anushka and how you feel around her. She is one of your best friends but something tugs at you that it might be something more. Perhaps you are falling in love with her?'
  41. act 'Yes you love her':
  42. *clr & cla
  43. anushkaQW['sveta_love'] += 1
  44. gs 'stat'
  45. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big144.jpg"></center>'
  46. 'The more you think about your time with Anushka the more you think about how her hair smells, the sound of her soft laugh, or how cute she looks when she has that trouble making smirk on her lips, how soft her skin feels under your touch... You suddenly realize that you have fallen in love with her, but what does this mean for the future? You know she has made it pretty clear she is not interested in being romantically involved with anyone, but maybe you can change her mind? Finally you drift off to sleep wonder what your future with Anushka will hold.'
  47. act 'Go to sleep': gs 'sleep_reflections', 'end'
  48. end
  49. act 'You are just friends':
  50. *clr & cla
  51. anushkaQW['sveta_love'] = -20
  52. gs 'stat'
  53. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big144.jpg"></center>'
  54. 'The more you think about your time with Anushka, the more you realize you are not in love with her. You love spending time with her, but she is just one of your best friends, that''s all.'
  55. act 'Go to sleep': gs 'sleep_reflections', 'end'
  56. end
  57. act 'ignore': gs 'sleep_reflections', 'end'
  58. end
  59. if $ARGS[0] = 'artem_love':
  60. if ARGS[1] = 0: gt 'sleep_reflections', $ARGS[0], 1
  61. artemQW['sleep_reflection_day'] = daystart
  62. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big2.jpg"></center>'
  63. 'As you drift off to sleep you start thinking about all the time you have been spending with Artem and how you agreed to be his girl friend. You have no doubts he is in love with you, but you are not sure how you feel about him. You like him, you care about him, but do you love him?'
  64. act 'Yes you love him':
  65. *clr & cla
  66. artemQW['love'] = 1
  67. gs 'stat'
  68. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big2.jpg"></center>'
  69. 'The more you think about your time with Artem the more you realize you have fallen in love with him. You finally drift off to sleep imagining your life with Artem.'
  70. act 'Go to sleep': gs 'sleep_reflections', 'end'
  71. end
  72. act 'No you don''t love him':
  73. *clr & cla
  74. artemQW['love'] = -1
  75. gs 'stat'
  76. '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big2.jpg"></center>'
  77. 'The more you think about your time with Artem, the more you realize you are not in love with him. You love spending time with him and he is a great guy, but you just don''t love him. You finally drift off to sleep wonder what the future will hold for you and Artem.'
  78. act 'Go to sleep': gs 'sleep_reflections', 'end'
  79. end
  80. act 'ignore': gs 'sleep_reflections', 'end'
  81. end
  82. --- sleep_reflections ---------------------------------