0
0

zaprFWash.qsrc 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. # zaprFWash
  2. ! most complete comments for how the code works can be found in 'wash', 'titsFlash', 'runback', and 'punishSpank'
  3. ! most other code in here are just variations of those sections
  4. if $ARGS[0] = 'start':
  5. $loc_arg = 'start'
  6. $loc = 'zaprFWash'
  7. $menu_loc = 'zaprFWash'
  8. $menu_arg = 'start'
  9. menu_off = 0
  10. *clr & cla
  11. ! can''t wash cars if have visible cum already
  12. if (cumloc[6] = 1 or cumloc[7] = 1) or cumloc[11] = 1:
  13. minut += 5
  14. pcs_mood -= 5
  15. pav_sex += rand(0,2)
  16. 'The gas station worker chases you away: "At least go wash yourself off first, whore!"'
  17. act 'Leave':gt 'zaprF', 'start'
  18. act 'Go to the toilet':gt 'zaprF', 'toilet'
  19. else
  20. gt 'zaprFWash', 'wash'
  21. end
  22. end
  23. if $ARGS[0] = 'wash':
  24. if litltown = 0:
  25. slut_compare = city_slut
  26. elseif litltown = 1:
  27. slut_compare = pav_slut
  28. end
  29. ! only wearing bimbo or prostitute clothing and looking good can get propositioned by a customer
  30. if PCloBimbo = 1 or PCloStyle = 4:
  31. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  32. minut += 60
  33. pcs_mood -= 5
  34. gs 'sweat', 'add', 2
  35. if pcs_apprnc >= 60:
  36. ! slightly more money for wearing bimbo or prostitute clothing and looking good too
  37. 'You washed the windows of several cars and earned 100 <b>₽</b>.'
  38. money += 100
  39. ! min chance of 20 percent; max chance of 80 percent; percent chance scales with city_slut or pav_slut
  40. ! as your repuation increases you will be asked more often
  41. skimpyCustomerChance = rand(1, 100)
  42. if skimpyCustomerChance <= min(max(20,slut_compare),80):
  43. 'As you finish washing another car, the driver walks up to you to give you a tip. From the way he''s looking at you, it''s obvious he''s interested in something more as well.'
  44. ! starts off with always doing titsQ when rep is low, as rep increases they may skip a question since they know you will do it anyway
  45. ! also different people have different tastes so you wont be asked the same thing in the same order every time by every customer that walks up to you
  46. carwashscene = rand(1, 100)
  47. if carwashscene <= min(max(25,slut_compare),50) and carwashscene >= 25:
  48. gt 'zaprFWash', 'assQ'
  49. elseif carwashscene <= min(max(50,slut_compare),65) and carwashscene >= 50:
  50. gt 'zaprFWash', 'pussyQ'
  51. elseif carwashscene <= min(max(65,slut_compare),85) and carwashscene >= 65:
  52. gt 'zaprFWash', 'handQ'
  53. elseif carwashscene <= min(max(85,slut_compare),100) and carwashscene >= 85:
  54. gt 'zaprFWash', 'blowQ'
  55. else
  56. gt 'zaprFWash', 'titsQ'
  57. end
  58. else
  59. gs 'zaprFWash', 'flash_passing'
  60. end
  61. else
  62. ! slightly more money for wearing bimbo or prostitute clothing but not looking too great
  63. 'You washed the windows of several cars and earned 80 <b>₽</b>.'
  64. money += 80
  65. gs 'zaprFWash', 'flash_passing'
  66. end
  67. else
  68. minut += 60
  69. pcs_mood -= 5
  70. gs 'sweat', 'add', 2
  71. money += 60
  72. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/regular' + rand(1,4) + '.jpg"></center>'
  73. ! normal money just for the car washing
  74. 'You washed the windows of several cars and earned 60 <b>₽</b>.'
  75. gs 'zaprFWash', 'flash_passing'
  76. end
  77. end
  78. if $ARGS[0] = 'flash_passing':
  79. act 'Continue':gt 'zaprF', 'start'
  80. if PCloPants > 0 or PCloSkirt > 0:
  81. if pcs_inhib >= 35: act 'Flash your tits at passing cars':gt 'zaprFWash', 'titsFlash', 'Free', 'Flash'
  82. if exhibitionist_lvl > 0: act 'Flash your ass at passing cars':gt 'zaprFWash', 'assFlash', 'Free', 'Flash'
  83. if exhibitionist_lvl > 1: act 'Flash your pussy at passing cars':gt 'zaprFWash', 'pussyFlash', 'Free', 'Flash'
  84. end
  85. end
  86. if $ARGS[0] = 'titsQ':
  87. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  88. 'Want to earn some more cash, girl? Show me your tits. I''ll give you 50 <b>₽</b>. It''s easy money.'
  89. ! inhibition or exhibitionism requirements needed to accept the offer or just have fun with him
  90. if exhibitionist_lvl > 0 or pcs_inhib >= 35 or pcs_horny >= 40: act 'Agree and show him your tits':gt 'zaprFWash', 'titsFlash', 'Paid', 'Question'
  91. act 'Refuse':gt 'zaprFWash', 'refuse'
  92. end
  93. if $ARGS[0] = 'assQ':
  94. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  95. 'What a nice ass you have there. Let me see it. Will 50 <b>₽</b> convince you to show it to me?'
  96. ! inhibition or exhibitionism requirements needed to accept the offer or just have fun with him
  97. if exhibitionist_lvl > 0 or pcs_horny >= 60: act 'Agree and show him your ass':gt 'zaprFWash', 'assFlash', 'Paid', 'Question'
  98. act 'Refuse':gt 'zaprFWash', 'refuse'
  99. end
  100. if $ARGS[0] = 'pussyQ':
  101. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  102. 'You look like a cool girl. Let me see your pussy. I''ll give you 50 <b>₽</b>.'
  103. ! inhibition or exhibitionism requirements needed to accept the offer or just have fun with him
  104. if exhibitionist_lvl > 1 or pcs_horny >= 80: act 'Agree and show him your pussy':gt 'zaprFWash', 'pussyFlash', 'Paid', 'Question'
  105. act 'Refuse':gt 'zaprFWash', 'refuse'
  106. end
  107. if $ARGS[0] = 'handQ':
  108. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  109. 'Could you help me out girl? It''s getting tight down here in my pants just looking at you. How about you touch it a bit? I''ll pay you 200 <b>₽</b>.'
  110. ! slut or horny requirements needed to accept the offer or just have fun with him
  111. if slut_compare >= 25 or pcs_horny >= 25: act 'Agree and give him a handjob':gt 'zaprFWash', 'handjob', 'Paid'
  112. act 'Refuse':gt 'zaprFWash', 'refuse'
  113. end
  114. if $ARGS[0] = 'blowQ':
  115. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/bimboclean' + rand(1,4) + '.jpg"></center>'
  116. 'Looking hot today girl! How about you put your mouth to good use? I''ll pay you 200 <b>₽</b>.'
  117. ! slut or horny requirements needed to accept the offer or just have fun with him
  118. if slut_compare >= 30 or pcs_horny >= 30: act 'Agree and give him a blowjob':gt 'zaprFWash', 'blowjob', 'Paid', 'Question'
  119. act 'Refuse':gt 'zaprFWash', 'refuse'
  120. end
  121. if $ARGS[0] = 'refuse':
  122. ! just being asked can slowly change your inhibitions which will enable a player to eventually agree to the questions above
  123. if pcs_inhib < 35: inhib_exp += rand(1,2)
  124. pcs_mood += 5
  125. gs 'stat'
  126. '<center><video autoplay loop src="images/pc/reactions/no.mp4"></video></center>'
  127. 'You begin to consider his offer but decide turn him down and walk away.'
  128. act 'Go back to washing cars':gt 'zaprF', 'start'
  129. end
  130. ! $ARGS[1] = whether you got paid for this
  131. ! $ARGS[2] = whether this act came from a customer question or just flashing for passing cars
  132. if $ARGS[0] = 'titsFlash':
  133. ! reputation and money will depend on whether you were paid
  134. if $ARGS[1] = 'Paid':
  135. money += 50
  136. if litltown = 0:
  137. city_prostitute += rand(0,1)
  138. elseif litltown = 1:
  139. pav_prostitute += rand(0,1)
  140. end
  141. elseif $ARGS[1] = 'Free':
  142. gs 'exhibitionism', 1
  143. end
  144. if pcs_inhib < 30: inhib_exp += rand(2,4)
  145. pcs_mood += 5
  146. gs 'stat'
  147. ! chance for using photos or videos
  148. if rand(1, 100) < 50:
  149. i = rand(1, 100)
  150. ! chance of using old pics since there are so many newer pics to choose from
  151. if i < 15:
  152. if PCloPants > 0:
  153. i = rand(1, 2)
  154. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/pants/titsflash<<i>>.jpg"></center>'
  155. elseif PCloSkirt > 0:
  156. i = 1
  157. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/skirt/titsflash<<i>>.jpg"></center>'
  158. end
  159. else
  160. ! newer photos are more neatly organized into different folders so no looping needed
  161. if PCloPants > 0:
  162. '<center><img <<$set_imgh>> src="images/pc/flashing/pants/outside/tits/' + rand(1,14) + '.jpg"></center>'
  163. elseif PCloSkirt > 0:
  164. '<center><img <<$set_imgh>> src="images/pc/flashing/dress/outside/tits/' + rand(1,12) + '.jpg"></center>'
  165. end
  166. end
  167. else
  168. if PCloPants > 0:
  169. i = rand(1, 4)
  170. '<center><video autoplay loop src="images/locations/shared/carwash/pants/titsflash<<i>>.mp4"></video></center>'
  171. elseif PCloSkirt > 0:
  172. i = rand(1, 3)
  173. '<center><video autoplay loop src="images/locations/shared/carwash/skirt/titsflash<<i>>.mp4"></video></center>'
  174. end
  175. end
  176. ! text differences depending on whether you were paid, whether you are flashing for a customer or for the cars on the road, and what type of clothing you are wearing
  177. if $ARGS[1] = 'Paid':
  178. if PCloPants > 0:'You lift up your top up and show him your breasts for a few seconds. Then you quickly cover up and take your money.'
  179. if PCloSkirt > 0:'You pull down your top and show him your breasts for a few seconds. Then you quickly cover up and take your money.'
  180. elseif $ARGS[1] = 'Free':
  181. if $ARGS[2] = 'Question':
  182. if PCloPants > 0:'You lift up your top up and show him your breasts for a few seconds. You give your breasts a little shake for him before you cover up.'
  183. if PCloSkirt > 0:'You pull down your top and show him your breasts for a few seconds. You give your breasts a little shake for him before you cover up.'
  184. elseif $ARGS[2] = 'Flash':
  185. if PCloPants > 0:'You lift up your top up and expose your breasts to the road for a few seconds. A couple cars pass by and honk in appreciation. You give your breasts a little shake before you cover up.'
  186. if PCloSkirt > 0:'You pull down your top and expose your breasts to the road for a few seconds. A couple cars pass by and honk in appreciation. You give your breasts a little shake before you cover up.'
  187. end
  188. end
  189. gs 'arousal', 'flashlite', 5
  190. gs 'stat'
  191. ! can only continue with more questions if flashing for a customer
  192. ! also more questions will require either sub or dom or bimbo or horny as well as bimbo or prostitute clothing
  193. ! this has a wide range of requirements so that many different types of characters can still play this content
  194. !if (bimbolevel >= 1 or pcs_horny >= 5) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  195. if (bimbolevel >= 1 or pcs_horny >= 5) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  196. ! once again dynamically choosing the next scene to play based on reputation
  197. carwashscene = rand(1, 100)
  198. if carwashscene <= min(max(30,slut_compare),60) and carwashscene >= 50:
  199. act 'Continue':gt 'zaprFWash', 'pussyQ'
  200. elseif carwashscene <= min(max(60,slut_compare),80) and carwashscene >= 60:
  201. act 'Continue':gt 'zaprFWash', 'handQ'
  202. elseif carwashscene <= min(max(80,slut_compare),100) and carwashscene >= 80:
  203. act 'Continue':gt 'zaprFWash', 'blowQ'
  204. else
  205. act 'Continue':gt 'zaprFWash', 'assQ'
  206. end
  207. ! flashing for cars just allows you to return to the gas station
  208. else
  209. act 'Go back to the gas station':
  210. if $ARGS[1] = 'Paid': slutty += 1
  211. gt 'zaprF', 'start'
  212. end
  213. end
  214. end
  215. ! $ARGS[1] = whether you got paid for this
  216. ! $ARGS[2] = whether this act came from a customer question or just flashing for passing cars
  217. if $ARGS[0] = 'assFlash':
  218. if $ARGS[1] = 'Paid':
  219. money += 50
  220. if litltown = 0:
  221. city_prostitute += rand(0,1)
  222. elseif litltown = 1:
  223. pav_prostitute += rand(0,1)
  224. end
  225. elseif $ARGS[1] = 'Free':
  226. gs 'exhibitionism', 2
  227. end
  228. if pcs_inhib < 30: inhib_exp += rand(2,4)
  229. pcs_mood += 5
  230. gs 'stat'
  231. if rand(1, 100) < 50:
  232. i = rand(1, 100)
  233. if i < 10:
  234. if PCloPants > 0:
  235. i = 1
  236. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/pants/assflash<<i>>.jpg"></center>'
  237. elseif PCloSkirt > 0:
  238. i = 1
  239. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/skirt/assflash<<i>>.jpg"></center>'
  240. end
  241. else
  242. if PCloPants > 0:
  243. '<center><img <<$set_imgh>> src="images/pc/flashing/pants/outside/butt/' + rand(1,16) + '.jpg"></center>'
  244. elseif PCloSkirt > 0:
  245. '<center><img <<$set_imgh>> src="images/pc/flashing/dress/outside/butt/' + rand(1,9) + '.jpg"></center>'
  246. end
  247. end
  248. else
  249. if PCloPants > 0:
  250. i = rand(1, 3)
  251. '<center><video autoplay loop src="images/locations/shared/carwash/pants/assflash<<i>>.mp4"></video></center>'
  252. elseif PCloSkirt > 0:
  253. i = rand(1, 2)
  254. '<center><video autoplay loop src="images/locations/shared/carwash/skirt/assflash<<i>>.mp4"></video></center>'
  255. end
  256. end
  257. if $ARGS[1] = 'Paid':
  258. if PCloPants > 0:'You pull your pants down and show him your ass for a few seconds. Then you quickly cover up and take your money.'
  259. if PCloSkirt > 0:'You lift your skirt up and show him your ass for a few seconds. Then you quickly cover up and take your money.'
  260. elseif $ARGS[1] = 'Free':
  261. if $ARGS[2] = 'Question':
  262. if PCloPants > 0:'You pull your pants down and show him your ass for a few seconds. You give your ass a little shake for him before you cover up.'
  263. if PCloSkirt > 0:'You lift your skirt up and show him your ass for a few seconds. You give your ass a little shake for him before you cover up.'
  264. elseif $ARGS[2] = 'Flash':
  265. if PCloPants > 0:'You pull your pants down and expose your ass to the road for a few seconds. A couple cars pass by and honk in appreciation. You give your ass a little shake before you cover up.'
  266. if PCloSkirt > 0:'You lift your skirt up and expose your ass to the road for a few seconds. A couple cars pass by and honk in appreciation. You give your ass a little shake before you cover up.'
  267. end
  268. end
  269. gs 'arousal', 'flashlite', 5
  270. gs 'stat'
  271. !if (bimbolevel >= 1 or pcs_horny >= 10) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  272. if (bimbolevel >= 1 or pcs_horny >= 10) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  273. carwashscene = rand(1, 100)
  274. if carwashscene <= min(max(50,slut_compare),75) and carwashscene >= 50:
  275. act 'Continue':gt 'zaprFWash', 'handQ'
  276. elseif carwashscene <= min(max(75,slut_compare),100) and carwashscene >= 75:
  277. act 'Continue':gt 'zaprFWash', 'blowQ'
  278. else
  279. act 'Continue':gt 'zaprFWash', 'pussyQ'
  280. end
  281. else
  282. act 'Go back to the gas station':
  283. if $ARGS[1] = 'Paid': slutty += 1
  284. gt 'zaprF', 'start'
  285. end
  286. end
  287. end
  288. ! $ARGS[1] = whether you got paid for this
  289. ! $ARGS[2] = whether this act came from a customer question or just flashing for passing cars
  290. if $ARGS[0] = 'pussyFlash':
  291. if $ARGS[1] = 'Paid':
  292. money += 50
  293. if litltown = 0:
  294. city_prostitute += 1
  295. elseif litltown = 1:
  296. pav_prostitute += 1
  297. end
  298. elseif $ARGS[1] = 'Free':
  299. gs 'exhibitionism', 3
  300. end
  301. if pcs_inhib < 40: inhib_exp += rand(4,6)
  302. pcs_mood += 5
  303. gs 'stat'
  304. if PCloPants > 0:
  305. '<center><img <<$set_imgh>> src="images/pc/flashing/pants/outside/pussy/' + rand(1,9) + '.jpg"></center>'
  306. elseif PCloSkirt > 0:
  307. '<center><img <<$set_imgh>> src="images/pc/flashing/dress/outside/pussy/' + rand(1,13) + '.jpg"></center>'
  308. end
  309. if $ARGS[1] = 'Paid':
  310. if PCloPants > 0:'You pull your pants down and show him your pussy for a few seconds. Then you quickly cover up and take your money.'
  311. if PCloSkirt > 0:'You lift your skirt up and show him your pussy for a few seconds. Then you quickly cover up and take your money.'
  312. elseif $ARGS[1] = 'Free':
  313. if $ARGS[2] = 'Question':
  314. if PCloPants > 0:'You pull your pants down and show him your pussy for a few seconds. You rub your clit a little for him before you cover up.'
  315. if PCloSkirt > 0:'You lift your skirt up and show him your pussy for a few seconds. You rub your clit a little for him before you cover up.'
  316. elseif $ARGS[2] = 'Flash':
  317. if PCloPants > 0:'You pull your pants down and expose your pussy to the road for a few seconds. A couple cars pass by and honk in appreciation. You rub your clit a little before you cover up.'
  318. if PCloSkirt > 0:'You lift your skirt up and expose your pussy to the road for a few seconds. A couple cars pass by and honk in appreciation. You rub your clit a little before you cover up.'
  319. end
  320. end
  321. gs 'arousal', 'flashlite', 5
  322. gs 'stat'
  323. !if (bimbolevel >= 1 or pcs_horny >= 15) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  324. if (bimbolevel >= 1 or pcs_horny >= 15) and (PCloBimbo = 1 or PCloStyle = 4) and $ARGS[2] = 'Question':
  325. carwashscene = rand(1, 100)
  326. if carwashscene <= min(max(60,slut_compare),100) and carwashscene >= 60:
  327. act 'Continue':gt 'zaprFWash', 'blowQ'
  328. else
  329. act 'Continue':gt 'zaprFWash', 'handQ'
  330. end
  331. else
  332. act 'Go back to the gas station':
  333. if $ARGS[1] = 'Paid': slutty += 1
  334. gt 'zaprF', 'start'
  335. end
  336. end
  337. end
  338. ! $ARGS[1] = whether you got paid for this
  339. if $ARGS[0] = 'handjob':
  340. ! generate random npc for sex
  341. gs 'npcgeneratec', 0, 'gas station customer', rand(18,40)
  342. gs 'boyStat', $npclastgenerated
  343. if $ARGS[1] = 'Paid':
  344. money += 200
  345. if litltown = 0:
  346. city_prostitute += 2
  347. elseif litltown = 1:
  348. pav_prostitute += 2
  349. end
  350. elseif $ARGS[1] = 'Free':
  351. pav_sex += 2
  352. end
  353. if pcs_inhib < 50: inhib_exp += rand(6,8)
  354. pcs_mood += 5
  355. gs 'stat'
  356. if rand(1, 100) < 50:
  357. i = rand(1, 2)
  358. if i = 1:
  359. '<center><img <<$set_imgh>> src="images/shared/sex/handjob/hand.jpg"></center>'
  360. else
  361. '<center><img <<$set_imgh>> src="images/shared/sex/handjob/hj.jpg"></center>'
  362. end
  363. else
  364. i = rand(0, 2)
  365. if i = 0:
  366. '<center><video autoplay loop src="images/shared/sex/handjob/hj<<i>>.mp4"></video></center>'
  367. else
  368. '<center><video autoplay loop src="images/shared/sex/handjob/handjob<<i>>.mp4"></video></center>'
  369. end
  370. end
  371. if $ARGS[1] = 'Paid':
  372. 'You follow him behind the gas station, where you get the promised money, kneel down, unzip his pants and start working his shaft with your hands.'
  373. gs 'arousal', 'hj', 15, 'sub', 'prostitution', 'unknown'
  374. elseif $ARGS[1] = 'Free':
  375. 'You lead him behind the gas station, kneel down, unzip his pants and start working his shaft with your hands.'
  376. gs 'arousal', 'hj', 15, 'dom', 'unknown'
  377. end
  378. gs 'stat'
  379. 'After a while, the man starts pulling your head closer and closer to him. He asks you to blow him: "I''ll give you 200 <b>₽</b> if you open that mouth for me.'
  380. !bimbolevel >= 1 or pcs_horny >= 30:
  381. if bimbolevel >= 1 or pcs_horny >= 30:
  382. if pcs_inhib >= 30 or pcs_horny >= 30:act 'Open your mouth for him':gt 'zaprFWash', 'blowjob', 'Paid', 'handjob'
  383. act 'Rub harder to make him cum':gt 'zaprFWash', 'handjobEndQ'
  384. else
  385. act 'Rub harder to make him cum':gt 'zaprFWash', 'handjobEndQ'
  386. end
  387. end
  388. ! $ARGS[1] = whether you got paid for this
  389. ! $ARGS[2] = whether this act came from a customer question or already giving a customer a handjob
  390. if $ARGS[0] = 'blowjob':
  391. if $ARGS[2] = 'Question':
  392. gs 'npcgeneratec', 0, 'gas station customer', rand(18,40)
  393. gs 'boyStat', $npclastgenerated
  394. end
  395. if $ARGS[1] = 'Paid':
  396. money += 200
  397. if litltown = 0:
  398. city_prostitute += 2
  399. elseif litltown = 1:
  400. pav_prostitute += 2
  401. end
  402. elseif $ARGS[1] = 'Free':
  403. pav_sex = 2
  404. end
  405. if pcs_inhib < 50: inhib_exp += rand(6,8)
  406. pcs_mood += 5
  407. gs 'stat'
  408. if rand(1, 100) < 50:
  409. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/blowjob' + rand(1,4) + '.jpg"></center>'
  410. else
  411. '<center><video autoplay loop src="images/locations/shared/carwash/sex/blowjob' + rand(1,3) + '.mp4"></video></center>'
  412. end
  413. if $ARGS[2] = 'Question':
  414. if $ARGS[1] = 'Paid':
  415. 'You follow him behind the gas station, where you get the promised money, kneel down, unzip his pants and start working his shaft with your mouth.'
  416. gs 'arousal', 'bj', 15, 'sub', 'prostitution', 'unknown'
  417. elseif $ARGS[1] = 'Free':
  418. 'You lead him behind the gas station, kneel down, unzip his pants and start working his shaft with your mouth.'
  419. gs 'arousal', 'bj', 15, 'dom', 'unknown'
  420. end
  421. elseif $ARGS[2] = 'handjob':
  422. if $ARGS[1] = 'Paid':
  423. 'You grab the money he tosses at you and switch to working his shaft with your mouth.'
  424. gs 'arousal', 'bj', 15, 'sub', 'prostitution', 'unknown'
  425. elseif $ARGS[1] = 'Free':
  426. 'You switch to working his shaft with your mouth.'
  427. gs 'arousal', 'bj', 15, 'dom', 'unknown'
  428. end
  429. end
  430. gs 'stat'
  431. 'After a while, the man starts trying to remove your clothes. He asks you to let him fuck your pussy: "I''ll give you 400 <b>₽</b> if you let me take your pussy! C''mon!'
  432. !bimbolevel >= 1 or pcs_horny >= 40:
  433. if bimbolevel >= 1 or pcs_horny >= 40:
  434. if pcs_vag = 0:
  435. if pcs_inhib >= 40 or pcs_horny >= 40: act 'Offer your ass instead (you don''t want to lose your virginity to this stranger...)':gt 'zaprFWash', 'fuckAnal', 'Paid'
  436. else
  437. if pcs_inhib >= 40 or pcs_horny >= 40: act 'Offer your pussy':gt 'zaprFWash', 'fuckPussy', 'Paid'
  438. if pcs_inhib >= 40 or pcs_horny >= 40: act 'Offer your ass':gt 'zaprFWash', 'fuckAnal', 'Paid'
  439. end
  440. act 'Suck harder to make him cum':gt 'zaprFWash', 'blowjobEndQ'
  441. else
  442. act 'Suck harder to make him cum':gt 'zaprFWash', 'blowjobEndQ'
  443. end
  444. end
  445. ! $ARGS[1] = whether you got paid for this
  446. if $ARGS[0] = 'fuckPussy':
  447. if $ARGS[1] = 'Paid':
  448. money += 400
  449. if litltown = 0:
  450. city_prostitute += 4
  451. elseif litltown = 1:
  452. pav_prostitute += 4
  453. end
  454. elseif $ARGS[1] = 'Free':
  455. pav_sex += 4
  456. end
  457. if pcs_inhib < 60: inhib_exp += rand(14,16)
  458. pcs_mood += 10
  459. gs 'stat'
  460. if rand(1, 100) < 50:
  461. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/fuckpussy' + rand(1,4) + '.jpg"></center>'
  462. else
  463. '<center><video autoplay loop src="images/locations/shared/carwash/sex/fuckpussy' + rand(1,4) + '.mp4"></video></center>'
  464. end
  465. if $ARGS[1] = 'Paid':
  466. 'You bend over and let the man start fucking your pussy after collecting your money.'
  467. gs 'arousal', 'vaginal', 30, 'sub', 'prostitution', 'unknown'
  468. elseif $ARGS[1] = 'Free':
  469. 'You bend over and let the man start fucking your pussy.'
  470. gs 'arousal', 'vaginal', 30, 'dom', 'unknown'
  471. end
  472. gs 'stat'
  473. act 'Continue':gt 'zaprFWash', 'pussyEndQ'
  474. end
  475. ! $ARGS[1] = whether you got paid for this
  476. if $ARGS[0] = 'fuckAnal':
  477. if $ARGS[1] = 'Paid':
  478. money += 400
  479. if litltown = 0:
  480. city_prostitute += 4
  481. elseif litltown = 1:
  482. pav_prostitute += 4
  483. end
  484. elseif $ARGS[1] = 'Free':
  485. pav_sex += 4
  486. end
  487. if pcs_inhib < 60: inhib_exp += rand(14,16)
  488. pcs_mood += 10
  489. gs 'stat'
  490. if rand(1, 100) < 50:
  491. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/fuckanal' + rand(1,4) + '.jpg"></center>'
  492. else
  493. '<center><video autoplay loop src="images/locations/shared/carwash/sex/fuckanal' + rand(1,4) + '.mp4"></video></center>'
  494. end
  495. gs 'arousal', 'auto_lube', 'anal'
  496. if $ARGS[1] = 'Paid':
  497. 'You bend over and let the man start fucking your ass after you collect your money. His cock is still wet with your saliva as it slides inside you.'
  498. gs 'arousal', 'anal', 30, 'sub', 'prostitution', 'unknown'
  499. elseif $ARGS[1] = 'Free':
  500. 'You bend over and let the man start fucking your ass. His cock is still wet with your saliva as it slides inside you.'
  501. gs 'arousal', 'anal', 30, 'dom', 'unknown'
  502. end
  503. gs 'stat'
  504. rapePussyChance = rand(1, 100)
  505. if rapePussyChance <= min(max(1,slut_compare),20):
  506. act 'Continue':gt 'zaprFWash', 'rapePussy'
  507. else
  508. act 'Continue':gt 'zaprFWash', 'analEndQ'
  509. end
  510. end
  511. if $ARGS[0] = 'rapePussy':
  512. i = rand(1, 5)
  513. '<center><video autoplay loop src="images/locations/shared/carwash/sex/hardanal<<i>>.mp4"></video></center>'
  514. 'The man fucks your ass furiously, taking no heed to your painful moans. As you try to move away a bit to limit the depth he can reach in your ass, he slaps your buttcheeks hard and shouts:'
  515. '"Stop moving bitch! Who do you think you are, that you can tell me what to do?"'
  516. if pcs_vag = 0:
  517. 'He gropes your ass, lifts it up and suddenly spots your hymen.'
  518. '"What, you are a virgin? Such a tease and still a virgin, really?"'
  519. rapeAnyway = rand(1, 100)
  520. if rapeAnyway <= min(max(1,slut_compare),50):
  521. '"It would have happened sooner or later anyway, virgin slut. Now enjoy and remember this moment; I know I will!"'
  522. act 'Continue':gt 'zaprFWash', 'rapePussyYes', 'virgin'
  523. else
  524. '"Girls like you should not be acting like this! Someone should have taught you a lesson a long time ago."'
  525. act 'Continue':gt 'zaprFWash', 'punishSpank'
  526. end
  527. else
  528. act 'Continue':gt 'zaprFWash', 'rapePussyYes', 'normal'
  529. end
  530. end
  531. ! $ARGS[1] = whether you were a virgin before this or not
  532. if $ARGS[0] = 'rapePussyYes':
  533. inhib_exp += rand(10,20)
  534. '<center><video autoplay loop src="images/locations/shared/carwash/sex/pussytoanal' + rand(1,3) + '.mp4"></video></center>'
  535. if $ARGS[1] = 'virgin':
  536. pcs_mood -= 30
  537. 'He gropes your ass, lifts it up and pushes his dick inside your pussy in one thrust! You feel your hymen break and know your virginity is gone forever. What will your friends and family think of you now if they find out?'
  538. elseif $ARGS[1] = 'normal':
  539. pcs_mood -= 20
  540. 'He gropes your ass, lifts it up and pushes his dick inside your pussy in one thrust, all the way to the hilt!'
  541. end
  542. gs 'arousal', 'vaginal', 30, 'sub', 'prostitution', 'rough', 'rape', 'unknown'
  543. gs 'stat'
  544. act 'Continue':gt 'zaprFWash', 'vaginaCum', 'rape'
  545. end
  546. if $ARGS[0] = 'pussyEndQ':
  547. 'You can feel that the man is about to orgasm. You decide to...:'
  548. act 'Let him cum inside your vagina':gt 'zaprFWash', 'vaginaCum', 'consensual'
  549. act 'Take his cum on your face':gt 'zaprFWash', 'blowjobEndFace', 'inside'
  550. act 'Let him cum inside your mouth':gt 'zaprFWash', 'blowjobEndMouth', 'inside'
  551. end
  552. if $ARGS[0] = 'analEndQ':
  553. 'You can feel that the man is about to ejaculate. You decide to...:'
  554. act 'Let him cum inside your ass':gt 'zaprFWash', 'assCum'
  555. act 'Take his cum on your face':gt 'zaprFWash', 'blowjobEndFace', 'inside'
  556. act 'Let him cum inside your mouth':gt 'zaprFWash', 'blowjobEndMouth', 'inside'
  557. end
  558. ! $ARGS[1] = whether this was rape or not
  559. if $ARGS[0] = 'vaginaCum':
  560. if pcs_inhib < 40: inhib_exp += rand(4,6)
  561. pcs_vag += 1
  562. pain['vaginal'] += 4
  563. gs 'cum_call', ''
  564. gs 'stat'
  565. '<center><video autoplay loop src="images/locations/shared/carwash/sex/cumpussy' + rand(1,5) + '.mp4"></video></center>'
  566. if $ARGS[1] = 'consensual':
  567. pcs_mood += 20
  568. 'You let him cum deep inside your vagina. A pleasant warmth fills your insides as he shoots his load deep inside you. When he pulls out, a bit of sperm leaks out of your hole.'
  569. elseif $ARGS[1] = 'rape':
  570. pcs_mood -= 20
  571. 'The pounding suddenly stops as he cums deep inside your vagina. You can feel his cum inside of you as he continues to shoot his load inside your vagina. When he pulls out, a bit of sperm leaks out of your hole.'
  572. end
  573. gs 'arousal', 'end'
  574. gs 'stat'
  575. act 'Go back to the gas station':gt 'zaprF', 'start'
  576. end
  577. if $ARGS[0] = 'assCum':
  578. if pcs_inhib < 40: inhib_exp += rand(4,6)
  579. minut += 5
  580. pcs_mood += 10
  581. pcs_ass += 1
  582. pain['asshole'] += 1
  583. gs 'cum_call', 'anus'
  584. gs 'stat'
  585. '<center><video autoplay loop src="images/locations/shared/carwash/sex/cumanal' + rand(1,2) + '.mp4"></video></center>'
  586. 'You let him cum deep inside your ass. A pleasant warmth fills your insides as he shoots his load deep inside you. When he pulls out, a bit of sperm leaks out of your hole before you can tighten your worn out anus.'
  587. gs 'arousal', 'end'
  588. gs 'stat'
  589. act 'Go back to gas station':gt 'zaprF', 'start'
  590. end
  591. if $ARGS[0] = 'handjobEndQ':
  592. 'You can feel that the man is about to orgasm. You decide to take it...:'
  593. act 'On your face':gt 'zaprFWash', 'blowjobEndFace', 'outside'
  594. act 'On your hands':gt 'zaprFWash', 'handjobEndHands'
  595. end
  596. if $ARGS[0] = 'handjobEndHands':
  597. if pcs_inhib < 30: inhib_exp += rand(2,4)
  598. pcs_mood += 5
  599. gs 'cum_call', 'hands'
  600. gs 'stat'
  601. if rand(1, 100) < 30:
  602. '<center><video autoplay loop src="images/shared/sex/cum/handjob/hand0,' + rand(0,1) + '.mp4"></video></center>'
  603. else
  604. '<center><img <<$set_imgh>> src="images/shared/sex/cum/handjob/hand' + rand(1,2) + '.jpg"></center>'
  605. end
  606. 'When the man starts to ejaculate, you quickly point his cock away from your face. Your hands are covered in cum by the time he is done ejaculating. His sack was full, you can say that for sure.'
  607. gs 'arousal', 'end'
  608. gs 'stat'
  609. act 'Go back to the gas station':gt 'zaprF', 'start'
  610. end
  611. if $ARGS[0] = 'blowjobEndQ':
  612. 'You can feel that the man is about to orgasm. You decide to take it...:'
  613. act 'On your face':gt 'zaprFWash', 'blowjobEndFace', 'outside'
  614. act 'In your mouth':gt 'zaprFWash', 'blowjobEndMouth', 'outside'
  615. end
  616. ! $ARGS[1] = whether his cock was inside or outside of you before he cums on your face
  617. if $ARGS[0] = 'blowjobEndFace':
  618. if pcs_inhib < 30: inhib_exp += rand(2,4)
  619. pcs_mood += 5
  620. gs 'cum_call', 'face'
  621. gs 'stat'
  622. if rand(1, 100) < 30:
  623. '<center><video autoplay loop src="images/locations/shared/carwash/sex/cumface' + rand(1,2) + '.mp4"></video></center>'
  624. else
  625. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/cumface' + rand(1,4) + '.jpg"></center>'
  626. end
  627. if $ARGS[1] = 'outside':
  628. 'When the man starts to ejaculate, you quickly point his cock towards your face. Your face is covered in cum by the time he is done ejaculating. His sack was full, you can say that for sure.'
  629. elseif $ARGS[1] = 'inside':
  630. 'When the man starts to ejaculate, you quickly take his cock out of you and point it towards your face. Your face is covered in cum by the time he is done ejaculating. His sack was full, you can say that for sure.'
  631. end
  632. gs 'arousal', 'end'
  633. gs 'stat'
  634. act 'Go back to the gas station':gt 'zaprF', 'start'
  635. end
  636. ! $ARGS[1] = whether his cock was inside or outside of you before he cums in your mouth
  637. if $ARGS[0] = 'blowjobEndMouth':
  638. gs 'cum_call', 'mouth'
  639. gs 'stat'
  640. if rand(1, 100) < 60:
  641. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/cummouth' + rand(1,4) + '.jpg"></center>'
  642. else
  643. '<center><video autoplay loop src="images/locations/shared/carwash/sex/cummouth1.mp4"></video></center>'
  644. end
  645. if $ARGS[1] = 'outside':
  646. 'When the man starts to ejaculate, you quickly open your mouth while keeping his cock aimed straight at your tongue, giving him a good view of the cum as it flies inside your mouth. His sack was full, you can say that for sure.'
  647. elseif $ARGS[1] = 'inside':
  648. 'When the man starts to ejaculate, you quickly take his cock out of you and aim it straight at your tongue, giving him a good view of the cum as it flies inside your mouth. His sack was full, you can say that for sure.'
  649. end
  650. gs 'arousal', 'end'
  651. gs 'stat'
  652. act 'Continue':gt 'zaprFWash', 'blowjobEndMouthQ'
  653. end
  654. if $ARGS[0] = 'blowjobEndMouthQ':
  655. 'Your mouth is full of sperm. You decide to...:'
  656. act 'Swallow and then show him your empty mouth':gt 'zaprFWash', 'blowjobEndMouthSwallow'
  657. act 'Spit it out in front of him':gt 'zaprFWash', 'blowjobEndMouthSpit'
  658. end
  659. if $ARGS[0] = 'blowjobEndMouthSwallow':
  660. if pcs_inhib < 40: inhib_exp += rand(4,6)
  661. swallow += 1
  662. pcs_mood += 10
  663. gs 'stat'
  664. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/swallow' + rand(1,4) + '.jpg"></center>'
  665. 'You gulp down the mouthful of sperm and then present your tongue as a proof that all of his seed is now in your belly.'
  666. 'The man smiles, slaps you mildly on your face and says: "What a nice young slut you are. Next time I need a refill, I''ll be sure to stop by."'
  667. gs 'arousal', 'end'
  668. gs 'stat'
  669. act 'Go back to the gas station':gt 'zaprF', 'start'
  670. end
  671. if $ARGS[0] = 'blowjobEndMouthSpit':
  672. if pcs_inhib < 30: inhib_exp += rand(2,4)
  673. gs 'stat'
  674. if rand(1, 100) > 50:
  675. '<center><img <<$set_imgh>> src="images/locations/shared/carwash/sex/spit' + rand(1,3) + '.jpg"></center>'
  676. else
  677. '<center><video autoplay loop src="images/locations/shared/carwash/sex/spit1.mp4"></video></center>'
  678. end
  679. 'You spit the load of sperm down between the legs of your customer. He doesn''t seem happy about it...'
  680. 'His face darkens and he says: "What, my cum isn''t good enough for you to swallow? I''ll teach you bitch!"'
  681. 'He moves closer to you with an angry look!'
  682. act 'Run back to the gas station':gt 'zaprFWash', 'runback'
  683. end
  684. if $ARGS[0] = 'runback':
  685. minut += 5
  686. ! runSuccess uses a simpler version of the formula used with carwashscene
  687. ! just based on strength and agility; uses whichever is higher to try and run away
  688. ! min 25 percent chance; max 75 percent chance for this initial getaway
  689. runSuccess = rand(1, 100)
  690. if runSuccess <= min(max(25,pcs_stren,pcs_agil),75):
  691. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/turn_back.jpg"></center>'
  692. 'You managed to escape his grasp! You take a quick look behind you to make sure he''s not following you before heading back to the gas station.'
  693. gs 'arousal', 'end'
  694. gs 'stat'
  695. act 'Escape':gt 'zaprF', 'start'
  696. else
  697. pain['cheeks'] += 2
  698. pain['head'] += 2
  699. pain['mouth'] += 2
  700. pain['neck'] += 4
  701. '<center><video autoplay loop src="images/locations/shared/carwash/sex/punishbeatface.mp4"></video></center>'
  702. 'You weren''t quick enough and he caught you. He pushes you down and starts to slap your face!'
  703. gs 'arousal', 'end'
  704. gs 'stat'
  705. act 'Endure his punishment':gt 'zaprFWash', 'punish'
  706. ! gave doms the choice to fight back as long as they have some energy related stat with something left even if they lost the roll for runSuccess
  707. ! these values are based off of the cheat menu values for players who turn off these stats as they can never go below 35
  708. gs 'willpower', 'skill', 'force', 'stren_lvl'
  709. will_cost = (will_cost * 3) / 2
  710. if will_cost <= pcs_willpwr:
  711. act 'Push him off of you and escape (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'force' & gt 'zaprFWash', 'fight'
  712. else
  713. act 'Push him off of you and escape (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  714. end
  715. end
  716. end
  717. if $ARGS[0] = 'fight':
  718. ! maybe at some point this could be an actual fight but with the state of the combat logic is in this will just be left to drain a stat to escape
  719. ! these values are based off of the cheat menu values for players who turn off these stats as they can never go below 35
  720. if pcs_energy >= 35:
  721. pcs_energy -= 35
  722. elseif pcs_hydra >= 35:
  723. pcs_hydra -= 35
  724. elseif pcs_sleep >= 35:
  725. pcs_sleep -= 35
  726. end
  727. gs 'arousal', 'end'
  728. gs 'stat'
  729. gt 'zaprF', 'start'
  730. end
  731. if $ARGS[0] = 'punish':
  732. ! once again punishType uses the same logic as carwashscene for dynamic choices
  733. punishType = rand(1, 100)
  734. if punishType <= min(max(50,slut_compare),75) and punishType >= 50:
  735. gt 'zaprFWash', 'punishAnal'
  736. elseif punishType <= min(max(75,slut_compare),100) and punishType >= 75:
  737. gt 'zaprFWash', 'punishPussyQ'
  738. else
  739. gt 'zaprFWash', 'punishSpank'
  740. end
  741. end
  742. if $ARGS[0] = 'punishSpank':
  743. pcs_horny = 0
  744. pcs_mood -= 10
  745. inhib_exp += rand(2,4)
  746. pain['asscheeks'] += 5
  747. gs 'stat'
  748. '<center><video autoplay loop src="images/locations/shared/carwash/sex/punishspank.mp4"></video></center>'
  749. 'The angry man drags you to a more secluded area, bends you over and starts to spank your ass very hard.'
  750. 'After twenty minutes of ruthless punishment, you can finally crawl away with your burning ass.'
  751. gs 'arousal', 'foreplay', 15, 'sub', 'rough', 'unknown'
  752. gs 'arousal', 'end'
  753. gs 'stat'
  754. ! SM it was too hard to get abducted so remove old check against strength/agility, now only checks against slut reputation
  755. ! minimum chance of 1% maximum chance of 90% to be abducted
  756. abductionChance = min(max(1,slut_compare),180)/2
  757. if abductionChance >= rand(1,100):
  758. 'But your perpetrator isn''t done with you.'
  759. 'He catches you again, drags you to his car and pushes you into the trunk...'
  760. 'You have a feeling this probably will not go well for you...'
  761. act 'Cry for help':gt 'abduction', 'start'
  762. else
  763. 'Your perpetrator stands up and just watches as you crawl away in pain.'
  764. 'He turns around and calmly walks away, leaving you alone.'
  765. act 'Escape':gt 'zaprF', 'start'
  766. end
  767. end
  768. if $ARGS[0] = 'punishAnal':
  769. pcs_horny = 0
  770. pcs_mood -= 20
  771. pain['asshole'] += 6
  772. inhib_exp += rand(5,10)
  773. gs 'cum_call', 'anus'
  774. gs 'stat'
  775. i = rand(1, 3)
  776. '<center><video autoplay loop src="images/locations/shared/carwash/sex/punishanal<<i>>.mp4"></video></center>'
  777. 'The angry man drags you to a more secluded area, bends you over, and sticks a finger in your ass.'
  778. 'Your anus fully exposed, he starts fucking it ruthlessly.'
  779. 'After half an hour of rough assfucking he releases his grip on you so you can finally crawl away; your aching ass sore from the brutal penetration.'
  780. gs 'arousal', 'anal', 30, 'sub', 'rough', 'rape', 'unknown'
  781. gs 'arousal', 'end'
  782. gs 'stat'
  783. abductionChance = min(max(1,slut_compare),180)/2
  784. if abductionChance >= rand(1,100):
  785. 'But your perpetrator isn''t done with you.'
  786. 'He catches you again, drags you to his car and pushes you into the trunk...'
  787. 'You have a feeling this probably will not go well for you...'
  788. act 'Cry for help':gt 'abduction', 'start'
  789. else
  790. 'Your perpetrator stands up and just watches as you crawl away in pain.'
  791. 'He turns around and calmly walks away, leaving you alone.'
  792. act 'Escape':gt 'zaprF', 'start'
  793. end
  794. end
  795. if $ARGS[0] = 'punishPussyQ':
  796. 'The angry man drags you to a more secluded area. He bends you over and starts to rub your pussy.'
  797. if pcs_vag = 0:
  798. 'Suddenly he remarks: "What? You''re a virgin? Such slutty tease and still a virgin?'
  799. penetrate = rand (1, 100)
  800. if penetrate <= min(max(50,slut_compare),75) and penetrate >= 50:
  801. 'I''ll spare your virginity but you''ll get fucked anyway. Sluts have more than one hole for a reason, right?'
  802. act 'Endure':gt 'zaprFWash', 'punishAnal'
  803. elseif penetrate <= min(max(75,slut_compare),100) and penetrate >= 75:
  804. 'This makes it even better! I''ll enjoy your tears even more! I haven''t had a virgin in forever!'
  805. act 'Endure':gt 'zaprFWash', 'punishPussy', 'virgin'
  806. else
  807. 'Someone should have done this a long time ago, but I''ll spare you penetration this time!'
  808. act 'Endure':gt 'zaprFWash', 'punishSpank'
  809. end
  810. else
  811. 'Let''s try what you''ve been teasing, you ungrateful whore!'
  812. act 'Endure':gt 'zaprFWash', 'punishPussy', 'normal'
  813. end
  814. end
  815. ! $ARGS[1] = whether you were a virgin before this or not
  816. if $ARGS[0] = 'punishPussy':
  817. pcs_horny = 0
  818. pain['vaginal'] += 4
  819. inhib_exp += rand(5,10)
  820. gs 'cum_call', ''
  821. gs 'stat'
  822. '<center><video autoplay loop src="images/locations/shared/carwash/sex/punishpussy' + rand(1,5) + '.mp4"></video></center>'
  823. if $ARGS[1] = 'virgin':
  824. 'Your pussy fully exposed, he slowly inserts his cock inside of you. He pushes right up against your hymen, savoring the moment. Suddenly, you feel your hymen break and know your virginity is gone forever. What will your friends and family think of you now if they find out?'
  825. pcs_mood -= 40
  826. elseif $ARGS[1] = 'normal':
  827. 'Your pussy fully exposed, he starts fucking it ruthlessly.'
  828. pcs_mood -= 20
  829. end
  830. 'After half an hour of destroying your cunt he releases his grip on you so you can finally crawl away; your aching pussy sore from the brutal penetration.'
  831. gs 'arousal', 'vaginal', 30, 'sub', 'rough', 'rape', 'unknown'
  832. gs 'arousal', 'end'
  833. gs 'stat'
  834. abductionChance = min(max(1,slut_compare),180)/2
  835. if abductionChance >= rand(1,100):
  836. 'But your perpetrator isn''t done with you.'
  837. 'He catches you again, drags you to his car and pushes you into the trunk...'
  838. 'You have a feeling this probably will not go well for you...'
  839. act 'Cry for help':gt 'abduction', 'start'
  840. else
  841. 'Your perpetrator stands up and just watches as you crawl away in pain.'
  842. 'He turns around and calmly walks away, leaving you alone.'
  843. act 'Escape':gt 'zaprF', 'start'
  844. end
  845. end
  846. --- zaprFWash ---------------------------------