artem_date_events_uni.qsrc 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # artem_date_events_uni
  2. !! artemQW['bj'] = number of blowjobs
  3. !! artemQW['sex'] = 1 when Pc had vaginal sex with Artem
  4. !! artemQW['anal'] = 1 when Pc had anal sex with Artem
  5. !! artemhj = number of handjobs
  6. !! artemQW['artembrokenheart'] = 1 artem is heart broken
  7. !! artemQW['stripsee'] = number of strips for Artem
  8. !! artemQW['artemlove'] = 1 Artem is in love with Sveta
  9. !! artemQW['artemblok'] = 1 artem is blocked
  10. !! artemQW['bf'] = 1 they are boy friend and girl friend
  11. !! artemQW['dryhump'] = number of dryhumps
  12. !! artemQW['artlove'] = 2 Pc rejected Artems love
  13. !! artemQW['artlie'] =1 Pc lied to artem about the dimka video, blocks love content
  14. !! artemQW['artfall'] = 10 Artem wants to asks her out on a date
  15. !! artemQW['date'] = number of dates after 10 he is in love
  16. !! artemQW['dimka'] =1 Artem removed the blackmail video
  17. !! artemQW['slutlove'] = 1 .. Pc became know as a slut in Pavlovsk and keeps dating Artem
  18. !! artemQW['sveslut'] = 1 .. Artem knows that Pc is a slut but they stay friends
  19. !! artemQW['nush3some_ask'] += 1 Sveta talked about threesome with Nush, unlocks talk with Artem, +=2 unlocks sex scene, += 3 means they had a threesome
  20. if $ARGS[0] = 'firstdate':
  21. *clr & cla
  22. npc_rel['A2'] += 1
  23. menu_off = 1
  24. '<center><img <<$set_imgh>> src="images/locations/shared/park/walk_<<rand(1,2)>>.jpg"></center>'
  25. 'You enjoy a pleasant walk in the around the quad while making small talk with Artem.'
  26. 'After a while, you end up near the small movie theater on campus. Artem''s eyes light up when he sees it. "Hey, let''s go see a movie!"'
  27. minut += 15
  28. gs 'stat'
  29. act 'Sounds like fun':
  30. *clr & cla
  31. npc_rel['A2'] += 1
  32. minut += 120
  33. gs 'stat'
  34. '<center><img <<$set_imgh>> src="images/locations/shared/cinema/kino_<<rand(1,3)>>.jpg"></center>'
  35. 'You enter the movie theater with Artem. After he buys the tickets and some popcorn, candy and soda for the two of you, you head into the dark theater and find some seats in the back row to watch the movie.'
  36. act 'Leave the theater':
  37. *clr & cla
  38. minut += 10
  39. gs 'stat'
  40. '<center><img <<$set_imgh>> src="images/locations/shared/park/walk_<<rand(1,2)>>.jpg"></center>'
  41. 'When the movie ends, you and Artem leave the theater and he offers to walk you back to the dorms.'
  42. 'Arriving outside your dorm building, Artem stops and looks at you. "I had fun, <<$pcs_nickname>>."'
  43. 'You smile at him. "Me too."'
  44. 'He smiles widely. "Great! Maybe we can do it again some time?"'
  45. 'You nod. "Maybe. We''ll see."'
  46. 'He smiles and nods. "Okay, I better get home. Talk to you later."'
  47. '"Bye Artem," you reply and he heads to his dorm room.'
  48. act 'Go back to the dorms': gt 'uni_dorm', 'start'
  49. end
  50. end
  51. act 'Just keep walking':
  52. *clr & cla
  53. minut += 30
  54. gs 'stat'
  55. '<center><img <<$set_imgh>> src="images/locations/shared/park/walk_<<rand(1,2)>>.jpg"></center>'
  56. 'You don''t really feel like going to the cinema. "Let''s just enjoy the walk we''re on."'
  57. 'Artem is happy enough to just spend time with you, regardless of what the two of you are doing. He nods as you continue on your walk, talking about everyday things. After a while, he checks his watch. "We should be getting back. I''ll walk you to your door."'
  58. 'Once you''re outside your apartment door, Artem stops and looks at you. "I had fun, <<$pcs_nickname>>."'
  59. 'You smile at him. "Me too."'
  60. 'He smiles widely. "Great! Maybe we can do it again some time?"'
  61. 'You nod. "Maybe. We''ll see."'
  62. 'He smiles and nods. "Okay, I better get home. Talk to you later."'
  63. '"Bye Artem," you reply and he walks back down the stairs to his apartment.'
  64. act 'Go back to the dorms': gt 'uni_dorm', 'start'
  65. end
  66. end
  67. if $ARGS[0] = 'artem_date':
  68. *clr & cla
  69. npc_rel['A2'] += 1
  70. menu_off = 1
  71. gt 'artem_date_events', 'firstdate'
  72. !{this is what it will look like when batman finishes the dates, 3 special dates that each happen once and then three repeatable dates. For now can we just temporarily have it repeat the first date above so we can get the artem revamp in the dev builds to bug hunt and then we can add the others when he finishes them.
  73. if artem_date = 1:
  74. elseif artem_date = 2:
  75. elseif artem_date = 3:
  76. else
  77. repeat_date = rand(1,3)
  78. if repeat_date = 1:
  79. elseif repeat_date = 2:
  80. elseif repeat_date = 3:
  81. else
  82. end
  83. end}
  84. end
  85. --- artem_date_events_uni ---------------------------------