zaprFWash.tw 42 KB

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