zaprFWash.qsrc 43 KB

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