placer_act.qsrc 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. # placer_act
  2. gs 'skverdin'
  3. $ev_name = $placerStringParameter['ev_name']
  4. if placerParameter['player_act'] = 0:
  5. menu_off = 1
  6. gs 'npcgeneratec', 0, 'Stranger', rand(18,35)
  7. gs 'boyStat', $npclastgenerated
  8. gs 'stat'
  9. if placerParameter['friend_index'] > 0:
  10. $text_mod = ' Your girlfriend <<$ev_name>> introduces herself too.'
  11. else
  12. $text_mod = ''
  13. end
  14. $npc_usedname[$boy] = $npc_nickname[$boy]
  15. $boydesc = $npc_nickname[$boy]
  16. if placerParameter['recognize_status'] = 2:
  17. !!random Gopniks
  18. if month=1 or month=2 or month=12 or month=11:
  19. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/skver_znacom_1.jpg"></center>'
  20. else
  21. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/skver_znacom_3.jpg"></center>'
  22. end
  23. 'You stop and look at the guy who approached you. You don''t think you''ve ever seen him before. He introduces himself: "My name is <<$boydesc>>."'
  24. 'You smile as you reply: "I''m <<$pcs_nickname>>."'+$text_mod
  25. '<<$boydesc>> invites you: "Pleased to meet you, <<$pcs_nickname>>! Would you like to have a beer with me?"'
  26. !!if placerParameter['friend_index'] = 0:end
  27. if placerParameter['friend_index'] > 0:'<<$ev_name>> whispers to you: "I''m not so sure about this, <<$pcs_nickname>>! I think we should go..."'
  28. else
  29. !!random normal guys
  30. if month=1 or month=2 or month=12 or month=11:
  31. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/skver_znacom_1.jpg"></center>'
  32. else
  33. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/skver_znacom_3.jpg"></center>'
  34. end
  35. 'You stop and look at the guy who approached you. You don''t think you''ve ever seen him before. He introduces himself: "My name is <<$boydesc>>."'
  36. 'You smile as you reply: "I''m <<$pcs_nickname>>."'+$text_mod
  37. '<<$boydesc>> invites you: "Pleased to meet you, <<$pcs_nickname>>! Would you like to have a beer with me?"'
  38. if placerParameter['number_of_man'] = 1 and placerParameter['friend_index'] > 0:
  39. '<<$ev_name>> whispers to you: "Who do you think he likes more, <<$pcs_nickname>>? You or me?"'
  40. elseif placerParameter['number_of_man'] > 1:
  41. 'Vying for the guys'' attention, you happily accept <<$boydesc>>''s invitation and introduce yourself to everyone.'
  42. if placerParameter['friend_index'] > 0:'<<$ev_name>> whispers to you: "They''re cute, <<$pcs_nickname>>! Let''s stay for a while and see what happens?"'
  43. end
  44. end
  45. act 'Drink some beer':placerParameter['player_act'] = 1 & gt $curloc
  46. if placerParameter['friend_index'] = 0:act 'Decline and leave':gt 'pav_park', 'start'
  47. if placerParameter['friend_index'] > 0:
  48. act 'Leave with your friend':
  49. *clr & cla
  50. gs 'stat'
  51. if placerParameter['friend_slut'] < 80:gt 'placer_end'
  52. if placerParameter['friend_slut'] >= 80:
  53. '<<$ev_name>> whispers to you: "Don''t be such a bore, <<$pcs_nickname>>! I want to stay, he''s cute! Come on, stay with me and live a little!"'
  54. gs 'willpower', 'drink', 'resist', 'medium'
  55. if will_cost <= pcs_willpwr:
  56. act 'Leave your friend behind and go (<<will_cost>> Willpower)':
  57. gs 'willpower', 'pay', 'self'
  58. gs 'stat'
  59. gt 'pav_park', 'start'
  60. end
  61. else
  62. act 'Leave your friend behind and go (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  63. end
  64. act 'Drink some beer with them':placerParameter['player_act'] = 1 & gt $curloc
  65. act 'Drag your friend away':gt 'placer_end'
  66. end
  67. end
  68. end
  69. end
  70. !!if placerParameter['slut_visual'] > 0:placerParameter['know_slut'] = 1
  71. !!!!!!!!!!!!!!!
  72. !!!drink beer!!!
  73. !!!!!!!!!!!!!!!
  74. if placerParameter['player_act'] = 1:
  75. menu_off = 1
  76. minut += 5
  77. gs 'drugs', 'alcohol', 'beer'
  78. gs 'stat'
  79. if placerParameter['friend_index'] > 0:$textsub = ' and your friend'
  80. if placerParameter['friend_index'] = 0:$textsub = ''
  81. if placerParameter['number_of_man'] = 1:$textsub2 = 'guy'
  82. if placerParameter['number_of_man'] > 1:$textsub2 = 'guys'
  83. 'You<<$textsub>> join the <<$textsub2>> for some beers, and go to a more secluded area of the park. <<$boydesc>> pours beer into plastic cups and hands them out. The beer is nice and cold, and you<<$textsub>> have a chat with <<$boydesc>> while the <<$placerStringParameter[''text_someone'']>> mess around.'
  84. if placerParameter['recognize_status'] = 2:
  85. !!gopniks in the park, 3-6
  86. if placerParameter['friend_index'] = 0:
  87. if placerParameter['know_slut'] = 0:
  88. '<<$boydesc>> excuses himself for a moment, and then surprises you when he comes up to you from behind. He puts his arms around your waist while kissing your neck. The other guys are mostly ignoring you and are talking among one another, though you do see one or two jealous glances from them.'
  89. gs 'arousal', 'kiss', 5
  90. gs 'stat'
  91. act 'Kiss the guy':
  92. *clr & cla
  93. gs 'stat'
  94. '<center><img <<$set_imgh>> src="images/shared/sex/kiss/kiss.jpg"></center>'
  95. 'You kiss <<$boydesc>> on his lips and embrace him, and soon his hands are exploring your body. He whispers to you: "Come on, you cute little thing... let''s go somewhere a bit more private" while he roughly kneads your ass through your clothes. His friends are watching you intently.'
  96. gs 'arousal', 'kiss', 5
  97. gs 'stat'
  98. gs 'willpower', 'sex', 'resist', 'hard'
  99. if will_cost <= pcs_willpwr:
  100. act 'Refuse and leave (<<will_cost>> Willpower)':
  101. gs 'willpower', 'pay', 'resist'
  102. gs 'stat'
  103. gt 'pav_park', 'start'
  104. end
  105. else
  106. act 'Refuse and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  107. end
  108. act 'Go with the guys':
  109. *clr & cla
  110. minut += 5
  111. gs 'drugs', 'alcohol', 'vodka'
  112. gs 'stat'
  113. 'The guys holler when they hear you agree... you guess they''re just happy for their friend?'
  114. '<<$boydesc>> takes you by the hand, and you walk down the street with the group of Gopniks. They lead you to a shabby house, and let you in.'
  115. 'The boys quickly clear the empty beer bottles from the table, and put out some vodka and snacks. The vodka is poured into glasses, and <<$boydesc>> offers you one with a generous smile.'
  116. 'You slam it down, feeling a shiver run down your spine when you feel the vodka slide down towards your stomach. It doesn''t taste particularly well, but you figure it would be rude to not accept their hospitality. You have a few bits of anchovies from a bowl while you talk to the guys. All of them are suddenly showing far more interest in you than before.'
  117. act 'Continue':gt 'gopnik_house', 'start'
  118. end
  119. end
  120. act 'Ask him to stop touching you':
  121. *clr & cla
  122. minut += 5
  123. gs 'stat'
  124. 'You push <<$boydesc>>''s hands away from your body, and quietly whisper to him: "Please, stop touching me like that! Do you treat all girls like this?"'
  125. if rand(0, 2) = 0:
  126. 'One of his friends pulls out a bottle of vodka from his backpack, and says: "Come on guys, beer is for kids! Today we drink like men!"'
  127. 'His friends cheer loudly, while another guy quickly runs off to gather some snacks and plastic cups, which the guy who brought the vodka forgot for some reason.'
  128. 'Soon his friend returns with the cups, and the vodka is poured out into the plastic cups. When they hand out the cups, you notice that yours has a fair bit more vodka in it than the cups the guys get.'
  129. act 'Drink':
  130. *clr & cla
  131. minut += 5
  132. gs 'drugs', 'alcohol', 'vodka'
  133. gs 'stat'
  134. 'You smile at the guys and propose a toast: "To meeting new friends!"'
  135. 'They happily toast with you. You eat some anchovies from a jar that someone brought, while you take sips of your vodka. It''s the cheap kind, and it doesn''t taste very good.'
  136. 'When your cup is nearly empty, <<$boydesc>> generously pours more in your glass with a confident smile. The guys persuade you to keep drinking, saying how much they are enjoying you spending time with them.'
  137. gs 'willpower', 'drink', 'resist', 'hard'
  138. if will_cost <= pcs_willpwr:
  139. act 'Refuse to drink more and leave (<<will_cost>> Willpower)':
  140. gs 'willpower', 'pay', 'resist'
  141. gs 'stat'
  142. gt 'pav_park', 'start'
  143. end
  144. else
  145. act 'Refuse to drink more and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  146. end
  147. act 'Keep drinking':
  148. *clr & cla
  149. minut += 5
  150. gs 'drugs', 'alcohol', 'vodka'
  151. gs 'stat'
  152. 'You smile at them and bring the cup to your lips, slowly sipping it down. It still doesn''t taste very good, but you''re starting to care less as you become more and more drunk.'
  153. if alko < 6:
  154. 'The vodka has you feeling quite drunk, but you are still able to think. At a certain point in the conversation, you see the smiles on the Gopniks'' faces make place for rather greedy grins. Suddenly everyone''s looking at you, ogling your body from top to bottom.'
  155. 'A few of the guys approach you and pick you up, despite your meek protests. You''re too drunk to really resist, and just let it happen. They carry you towards one of the old houses in the area, and help you down the stairs to the basement. While they carry you there, one of them hisses to you: "You''ve made use of our hospitality for long enough, <<$pcs_nickname>>... it''s time you do something for us in return."'
  156. 'You guess this is what they do with all the unlucky girls they meet in the park. The basement they guide you to smells horrible. The smell of sewage makes you sick to your stomach, while the guys push you down onto the sole mattress in the basement.'
  157. elseif alko >= 6:
  158. 'You feel very dizzy, and your vision is a bit blurry now. Suddenly you feel a few strong hands on your arms, pulling you up. You try to ask them where they are taking you, but the guys just grin and tell you not to worry as they leave the park with you between them. You have no clue where they''re taking you, but after a few minutes you''re dumped onto a dirty mattress. The room you''re in smells horrible, you begin to feel sick from the obnoxious sewage odour.'
  159. end
  160. act 'Continue':gt 'podval_rape'
  161. end
  162. end
  163. act 'Leave':gt 'pav_park', 'start'
  164. elseif rand(0, 1) = 0:
  165. 'One of the guys suggests: "Hey guys, we don''t have to hang around in the park all day! The house should be available right now, maybe we can show <<$pcs_nickname>> around there and not have people stare us down all day!"'
  166. 'The guys all raise their cups and cheer, which you''re pretty sure counts as a yes. The boys then all look at you expectantly, hoping you will come with them.'
  167. act 'Go with the guys':
  168. *clr & cla
  169. minut += 5
  170. gs 'drugs', 'alcohol', 'vodka'
  171. gs 'stat'
  172. 'You''re having a good time with them... why not? You nod at the guys and smile as you say: "Sounds like fun, guys! Let''s go!"'
  173. 'The guys leave the park with you in the middle of their group, happily chatting about everyday things while they guide you to a shabby old house. One of them produces a key, and you follow them inside.'
  174. 'It''s a rather poorly maintained house, but you don''t want to be rude and take a seat on a chair while some of the guys are busy putting out some snacks and pouring vodka into glasses. You notice that your glass has a lot more vodka in it than the other guys get, but don''t think much of it... maybe they''re just trying to be nice?'
  175. 'The boys drain their glasses quickly, and encourage you to do the same. You bravely follow their lead, and swallow down the vodka with one large gulp.'
  176. act 'Continue':gt 'gopnik_house', 'start'
  177. end
  178. gs 'willpower', 'sex', 'resist', 'hard'
  179. if will_cost <= pcs_willpwr:
  180. act 'Mumble an excuse and leave (<<will_cost>> Willpower)':
  181. gs 'willpower', 'pay', 'resist'
  182. gs 'stat'
  183. gt 'pav_park', 'start'
  184. end
  185. else
  186. act 'Mumble an excuse and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  187. end
  188. else
  189. 'One of the guys suggests: "Hey guys, there''s no need for us to hang around in the park all day. I know a place where we can hang out and enjoy a drink in private!"'
  190. 'After some debate, the guys agree to go there. From some of the stares your group has been getting while you enjoyed your drinks, you can''t blame them. They all look at you expectantly, hoping you will come with them.'
  191. act 'Go with the guys':
  192. *clr & cla
  193. minut += 5
  194. gs 'stat'
  195. 'You agree to join them, and the Gopniks happily guide you out of the park. You walk for a few minutes, until you stop in front of a shabby looking house. To your surprise, they don''t open the door to the house, but walk around the back and open an unlocked trap door to a basement.'
  196. act 'Follow them into the basement':
  197. *clr & cla
  198. minut += 5
  199. gs 'stat'
  200. 'You walk down the stairs after them, and enter the basement. It''s dark, damp and smells of sewage. When someone flicks on a light, you see that the room holds little more than a soiled mattress and a lot of empty bottles.'
  201. 'When you look at the Gopniks to ask what''s going on, you cal tell that all friendliness is gone from their faces. Ohe of them splashes vodka into some glasses and hands you one: "Drink this, slut. You''re going to need it."'
  202. act 'Drink the vodka':
  203. *clr & cla
  204. minut += 5
  205. gs 'drugs', 'alcohol', 'vodka'
  206. gs 'stat'
  207. 'As soon as you gulp down the vodka, the guys laugh and you feel several hands firmly grasping your shoulders, guiding you towards the dirty mattress. Several of the boys instantly reach for their pants, and you see their erect cocks clearly despite the dim light in the room.'
  208. act 'Continue':gt 'podval_rape'
  209. end
  210. gs 'willpower', 'drink', 'resist', 'hard'
  211. if will_cost <= pcs_willpwr:
  212. act 'Refuse to drink (<<will_cost>> Willpower)':
  213. *clr & cla
  214. minut += 5
  215. pcs_mood = 5
  216. gs 'willpower', 'pay', 'resist'
  217. gs 'stat'
  218. 'You refuse to accept the drink, hoping they will let you go. Of course, they have no intentions of doing so.'
  219. 'The guy shrugs: "Suit yourself, slut. You''re getting fucked either way."'
  220. 'He takes the glass out of your hand, and two guys grab you by your shoulders and roughly push you down onto the mattress.'
  221. act 'Continue':gt 'podval_rape'
  222. end
  223. else
  224. act 'Refuse to drink (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  225. end
  226. end
  227. act 'Leave':
  228. *clr & cla
  229. minut += 5
  230. pcs_mood = 5
  231. gs 'stat'
  232. 'Wait... what? This looks way too shady for you.'
  233. 'You refuse to go down there, and thank the boys for the nice time in the park before you try to leave. However, as soon as you turn around, you feel several arms grabbing you from behind and dragging you down the stairs quite forcefully. The basement smells like sewage, and has little more than a dirty mattress in it. You feel quite stupid now; you''re probably not the first girl who they took down here, and you fear you won''t be the last.'
  234. 'The guys roughly shove you down onto the mattress, and pull their erect cocks out of their pants. One of them snarls at you: "You''re not going anywhere until you take care of us all, whore."'
  235. act 'Continue':gt 'podval_rape'
  236. end
  237. end
  238. act 'Leave':gt 'pav_park', 'start'
  239. end
  240. end
  241. elseif placerParameter['know_slut'] = 1 and BjBeerQW > 1 and bjgangrand = 1:
  242. 'One of the guys suddenly laughs: "Wait a minute, I know her! That''s <<$pcs_nickname>>, everyone knows she''s a <<$gnikname>>. She gives guys blowjobs just to get a beer! My buddy showed me a video where they gave like three guys a blowjob, and then happily said hi to her mother with the cum still on her face!"'
  243. 'One of the other guys approaches you, and puts his hand on your chin while he takes a good look at your face. When he sees you flinch, he slaps you across the face quite hard. He orders you: "Don''t move, bitch."'
  244. 'You''re too afraid to fight him, and just let him do what he wants while he runs his fingers over your lips and slips a finger inside your mouth, which you begin to suck on without even giving it any thought.'
  245. 'He laughs: "I love a nice slut with a pretty face and <<$pc_desc[''lips'']>> lips. Fucking them in the mouth and watching them gag on my cock... I can see you''re eager to get started. Soon enough, slut. Soon enough."'
  246. 'Two of them put their hands on your upper arms and shoulders, and roughly guide you towards the exit of the park: "Walk, slut. We''ll go some place quiet, so you can earn your beer."'
  247. act 'Go "earn your beer"':
  248. *clr & cla
  249. gs'stat'
  250. 'The guys have a firm grip on you as they guide you out of the park and towards a shabby looking house. You probably couldn''t run away even if you wanted to, so you meekly let them guide you to a trap door at the back of the house. One of them quickly goes down to check, and then signals his friends: "We''re clear. Bring her in, guys."'
  251. 'The guys firmly pull you down the stairs, and push you down onto a dirty mattress as you enter the room. When you look around you notice there''s nothing here besides the mattress, and a whole lot of empty booze bottles. They must use this place more often, and you wonder how many poor girls have already met a similar fate on this mattress before you.'
  252. 'Several of the guys pull their pants down and expose their erect cocks, while one of them grins at you: "Well now, movie star! We know you''re good at this, so we expect a top notch performance from you. If you don''t satisfy us, we''ll just have you stay a while longer while we think of something else you can do for us."'
  253. act 'Kneel down and open your mouth':
  254. *clr & cla
  255. stat['bj'] += placerParameter['number_of_man']
  256. guy += placerParameter['number_of_man']
  257. i = 0
  258. :parkbj
  259. spafinloc = 12
  260. gs 'cum_manage'
  261. i += 1
  262. if i <= placerParameter['number_of_man']:
  263. spafinloc = 11
  264. gs 'cum_manage'
  265. i += 1
  266. if i <= placerParameter['number_of_man']: jump 'parkbj'
  267. end
  268. face_write = 1
  269. gang += 1
  270. blowbangrand = RAND(3,4)
  271. if pcs_makeup > 1: pcs_makeup = 0
  272. gs'stat'
  273. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/sex/gop/blowbang2.jpg"></center>'
  274. 'You realize the only way you''re getting out of this basement is by doing as they say, and you slowly get down to your knees. The guys see your resignation, and enthusiastically begin to rub their cocks against your cheeks, spreading their precum all over you. You close your lips around the closest one and diligently suck him off. After a while you really start to get into it, and reach out for two additional cocks to masturbate with your hands while your mouth is busy.'
  275. 'You even exceed their expectations by taking two cocks in your mouth at the same time, doing your best to make them all cum as quick as possible. They tell you to look them in the eye as they shoot their warm loads all over your face one by one. One of them is particularly mean, aiming directly at your eye. His friends cheer when a spurt of cum lands directly in it.'
  276. gs 'arousal', 'hj', 30, 'sub', 'group', 'humiliation'
  277. gs 'arousal', 'bj', 30, 'sub', 'group', 'humiliation'
  278. minut -= 30
  279. gs 'stat'
  280. act 'Wipe the cum from your eye':
  281. *clr & cla
  282. '<center><img <<$set_imgh>> src="images/shared/sex/dom/blowbang<<blowbangrand>>.jpg"></center>'
  283. 'You wince, trying to wipe the cum from your eye. It stings quite badly, and you feel your eyes tearing up.'
  284. 'The Gopniks don''t care, and write some humiliating text on your forehead with a marker they found somewhere.'
  285. 'One of them says: "We''re doing you a favor, slut. This way, everyone will recognize you for what you are, and it will help you remember your place."'
  286. 'You feel deeply humiliated, but are too embarrassed to contradict them. After a few more minutes of degrading talk, they finally let you leave the basement."'
  287. gs 'arousal', 'end'
  288. gs 'stat'
  289. act 'Find your way back to the main streets':gt 'pav_park', 'start'
  290. end
  291. end
  292. end
  293. elseif placerParameter['know_slut'] = 1:
  294. 'One of the guys tells you: "<<$pcs_nickname>>, we all know you''re a <<$gnikname>>". One of his friends pitches in: "In other words: we''re going to some place quiet and we''re going to fuck you. Cause trouble and we''ll knock your teeth out. Understood?"'
  295. act 'Go with the guys':
  296. *clr & cla
  297. gs 'stat'
  298. 'You meekly nod, knowing you can''t stand up to all of them. Just doing what they want is probably your easiest way out of here.'
  299. 'They guide you to a shabby house near the park, and guide you down into the basement below the house. Besides a dirty mattress and a lot of empty bottles, the basement is empty.'
  300. 'Several of them already drop their pants, revealing their stiff cocks. One of them tells you: "You know why you''re here, slut. Get to work."'
  301. act 'Squat before them':
  302. *clr & cla
  303. stat['bj'] += placerParameter['number_of_man']
  304. guy += placerParameter['number_of_man']
  305. i = 0
  306. :parkbj2
  307. spafinloc = 12
  308. gs 'cum_manage'
  309. i += 1
  310. if i <= placerParameter['number_of_man']:
  311. spafinloc = 11
  312. gs 'cum_manage'
  313. i += 1
  314. if i <= placerParameter['number_of_man']: jump 'parkbj2'
  315. end
  316. gs 'stat'
  317. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/gop/sex/gop/blowbang.jpg"></center>'
  318. 'You obediently squat before them, and take two cocks into your hands. You masturbate them slowly, spreading their precum over them as you close your lips around the first.'
  319. 'You do your best to please them all as good as you can, and suck them off one by one like your life depended on it. For all you know, maybe it does.'
  320. 'The guys don''t last long at all, and cum all over your face one by one. Once the last guy is spent, they wave you off. One of them snorts: "Not bad, slut. I see your reputation is well deserved."'
  321. gs 'arousal', 'hj', 30, 'sub', 'group', 'humiliation'
  322. gs 'arousal', 'bj', 30, 'sub', 'group', 'humiliation'
  323. minut -= 30
  324. gs 'arousal', 'end'
  325. gs 'stat'
  326. act 'Leave the basement and return to the park':gt 'pav_park', 'start'
  327. end
  328. end
  329. end
  330. elseif placerParameter['friend_index'] > 0:
  331. if placerParameter['know_slut'] = 0:
  332. 'You see one of the guys come behind to your friend, closing his arms around her in a bear grip as he kisses her neck. Another guy does the same to you, and kisses your neck quite aggressively while he has a tight grip on your waist.'
  333. act 'Kiss him':
  334. *clr & cla
  335. gs 'stat'
  336. 'You kiss the guy passionately, and just try to enjoy him groping your body. In the corner of your eye you see <<$ev_name>> receiving a similar treatment, several more guys gathering around the two of you. They''re all pawing at your ass and boobs greedily, and suggest you go with them to their home for some more fun.'
  337. gs 'arousal', 'kiss', 5, 'group'
  338. gs 'stat'
  339. act 'Go with the guys':gt 'placer_gop_orgy'
  340. end
  341. gs 'willpower', 'sex', 'resist', 'hard'
  342. if will_cost <= pcs_willpwr:
  343. act 'Grab your friend and leave (<<will_cost>> Willpower)':
  344. *clr & cla
  345. gs 'willpower', 'pay', 'resist'
  346. gs 'stat'
  347. 'You can''t do this! You break free from the Gopniks and quickly take <<$ev_name>>''s hand. You drag her along as you walk away from the Gopniks. She''s a bit reluctant to leave them at first, but trusts your judgment enough to follow you without objections.'
  348. act 'Leave the park':gt 'placer_end'
  349. end
  350. else
  351. act 'Grab your friend and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  352. end
  353. exit
  354. end
  355. if placerParameter['know_slut'] = 1:
  356. 'One of the guys says: "<<$pcs_nickname>>, we all know you''re a whore. If your little girlfriend is with you, we can only assume she is, too."'
  357. 'Another guy pitches in: "In other words: you and your girlfriend are going to entertain us at our place. If you''re good enough, we''ll let you go afterwards."'
  358. act 'Go with the guys':gt 'placer_gop_orgy'
  359. act 'Try to leave with your friend':
  360. *clr & cla
  361. gs 'stat'
  362. 'You firmly tell the guys: "I don''t think so guys, we''re not going anywhere with you."'
  363. 'Several of them surround <<$ev_name>>, and threaten you: "We weren''t asking, bitch. Either you''re coming with us to share the load, or your cute little friend here is going to have to satisfy all of us by herself. You probably won''t see her again today in that case, we''re going to need her services for quite a while if she has to do it all alone."'
  364. 'You can see <<$ev_name>>''s eyes widen, giving you a begging look. It''s quite obvious she is feeling very intimidated, and really doesn''t want to go with them by herself.'
  365. act 'Go with the guys':gt 'placer_gop_orgy'
  366. gs 'willpower', 'sex', 'resist', 'hard'
  367. if will_cost <= pcs_willpwr:
  368. act 'Talk them down and leave with your friend (<<will_cost>> Willpower)':
  369. gs 'willpower', 'pay', 'resist'
  370. gs 'stat'
  371. gt 'placer_end'
  372. end
  373. else
  374. act 'Talk them down and leave with your friend (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  375. end
  376. end
  377. exit
  378. end
  379. end
  380. end
  381. if placerParameter['recognize_status'] < 2:
  382. tiprand = rand(0, 1)
  383. tiploverand = rand(0, 1)
  384. !norms
  385. if placerParameter['number_of_man'] = 1:
  386. if placerParameter['friend_index'] = 0 and placerParameter['number_of_man'] = 1:
  387. if placerParameter['slut_visual'] > 0:
  388. 'The guy comes up to you, and aggressively kisses you on your mouth.'
  389. act 'Kiss him back':
  390. *clr & cla
  391. gs 'stat'
  392. 'That came a bit out of the blue... but wow, he''s a good kisser! You kiss the guy back enthusiastically.'
  393. 'After a while he takes you by the hand, and leads you to some bushes. Before you know what''s going on, he pulls down his pants. His erect cock comes jumping out, bouncing lightly. He looks at you with a meaningful look on his face, expecting you to service it.'
  394. gs 'arousal', 'kiss', 5
  395. gs 'stat'
  396. act '"Hey, what are you doing!?"':
  397. *clr & cla
  398. gs 'stat'
  399. 'You angrily exclaim: "Hey, are you crazy!? What''s the meaning of this?"'
  400. 'The guy just grins at you: "Everyone knows you''re a whore, <<$pcs_nickname>>. We''ve all seen the video... it''s way too late for you to start being a prude now. Come on, it''d only take a minute. What do you say?"'
  401. dynamic $d_park_placer_bj
  402. gs 'willpower', 'bj', 'resist', 'hard'
  403. if will_cost <= pcs_willpwr:
  404. act 'Refuse and leave (<<will_cost>> Willpower)':
  405. gs 'willpower', 'pay', 'resist'
  406. gs 'stat'
  407. gt 'pav_park', 'start'
  408. end
  409. else
  410. act 'Refuse and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  411. end
  412. end
  413. act '"Are you crazy? What if someone sees?"':
  414. *clr & cla
  415. gs 'stat'
  416. 'You hiss angrily at the guy: "Are you crazy? What if someone sees us here?"'
  417. 'The guy smiles: "Look around, <<$pcs_nickname>>! We''re alone, we''ll be fine!"'
  418. act '"Not here, sorry"':
  419. *clr & cla
  420. gs 'stat'
  421. 'You look at the guy with disbelief and tell him: "Look... you''re kind of cute, but there''s no way I would do that in a public place like this."'
  422. 'The guy still smiles, and offers: "Well... how about we go to my place then? No one will be able to see us there!"'
  423. act 'Go to his place':
  424. *clr & cla
  425. gs 'stat'
  426. tiperand = rand(0, 1)
  427. if tiperand = 0:gt 'fbHouse'
  428. if tiperand = 1:gt 'fbDorm'
  429. if tiperand = 2:gt 'fbGar'
  430. end
  431. gs 'willpower', 'bj', 'resist', 'hard'
  432. if will_cost <= pcs_willpwr:
  433. act 'Refuse and leave (<<will_cost>> Willpower)':
  434. gs 'willpower', 'pay', 'resist'
  435. gs 'stat'
  436. gt 'pav_park', 'start'
  437. end
  438. else
  439. act 'Refuse and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  440. end
  441. end
  442. dynamic $d_park_placer_bj
  443. end
  444. dynamic $d_park_placer_bj
  445. end
  446. else
  447. 'The guy offers: "Hey babe... how about you and I go back to my place? I bet we could have some fun together, no one would disturb us..."'
  448. act 'Go to his place':
  449. *clr & cla
  450. gs 'stat'
  451. tiperand = rand(0, 1)
  452. if tiperand = 0:gt 'fbHouse'
  453. if tiperand = 1:gt 'fbDorm'
  454. if tiperand = 2:gt 'fbGar'
  455. end
  456. end
  457. elseif placerParameter['friend_index'] > 0 and placerParameter['number_of_man'] = 1:
  458. if tiploverand = 0:
  459. 'You''re having fun, drinking beers with your friend and the guy you just met. After a while you realize that he is mostly just paying attention to you though, while pretending your friend <<$ev_name>> isn''t there.'
  460. act 'Kiss the guy':
  461. *clr & cla
  462. gs 'stat'
  463. '<<$boydesc>> whispers in your ear: "Come on <<$pcs_nickname>>, let''s go to my place..."'
  464. if placerParameter['friend_slut'] < 50 or (placerParameter['friend_index'] = 14 and katjaQW['park_sex'] < rand(1,2)):
  465. !!If Katja have not done much with guys from the park, she might want to leave you alone.
  466. '<<$ev_name>> seems to understand where this is going, and nods at you: "Okay, <<$pcs_nickname>>... I guess I should leave the two of you alone. I''ll see you later?"'
  467. gs 'willpower', 'sex', 'resist', 'hard'
  468. if will_cost <= pcs_willpwr:
  469. act 'Leave with your friend (<<will_cost>> Willpower)':
  470. gs 'willpower', 'pay', 'resist'
  471. gs 'stat'
  472. gt 'pav_park', 'start'
  473. end
  474. else
  475. act 'Leave with your friend (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  476. end
  477. act 'Say goodbye and go with the guy':
  478. *clr & cla
  479. gs 'stat'
  480. tiperand = rand(0, 1)
  481. if tiperand = 0:gt 'fbHouse'
  482. if tiperand = 1:gt 'fbDorm'
  483. if tiperand = 2:gt 'fbGar'
  484. end
  485. else
  486. '<<$ev_name>> smiles as she licks her lips: "He''s cute, <<$pcs_nickname>>... take me with you?"'
  487. act 'Go to his apartment together':minut += 5 & gt 'placer_house'
  488. end
  489. end
  490. elseif tiploverand = 1:
  491. 'You''re having fun, drinking beers with your friend and the guy you just met. After a while you realize that he is mostly just paying attention to <<$ev_name>> though, while pretending you are not there.'
  492. act 'See what happens':
  493. *clr & cla
  494. gs 'stat'
  495. if placerParameter['friend_slut'] < 30:
  496. '<<$ev_name>> kisses the guy for a while, but when he whispers something to her she apologizes to him: "Sorry, <<$boydesc>>... I can''t just leave <<$pcs_nickname>> hanging. We should be going."'
  497. act 'Leave with your friend':gt 'placer_end'
  498. end
  499. if placerParameter['friend_slut'] >= 30 and placerParameter['friend_slut'] < 60:
  500. '<<$ev_name>> kisses the guy, and he begins to grope her body. She quickly whispers something in his ear, and you see him nod. Then <<$ev_name>> turns to you: "Sorry <<$pcs_nickname>>, <<$boydesc>> promised me he''d show me his cool rock collection. His apartment is small though, there''d be no room for the both of us... I''ll see you later?"'
  501. if placerParameter['friend_index'] = 14:
  502. KatjaQW['slut'] += 10
  503. KatjaQW['horny'] = 0
  504. if katjaQW['park_sex'] = 0: katjaQW['park_sex'] = 1
  505. end
  506. act 'Watch her leave with the stranger':gt 'pav_park', 'start'
  507. elseif placerParameter['friend_slut'] >= 60:
  508. '<<$ev_name>> kisses the guy, and he begins to grope her body. She quickly whispers something in his ear, and you see him nod. Then <<$ev_name>> turns to you and asks innocently: "Hey <<$pcs_nickname>>... <<$boydesc>> asks if you want to come with us for some fun. What do you say?"'
  509. gs 'willpower', 'sex', 'resist', 'hard'
  510. if will_cost <= pcs_willpwr:
  511. act 'Refuse and tell her to have fun (<<will_cost>> Willpower)':
  512. gs 'willpower', 'pay', 'resist'
  513. gs 'stat'
  514. gt 'pav_park', 'start'
  515. end
  516. else
  517. act 'Refuse and tell her to have fun (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  518. end
  519. act 'Go to his apartment together':minut += 5 & gt 'placer_house'
  520. end
  521. end
  522. end
  523. end
  524. elseif placerParameter['number_of_man'] > 1:
  525. if placerParameter['friend_index'] = 0:
  526. if placerParameter['slut_visual'] > 0:
  527. if placerParameter['number_of_man'] = 2:$textsub = 'The second guy looks at you knowingly, as if he recognizes you from somewhere. He has a greedy look in his eyes.'
  528. if placerParameter['number_of_man'] > 2:$textsub = 'The other guys look at you knowingly, as if they recognize you from somewhere. They have greedy looks in their eyes.'
  529. '<<$boydesc>> comes up to you, and aggressively kisses you on your mouth while he hugs you. <<$textsub>>.'
  530. act 'Kiss him back':
  531. *clr & cla
  532. gs 'stat'
  533. 'His lips taste like the beer you''ve both been drinking. You ease up against him and kiss him back, happy to surrender to him for just one moment. The guy feels your body relax and begins to grope your ass greedily, hoping he can get you to put out more.'
  534. 'When you don''t object, he pulls away and asks you: "Hey, <<$pcs_nickname>>... you''re cute! We''re staying in a hostel just minutes away from the park. Want to come party with us there?"'
  535. act 'Go with the guys':
  536. *clr & cla
  537. if alko > 10: alko = 10
  538. cumspclnt = 2
  539. gs 'cum_cleanup'
  540. pcs_breath = 0
  541. minut += 30
  542. gs 'stat'
  543. '<center><img <<$set_imgh>> src="images/shared/sex/sleep/drunk.jpg"></center>'
  544. 'The guys cheer when you say you''ll come with them, and <<$boydesc>> takes your hand while he guides you out of the park. You make a quick stop at a liquor store, so one of the guys can buy some booze for the party.'
  545. 'When you enter the hostel room, you see it has nothing but a few iron beds for furniture. <<$boydesc>> pulls you down onto a bed with him, and begins to make out with you again while another guy pours the booze into some glasses and hands everyone a glass.'
  546. 'The guys can stomach their alcohol a lot better than you, and before you know it you''re absolutely hammered. They look like they''re still feeling fine.'
  547. 'Once they realize you''re drunk enough for them to make their move, they begin tugging at your clothes and undress you on one of their beds. You''re too drunk to tell them to stop, and just let it happen.'
  548. act 'Continue':gt 'placer_sex', 'meet'
  549. end
  550. end
  551. else
  552. '<<$boydesc>> comes up to you, and aggressively kisses you on your mouth while he hugs you.'
  553. 'His lips taste like the beer you''ve both been drinking. You ease up against him and kiss him back, happy to surrender to him for just one moment. The guy feels your body relax and begins to grope your ass greedily, hoping he can get you to put out more.'
  554. 'When you don''t object, he pulls away and asks you: "Hey, <<$pcs_nickname>>... you''re cute! We''re staying in a hostel just minutes away from the park. Want to come party with us there?"'
  555. act 'Go with the guys':
  556. *clr & cla
  557. minut += 30
  558. gs 'drugs', 'alcohol', 'vodka', 3
  559. gs 'stat'
  560. '<center><img <<$set_imgh>> src="images/shared/sex/sleep/drunk.jpg"></center>'
  561. 'The guys cheer when you say you''ll come with them, and <<$boydesc>> takes your hand while he guides you out of the park. The group makes a quick stop at a liquor store, so one of the guys can buy some booze for the party.'
  562. 'When you enter the hostel room, you see it has nothing but a few iron beds for furniture. <<$boydesc>> pulls you down onto a bed with him, and begins to make out with you again while another guy pours the booze into some glasses and hands everyone a glass.'
  563. 'The guys can stomach their alcohol a lot better than you, and before you know it you''re absolutely hammered. They look like they''re still feeling fine.'
  564. 'Once they realize you''re drunk enough for them to make their move, they begin to take off your clothes and undress you on one of their beds. You''re too drunk to tell them to stop, and just let it happen.'
  565. act 'Continue':gt 'placer_sex', 'meet'
  566. end
  567. end
  568. elseif placerParameter['friend_index'] > 0:
  569. if placerParameter['slut_visual'] > 0:
  570. 'You see one of the guys come behind to your friend, closing his arms around her in a bear grip as he kisses her neck. Another guy does the same to you, and kisses your neck quite aggressively while he has a tight grip on your waist.'
  571. act 'Kiss him':
  572. *clr & cla
  573. pcs_horny += 10
  574. minut += 5
  575. gs 'stat'
  576. 'You kiss the guy passionately, and just try to enjoy him groping your body. In the corner of your eye you see <<$ev_name>> receiving a similar treatment, several more guys gathering around the two of you. They''re all pawing at your ass and boobs greedily, and suggest you go with them to their home for some more fun. <<$boydesc>> whispers in your ear: "Want to go to my place, babe? We can get some alone time there... or we can bring your friend along and all go there together?"'
  577. act 'Bring your friend along and go to their place':minut += 5 & gt 'placer_house'
  578. act 'Go with him for some alone time, leaving your friend':minut += 5 & gt 'placer_house_one'
  579. end
  580. else
  581. 'You see one of the guys move up behind your friend, closing his arms around her in a bear grip as he kisses her neck. Another guy does the same to you, and kisses your neck quite aggressively while he has a tight grip on your waist. <<$boydesc>> whispers in your ear: "Hey babe... how about you and your friend come back to my place? I bet we could have some fun together..."'
  582. act 'Go with the guys':
  583. *clr & cla
  584. minut += 5
  585. gs 'stat'
  586. 'You leave the park with <<$ev_name>> and the guys, and chat with them while they lead you to their apartment.'
  587. act 'Continue':gt 'placer_house'
  588. end
  589. end
  590. end
  591. end
  592. end
  593. gs 'stat'
  594. if placerParameter['friend_index'] = 0:
  595. act 'Turn around and walk away':
  596. *clr & cla
  597. gs 'stat'
  598. if placerParameter['know_slut'] = 0:
  599. if placerParameter['slut_visual'] = 0:gt 'pav_park', 'start'
  600. if placerParameter['slut_visual'] > 0:
  601. if placerParameter['recognize_status'] = 2:
  602. '<<$boydesc>> disappointedly remarks: "We know you''re a whore... why are you being such a prude?"'
  603. 'You shrug at him and keep walking... that remark sure made your decision to leave a lot easier! What a jackass!'
  604. act 'Leave':gt 'pav_park', 'start'
  605. else
  606. gt 'pav_park', 'start'
  607. end
  608. end
  609. elseif placerParameter['know_slut'] = 1:
  610. if placerParameter['recognize_status'] = 2:
  611. 'You shake your head and apologize: "Sorry boys... I have places to be. Maybe some other time" as you leave. You walk away in a brisk pace, and are gone before they can object.'
  612. act 'Return to the park':gt 'pav_park', 'start'
  613. else
  614. gt 'pav_park', 'start'
  615. end
  616. end
  617. end
  618. elseif placerParameter['friend_index'] > 0:
  619. act 'Leave with your friend':gt 'placer_end'
  620. end
  621. end
  622. --- placer_act ---------------------------------