park.qsrc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. # park
  2. $location_type = 'public_outdoors'
  3. if $ARGS[0] = 'start':
  4. CLOSE ALL
  5. $metka = 'start'
  6. $loc = 'park'
  7. if sound = 0:
  8. if month >=11 and month <= 12 or month >=1 and month <=3:
  9. if hour >= 8 and hour <= 23: PLAY 'sound/street2.mp3',30 & PLAY 'sound/zima.mp3',30
  10. if hour >= 0 and hour <= 7: PLAY 'sound/street_night.mp3',30 & PLAY 'sound/zima.mp3',30
  11. else
  12. if hour >= 8 and hour <= 23: PLAY 'sound/park.mp3',30 & PLAY 'sound/street_leto.mp3',30
  13. if hour >= 0 and hour <= 7:PLAY 'sound/street_night.mp3',30
  14. end
  15. end
  16. $torchki = {
  17. cls
  18. gs 'stat'
  19. SNarkPriton = 1
  20. 'The junkies look at you with a daunted gaze. They probably thought you are a police officer. Then one of them said, "We don''t sell no drugs. Go to the Drug House, ye can get zome there."'
  21. act 'Walk away from them':gt 'park', 'start'
  22. }
  23. $sexloc = $CURLOC
  24. if WalkInsidePark = 0:WalkInsidePark = 1
  25. cls
  26. gs 'stat'
  27. '<center><b><font color="maroon">Park</font></b></center>'
  28. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/park.jpg"></center>'
  29. 'The central park is huge, sandy paths spread out in every direction and every so often you''ll find a bench to sit on. In the summer you''ll see a lot people playing ball, relaxing or have a picnic in the more open areas, while in the winter you''ll meet families with their children sledding down the grass banks.'
  30. 'Despite its almost paradise-like appearance, the park can be very dangerous once the sun goes down.'
  31. *nl
  32. 'There is a sign that points into general direction of the city center. You estimate the walk to the city center would take 35 minutes.'
  33. 'The second sign points into the direction of the residential area. If you have to guess, the walk to the residential are should take 20 minutes.'
  34. 'The third sign says city industrial district on it. You know the city industrial District is rather far away from here, you estimate that the walk would take an hour.'
  35. *nl
  36. if hour >= 10 and hour <= 22:'The small café in the park is open, you could sit there and have some food.'
  37. if SNarkPriton = 0:'Near the cafe the <a href="exec:dynamic $torchki">junkies</a> hang out.'
  38. if hour >= 9 or hour <= 20:
  39. 'There is an all year <a href="exec:gt ''park'', ''luna''">fair</a> at the park which you can visit.'
  40. else
  41. 'There is an all year fair at the park but it is closed. Opening hours from 9:00 to 21:00.'
  42. end
  43. if car > 0 and cardrive = 5:
  44. cardrive = 5
  45. 'Stands near the park <a href="exec:GS ''carF'', ''start''">your <<$car>></a>.'
  46. end
  47. if $pantyworntype = 'none' and PCloSkirt > 2 and hour > 6 and hour <= 20:
  48. nurand = rand(0, 100)
  49. if nurand >= 80:
  50. pcs_mood -= 5
  51. SUB += 1
  52. pcs_horny += SUB
  53. 'A man walks past you and notices that you didn''t put on any panties. He whistles at you, "Did you forget to put on your underwear today, honey?"'
  54. *nl
  55. if pcs_inhib >= 35:
  56. gs 'exhibitionism', 2
  57. mood += 5
  58. '"Nope!" you call back. "Just remembered not to!" You flip up the back of your skirt, flashing your ass at him and keep walking, a bit of a spring in your step.'
  59. elseif pcs_inhib > 30:
  60. inhib_exp += 1
  61. '"Nah, just didn''t feel like it," you shrug and continue on your way.'
  62. else
  63. 'You blush with shame and you try to walk out of his sight as fast as possible.'
  64. end
  65. end
  66. end
  67. act 'Leave': gt 'park', 'exit'
  68. act 'Walk around the park (1:00)': gt 'parkdin'
  69. if hour >= 10 and hour <= 22 and money >= 100:
  70. act 'Have some food in the cafe': minut += 5 & gt 'ParkKafe', 'start'
  71. end
  72. if home_owned[1] = 0 and tanwork = 0 and student = 0:
  73. !nowhere to live in city
  74. if hour >= 20 or hour < 6 :
  75. 'It''s quite dark now, and you have no where to stay. Maybe you should try to sleep on a bench?'
  76. act 'Sleep on a bench': ParkBench = 1 & gt'placer_sex','sleeping_parc_bench'
  77. end
  78. end
  79. act 'Sit on a bench': ParkBench = 1 & gt'placer_sex','sleeping_parc_alco'
  80. if pusher = 1 and hour >= 6 and hour <= 21:
  81. 'There''s a drug dealer casually sitting on one of the benches. He''s trying not to be too suspicious.'
  82. if money >= 2000:
  83. act 'Buy "Pale Lady" (2,000 <b>₽</b>)':
  84. cla
  85. minut += 10
  86. palelady = input ("How many doses you want to buy?")
  87. if palelady * 2000 > money or palelady <= 0:
  88. 'Either tell me how many you want to buy or get lost.'
  89. else
  90. money -= palelady * 2000
  91. dur += palelady
  92. 'You get out your purse and pay him quickly, hoping nobody else saw you giving him money. Then he passes you the doses you''ve paid for and you can savely sniff the stuff at home.'
  93. end
  94. act 'Casually walk away':gt 'park', 'start'
  95. end
  96. else
  97. 'You do not have enough money, not even for one dose.'
  98. end
  99. end
  100. if $clothingworntype = 'exercise' and parkrunday ! daystart:
  101. act 'Jog through the park (1:00)':
  102. cla
  103. *clr
  104. parkrunday = daystart
  105. gs 'exercise', 'tier1', 60, 'run_exp'
  106. fat -= rand(0, 4)
  107. pcs_sweat += 5
  108. '<center><b><font color="maroon">Park</font></b></center>'
  109. '<center><img <<$set_imgh>> src="images/locations/shared/park/parkbeg.jpg"></center>'
  110. 'You randomly take the paths, you run them up and down and about an hour later, you are out of breath and heavily sweating.'
  111. if hour >= 20:
  112. parkrand = rand(0, 10)
  113. if parkrand >= 8:
  114. 'A shade steps out of the shadow from a tree and runs up to you. Before you can react, he hits you and drags you into the bushes. "Relax and enjoy this", he says.'
  115. gs 'npcgeneratec', 0, 'Rapist', rand(18,40)
  116. gs 'boyStat', $npclastgenerated
  117. act 'Fight':
  118. cla
  119. !!stats
  120. strenV = 100
  121. speedV = 50
  122. agilV = 40
  123. reactV = 40
  124. vitalV = 50
  125. intelV = 10
  126. willV = 10
  127. !!skills
  128. magikV = 100
  129. boxingV = 50
  130. shootV = 100
  131. !!parameters
  132. healthV = vitalV * 10 + strenV * 5
  133. mannaV = intelV * 10 + magikV * 10
  134. willpowerV = willV * 10
  135. BonusAtakV = 0
  136. BonusDefV = 0
  137. !!Programme of Action
  138. program = 1
  139. RapistFight = 1
  140. if spellavtoklon = 1:klon = 3
  141. if spellbefshild = 1:defence = 500
  142. gt 'fight', 'start'
  143. end
  144. if succubusQW = 5:
  145. !!Used if this was a random encounter instead of active hunting
  146. Act 'Lure him in and feed (this can take a lot of time)':
  147. cla
  148. 'You wait until he has dragged you almost to the bushes before turning on him.'
  149. act 'Continue': gt 'succubus', 'RapistFight'
  150. end
  151. end
  152. exit
  153. end
  154. end
  155. if pcs_inhib >= 35:
  156. act 'Expose your breasts':
  157. *clr
  158. cla
  159. 'Halfway through your run, you pull up your top and expose your breasts. The cool air against your warm skin causes you to shiver, and almost immediately your nipples start to harden, a mixed reaction from the air hitting them and your growing excitement.'
  160. *nl
  161. gs 'parkivent', 'run_reactions'
  162. end
  163. end
  164. act 'Complete jog':gt 'park', 'start'
  165. end
  166. end
  167. if hour <= 7 or hour >= 21:
  168. !!Succubus active hunting, can only hunt successfully once a day, but can try until success
  169. If succubusQW = 5 and suchuntday ! daystart:
  170. act 'Go Hunting (this can take a lot of time)':
  171. if rand(1,100) < 70:
  172. minut += 30
  173. mood -= 5
  174. *nl
  175. 'No luck! After searching for half an hour, you find no one. For such a large city you would have thought there would be suitable prey around, your needs remain so maybe another search will be required?'
  176. act 'Continue': gt 'park'
  177. else
  178. suchunt = 1 & gt 'parkivent', '1'
  179. end
  180. end
  181. end
  182. if knowsfairy >= 1 and pcs_magik > 4:
  183. act 'Find a place the Fairy may be': fairylooking = 1 & gt 'parkdin'
  184. end
  185. end
  186. gs 'kseniyaQW', 'events'
  187. if pcs_inhib >= 35:
  188. act 'Flash your tits':
  189. inhib_exp += 2
  190. if pcs_exhib = 100 and exhibitionQW = 0: gt 'kseniyaQW', 'event1'
  191. cls
  192. gs 'exhibitionism', 1
  193. gs 'flash', 'tits', 'outdoors', 5
  194. gs 'stat'
  195. act 'Continue': gt 'park', 'start'
  196. end
  197. end
  198. if exhibitionist_lvl > 1:
  199. act 'Flash your pussy':
  200. inhib_exp += 2
  201. if pcs_exhib = 100 and exhibitionQW = 0: gt 'kseniyaQW', 'event1'
  202. cls
  203. gs 'exhibitionism', 3
  204. gs 'flash', 'pussy', 'outdoors', 5
  205. gs 'stat'
  206. act 'Continue': gt 'park', 'start'
  207. end
  208. end
  209. end
  210. if $ARGS[0] = 'exit':
  211. cla
  212. '<center><b><font color="maroon">Park</font></b></center>'
  213. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/park.jpg"></center>'
  214. act 'Cancel': gt 'park', 'start'
  215. act 'Go to the highway near the park (0:05)':minut += 5 & gt 'park', 'whore'
  216. act 'Go to the Residential Area (0:20)':minut += 20 & gt 'street'
  217. act 'Go to the City Center (0:35)':minut += 35 & gt 'down'
  218. act 'Go to the City Industrial Region (1:00)':minut += 60 & gt 'Nord'
  219. end
  220. if $ARGS[0] = 'luna':
  221. cla
  222. *clr
  223. minut += 5
  224. clr
  225. gs 'stat'
  226. '<center><b><font color="maroon">The Fun Fair</font></b></center>'
  227. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/luna.jpg"></center>'
  228. 'The fun fair sits in the hearts of the park and attracts families, people on a vacation and loving couples from all over the town. It''s a popular gathering spot and a place to forget your worries for a few hours.'
  229. *nl
  230. 'Opening hours are 9:00 to 21:00'
  231. if vladimirQW = 0 and hour >= 9 and hour <= 20 and week > 5 and pcs_apprnc > 40:'<a href="exec:gt ''qwloc''">There''s a strong looking man staring at you from the fences.</a>.'
  232. if hour >= 9 and hour <= 20:
  233. act 'Distribute flyers to earn money (50 <b>₽</b>) (1:00)':
  234. cla
  235. *clr
  236. minut += 60
  237. money += 50
  238. pcs_mood -= 5
  239. '<center><img <<$set_imgh>> src="images/locations/shared/park/flaer.jpg"></center>'
  240. 'For an hour straight, you walked through the park and the fun fair, chatting up random visitors and trying to give them one of your flyers. After that you are being paid 50 <b>₽</b> for your effort.'
  241. act 'Move away':gt 'park', 'luna'
  242. end
  243. if money >= 50:
  244. act 'Eat Shawarma (50 <b>₽</b>)':
  245. cla
  246. *clr
  247. gs 'stat'
  248. minut += 15
  249. pcs_health += 10
  250. pcs_mood += 20
  251. fat += 2
  252. pcs_energy += 30
  253. cumspclnt = 2
  254. gs 'cum_cleanup'
  255. pcs_breath = 0
  256. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/luna1.jpg"></center>'
  257. 'You enjoy the shawarma.'
  258. act 'Move away':gt 'park', 'luna'
  259. end
  260. act 'Drink Lemonade (50 <b>₽</b>)':
  261. cla
  262. *clr
  263. gs 'stat'
  264. minut += 5
  265. pcs_health += 10
  266. pcs_mood += 20
  267. fat += 1
  268. pcs_hydra += 40
  269. cumspclnt = 2
  270. gs 'cum_cleanup'
  271. pcs_breath = 0
  272. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/luna1.jpg"></center>'
  273. 'You happily drink the refreshing lemonade.'
  274. act 'Move away':gt 'park', 'luna'
  275. end
  276. act 'Ride on the carousel (50 <b>₽</b>)':
  277. cla
  278. *clr
  279. minut += 30
  280. money -= 50
  281. if pcs_sprt < 30:sprt_exp += 1
  282. if pcs_sprt >= 30:sprt_exp += rand(0, 1)
  283. pcs_willpwr += 10
  284. pcs_mood += 10
  285. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/karusel.jpg"></center>'
  286. 'You paid 50 <b>₽</b> and sat in the carousel.'
  287. 'You have a great ride, already dazzled.'
  288. act 'Move away':gt 'park','luna'
  289. end
  290. end
  291. if money >= 100:
  292. act 'Shoot some targets (100 <b>₽</b>)':
  293. cla
  294. *clr
  295. minut += 30
  296. money -= 100
  297. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/tir.jpg"></center>'
  298. 'You paid 100 <b>₽</b> for ten bullets. If you are able to hit all targets, you can win a teddy bear.'
  299. act 'Shoot':
  300. cla
  301. tirkoef = pcs_agil + pcs_shoot
  302. tirmin = tirkoef * 20 / 100
  303. tirand = rand(tirkoef - tirmin, tirkoef + tirmin)
  304. if tirand >= 80:
  305. mishka += 1
  306. pcs_mood += 5
  307. 'You hit all targets and didn''t even miss once. Congratulations! You''ve won a Teddy Bear.'
  308. elseif tirand < 80 and tirand >= 70:
  309. 'Oh, you''ve only missed once.'
  310. elseif tirand < 70 and tirand >= 60:
  311. 'You were able to hit the target eight times, but you''ve missed twice.'
  312. elseif tirand < 60 and tirand >= 50:
  313. 'You were able to hit the target seven times, but you''ve missed three times.'
  314. elseif tirand < 50 and tirand >= 40:
  315. 'Six times you were able to hit the target, but you''ve missed four times.'
  316. elseif tirand < 40 and tirand >= 30:
  317. 'Five times you were able to hit the target, but you''ve missed five times too.'
  318. elseif tirand < 30 and tirand >= 25:
  319. 'Four times you were able to hit the target, but you''ve missed six times.'
  320. elseif tirand < 25 and tirand >= 20:
  321. 'Three times you were able to hit the target, but you''ve missed seven times.'
  322. elseif tirand < 20 and tirand >= 15:
  323. 'You were able to hit the target twice, but you''ve missed it eight times.'
  324. elseif tirand < 15 and tirand >= 10:
  325. 'You were only able to hit the target once and missed it nine times.'
  326. elseif tirand < 10:
  327. 'You couldn''t even hit the target once.'
  328. end
  329. shoot_exp += 1
  330. act 'Move away':gt 'park', 'luna'
  331. end
  332. end
  333. end
  334. if money >= 20:
  335. act 'Hit the dynamometer (20 <b>₽</b>)':
  336. cla
  337. *clr
  338. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/silomer.jpg"></center>'
  339. 'You''ve paid 20 <b>₽</b> to play Ring-The-Bell.'
  340. act 'Bump':
  341. cla
  342. minut += 30
  343. money -= 20
  344. stKo = pcs_stren * 20/100
  345. damage = rand(pcs_stren - stKo, pcs_stren + stKo)
  346. if pcs_stren < 30: gs 'exercise', 'tier2', 1, 'stren_exp'
  347. if pcs_stren >= 30: gs 'exercise', 'tier1', 1, 'stren_exp'
  348. 'A LED screen lights up and shows you your score:<<damage>>'
  349. if damage > maxdamage:
  350. maxdamage = damage & 'Congratulations! A new personal best!'
  351. else
  352. 'You swung the hammer as hard as you could, but it wasn''t enough for a new record.'
  353. end
  354. act 'Move away':gt 'park', 'luna'
  355. end
  356. end
  357. end
  358. act 'One-Armed Bandit':gt 'park', 'avtomat'
  359. else
  360. 'The fair is now closed.'
  361. end
  362. act 'Go back to the park':gt 'park', 'start'
  363. end
  364. if $ARGS[0] = 'avtomat':
  365. $location_type = 'event_outdoors'
  366. cla
  367. *clr
  368. clr
  369. gs 'stat'
  370. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/avtomat.jpg"></center>'
  371. 'The rules of the game are very simple, throw 5 <b>₽</b> into the slot, pull the lever and with a bit of luck you can win the jackpot of 1.000 <b>₽</b>.'
  372. if money >= 5 and hour <= 20:
  373. act 'Throw in 5 <b>₽</b> and pull the lever':gt 'park', 'avtomat2'
  374. end
  375. act 'Move away from the slot machine':gt 'park', 'luna'
  376. end
  377. if $ARGS[0] = 'avtomat2':
  378. $location_type = 'event_outdoors'
  379. cla
  380. *clr
  381. clr
  382. gs 'stat'
  383. minut += 5
  384. money -= 5
  385. avtrand = rand(0, 100)
  386. if avtrand = 100:
  387. money += 1000
  388. 'Jackpot! You win 1,000 <b>₽</b>.'
  389. elseif avtrand < 100 and avtrand >= 95:
  390. money += 100
  391. 'You win 100 <b>₽</b>.'
  392. elseif avtrand < 95 and avtrand >= 85:
  393. money += 10
  394. 'You win 10 <b>₽</b>.'
  395. elseif avtrand < 85 and avtrand >= 75:
  396. money += 5
  397. 'You win 5 <b>₽</b>.'
  398. elseif avtrand < 75:
  399. 'Unfortunately, you weren''t able to win anything this time.'
  400. end
  401. act 'Try your luck once more':gt 'park', 'avtomat'
  402. end
  403. if $ARGS[0] = 'whore':
  404. $location_type = 'event_outdoors'
  405. cla
  406. *clr
  407. clr
  408. gs 'stat'
  409. '<center><b><font color="maroon">The road near the park</font></b></center>'
  410. if hour >= 16 and hour <= 23:
  411. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/park1.jpg"></center>'
  412. 'Along the roadside <a href="exec:gt ''prostitute'', ''start''">Prostitutes</a> are walking and sometimes picked up by a car.'
  413. elseif hour >= 4 and hour < 16:
  414. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/glpark.jpg"></center>'
  415. 'Cars passing on the road past the park and there is not seen nothing interesting.'
  416. else
  417. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/park1.jpg"></center>'
  418. 'Cars drive on the road past the park and then not see anything interesting.'
  419. end
  420. temp = rand(1, 10)
  421. if pcs_inhib > 35:
  422. act 'Flash breasts':
  423. cla
  424. *clr
  425. gs 'exhibitionism', 1
  426. inhib_exp += 2
  427. gs 'flash', 'tits', 'outdoors', 5
  428. gs 'stat'
  429. act 'Go back to the park':gt 'park', 'start'
  430. end
  431. end
  432. act 'Go back to the park (0:05)': minut += 5 & gt 'park', 'start'
  433. end
  434. if $ARGS[0] = 'prost':
  435. cla
  436. *clr
  437. minut += 5
  438. clr
  439. gs 'stat'
  440. '<center><b><font color="maroon">Hooker</font></b></center>'
  441. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/park2.jpg"></center>'
  442. if whoreQW = 2:
  443. 'Prostitutes look at you with curiosity.'
  444. elseif whoreQW = 1:
  445. 'Prostitutes look at you with interest.'
  446. act 'Talk':
  447. cla
  448. whoreQW = 2
  449. 'You went to a prostitute and asked her how things are done here at all. She began to explain. "We are free, do not work on anyone, but because of this many problems. Svimi Stella with her friends sometimes beat us and rob and sometimes come petty thugs and rob us of the money. If you want to work here, you have to pay and Stella and Bandyuk . course you cool, you can try to besiege Stella and her friends, but the bandits do not advise contact. And yet, you do not peck on customers, if you nebudesh dressed like a slut, you can buy some clothes in a sex shop. "'
  450. act 'Move away':gt 'park', 'prost'
  451. end
  452. elseif whoreQW = 0:
  453. 'Hey, you''re not one of us, would valyl from our point, and that the teeth will not collect.'
  454. gs 'npcgeneratec', 0, 'Stoned Prostitute', rand(15,30)
  455. gs 'boyStat', $npclastgenerated
  456. act 'Fuck you!':
  457. cla
  458. minut += 15
  459. !!stats
  460. strenV = 20
  461. speedV = 30
  462. agilV = 30
  463. reactV = 30
  464. vitalV = 50
  465. intelV = 10
  466. willV = 10
  467. !!skills
  468. magikV = 10
  469. boxingV = 10
  470. shootV = 10
  471. !!parameters
  472. healthV = vitalV * 10 + strenV * 5
  473. mannaV = intelV * 10 + magikV * 10
  474. willpowerV = willV * 10
  475. BonusAtakV = 0
  476. BonusDefV = 0
  477. !!Programme of Action
  478. program = 0
  479. prostitutFight = 1
  480. if spellavtoklon = 1:klon = 3
  481. if spellbefshild = 1:defence = 500
  482. gt 'fight', 'start'
  483. end
  484. end
  485. if whoreQW > 1 and PCloStyle = 4:
  486. act 'Search client (0:15)':
  487. cla
  488. *clr
  489. minut += 15
  490. whrand = rand(0, 100)
  491. if whrand <= 5:
  492. 'To you black jeep pulled up, opened the window and leaned out healthy brazen face. "Hey slut, it''s time to pay tribute. Shtukar Come here and get out on work."'
  493. if money >= 1000:
  494. act 'Giving money (1,000 <b>₽</b>)':
  495. cla
  496. money -= 1000
  497. 'You gave the money big man in the jeep. He put them in his pocket and left.'
  498. act 'Move away':gt 'park', 'prost'
  499. end
  500. end
  501. act 'Fuck you!':
  502. cla
  503. minut += 15
  504. gs 'npcgeneratec', 0, 'Bandit', rand(18,40)
  505. gs 'boyStat', $npclastgenerated
  506. !!stats
  507. strenV = 200
  508. speedV = 30
  509. agilV = 20
  510. reactV = 20
  511. vitalV = 150
  512. intelV = 10
  513. willV = 10
  514. !!skills
  515. magikV = 10
  516. boxingV = 10
  517. shootV = 10
  518. !!parameters
  519. healthV = vitalV * 10 + strenV * 5
  520. mannaV = intelV * 10 + magikV * 10
  521. willpowerV = willV * 10
  522. BonusAtakV = 0
  523. BonusDefV = 0
  524. !!Programme of Action
  525. program = 0
  526. prostitutFight = 2
  527. if spellavtoklon = 1:klon = 3
  528. if spellbefshild = 1:defence = 500
  529. gt 'fight', 'start'
  530. end
  531. elseif whrand > 5 and whrand <= 60:
  532. minut += 15
  533. stat['bj'] += 1
  534. guy += 1
  535. money += 500
  536. pcs_throat += 1
  537. '<center><img <<$set_imgh>> src="images/locations/highway/sex/car.jpg"></center>'
  538. 'To you a car drove up and a man sitting behind the wheel asked how much it would cost the vacuum. You called a standard fee of 500 <b>₽</b>. He agreed and opened Passenger door for you.'
  539. if prezik > 0:'You got a condom and put it in your mouth, then bent over his pants and put his client condom on the penis with his mouth.'
  540. 'You clasped lips member client and began to suck it, caress the tongue and try to take it as deep as possible.'
  541. gs 'npcgeneratec', 0, 'Client', rand(15,30)
  542. gs 'boyStat', $npclastgenerated
  543. if prezik = 0:
  544. swallow += 1
  545. spafinloc = 12
  546. gs 'cum_manage'
  547. 'Client started cumming in your mouth, you continued to suck and swallow his hot, tart sperm.'
  548. dynamic $venerasiakOral
  549. elseif prezik > 0:
  550. dynamic $prezik
  551. 'Client finished in a condom.'
  552. end
  553. 'After the client has finished you off immediately dropped out of the car.'
  554. act 'Go to the panel':gt 'park', 'prost'
  555. elseif whrand > 60 and whrand <= 90:
  556. minut += 15
  557. 'You were walking along the sidewalk showing off their charms completely in vain, no you are not interested.'
  558. act 'Go to the panel':gt 'park', 'prost'
  559. elseif whrand > 90:
  560. 'To you approached a prostitute. "I hear you, slut, if you do not want problems, you have to pay Stella. Pyatihatnik Come here and get out on work."'
  561. if money >= 500:
  562. act 'Giving money (500 <b>₽</b>)':
  563. cla
  564. money -= 500
  565. 'You gave the money to the prostitute, she turned and walked away.'
  566. act 'Move away':gt 'park', 'prost'
  567. end
  568. end
  569. act 'Fuck you!':
  570. cla
  571. minut += 15
  572. gs 'npcgeneratec', 0, 'Prostitute', rand(15,30)
  573. gs 'boyStat', $npclastgenerated
  574. !!stats
  575. strenV = 50
  576. speedV = 50
  577. agilV = 40
  578. reactV = 30
  579. vitalV = 60
  580. intelV = 10
  581. willV = 10
  582. !!skills
  583. magikV = 10
  584. boxingV = 10
  585. shootV = 10
  586. !!parameters
  587. healthV = vitalV * 10 + strenV * 5
  588. mannaV = intelV * 10 + magikV * 10
  589. willpowerV = willV * 10
  590. BonusAtakV = 0
  591. BonusDefV = 0
  592. !!Programme of Action
  593. program = 0
  594. prostitutFight = 3
  595. if spellavtoklon = 1:klon = 3
  596. if spellbefshild = 1:defence = 500
  597. gt 'fight', 'start'
  598. end
  599. end
  600. end
  601. end
  602. act 'Move away':gt 'park', 'start'
  603. end
  604. if $ARGS[0] = 'rape1':
  605. $location_type = 'event_outdoors'
  606. cla
  607. *clr
  608. rape += 1
  609. gs 'npcgeneratec', 0, 'Rapist', rand(18,40)
  610. gs 'boyStat', $npclastgenerated
  611. SUB += 3
  612. money = 0
  613. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/sex/rape.jpg"></center>'
  614. 'Suddenly, you are hit on the head. You awake sometime later in a bush. Somehow you''re not able to move your arms, they must be tied up. As you look down on yourself, you realize, that you''re not wearing anything and before you can even react some dude is ramming his into your cunt. "Shit", you think yourself, "I''m being raped."'
  615. gs 'arousal', 5, 'vaginal', 'rape'
  616. act 'Try to resist':
  617. cla
  618. spafinloc = 0
  619. gs 'cum_manage'
  620. 'You try everything that''s possible in your situation right now to resist him, but he just tightens his grips and doesn''t stop fucking you. Some time later he begins to groan and you can feel his hot cum flowing inside your pussy. You just hope to yourself, that he didn''t impregnate you. He then zips up his pants, takes your money and leaves.'
  621. gs 'arousal', 15, 'vaginal', 'rape', 'rough'
  622. gs 'arousal', 'end'
  623. act 'Leave':gt 'park', 'start'
  624. end
  625. act 'Try to relax and enjoy it':
  626. cla
  627. *clr
  628. stat['anal'] += 1
  629. SUB += 5
  630. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/sex/rapean.jpg"></center>'
  631. 'It doesn''t take long for the rapist to realize you''re not resisting. "Good girl!", he says to you. He pushes you onto your knees and intends to take you doggy-style. He spreads your asscheeks aside and pushes his cock inside. You cry out in pain, but he holds your mouth shut and doesn''t stop fucking your asshole.'
  632. gs 'arousal', 15, 'anal', 'rape'
  633. act 'Go on':
  634. cla
  635. *clr
  636. spafinloc = 12
  637. gs 'cum_manage'
  638. spafinloc = 11
  639. gs 'cum_manage'
  640. SUB += 5
  641. '<center><img <<$set_imgh>> src="images/locations/city/centralpark/sex/cum.jpg"></center>'
  642. '"Give me a blowjob and you''ll get your reward for not resisting, woman.", he tells you. You nod obidiently and move on your knees and begin to give him head.'
  643. gs 'arousal', 15, 'bj', 'rape'
  644. 'It doesn''t take long for him to groan out in pleasure, "You better swallow it all, slut!" Shortly after that you can taste his hot cum inside your mouth and you swallow every drip of it, somehow enjoying the taste. Then he stand up, buttons up his pants and takes your money. While you were still liking your fingers clean from any drips of cum, he smiles and says to you, "Have a nice day slut."'
  645. gs 'arousal', 'end'
  646. act 'Stand up and leave':gt 'park', 'start'
  647. end
  648. end
  649. end
  650. --- park ---------------------------------