1
0

zaprFWash.qsrc 41 KB

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