abductionCustomer.qsrc 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  1. # abductionCustomer
  2. if $ARGS[0] = 'abdCustomerGate':
  3. menu_off = 1
  4. 'Master: "Hello, slave slut."'
  5. '"I have a customer here, who came to rent you for a while. Do whatever he asks of you."'
  6. buyout = 0
  7. act 'Yes, Master.':gt 'abductionCustomer', 'abdCustomerGo'
  8. end
  9. if $ARGS[0] = 'abdCustomerGateBuyout':
  10. menu_off = 1
  11. 'Master: "Hello, slave slut."'
  12. '"I have a customer here, who came to rent you for a while. Do whatever he asks of you."'
  13. buyout = 1
  14. act 'Yes, Master.':gt 'abductionCustomer', 'abdCustomerGo'
  15. end
  16. if $ARGS[0] = 'abdCustomerGo':
  17. menu_off = 1
  18. minut += 5
  19. gs 'stat'
  20. i = rand(1, 3)
  21. '<center><video autoplay loop src="images/locations/shared/abduction/sex/ledonfour<<i>>.mp4"></video></center>'
  22. 'Your master removes your regular chains and puts you on a leash.'
  23. 'You are being led up the stairs into the house above your cellar.'
  24. 'When you came into the hall, your master ordered you on your knees: "Kneel slave, and continue on your four legs, like a bitch you are."'
  25. if pcs_vag = 0:
  26. 'You are led to a different room where the customer awaits. Your leash is handed to him.'
  27. else
  28. 'You are led to a different room where the customer awaits. Your leash is handed to him and your master leaves, closing the door behind him.'
  29. end
  30. act 'Continue':gt 'abductionCustomer', 'abdCustomer'
  31. end
  32. if $ARGS[0] = 'abdCustomer':
  33. minut += 5
  34. gs 'stat'
  35. ! customer character type
  36. ! -1=kind, 3-4=normal, 5+=sadistic
  37. charTypeRand = 3
  38. ! customer body type
  39. ! -1=skinny, 3-4=regular, 5-6=muscular, 7+=fat
  40. bodyTypeRand = 3
  41. ! customer height type
  42. ! -1=small, 3-4=regular, 5+=tall
  43. heightTypeRand = 3
  44. ! customer age
  45. customerAge = rand(15, 90)
  46. ! customer race, racial modifiers
  47. raceRand = rand(1, 3)
  48. if RaceRand = 1:
  49. $raceType = 'white'
  50. dickChance = 30
  51. charTypeRand += rand(-3, 2)
  52. bodyTypeRand += rand(-2, 8)
  53. heightTypeRand += rand(-1, 6)
  54. elseif RaceRand = 2:
  55. $raceType = 'black'
  56. dickChance = 40
  57. charTypeRand += rand(0, 2)
  58. bodyTypeRand += rand(0, 6)
  59. heightTypeRand += rand(0, 6)
  60. elseif RaceRand = 3:
  61. $raceType = 'asian'
  62. dickChance = 20
  63. charTypeRand += rand(-2, 2)
  64. bodyTypeRand += rand(-6, 2)
  65. heightTypeRand += rand(-4, 1)
  66. end
  67. if pcs_vag = 0:
  68. dick = 28
  69. elseif buyout = 1:
  70. dick = 24
  71. else
  72. dickRand = rand(1, 100)
  73. if dickRand <= dickChance:
  74. dick = rand(15, 40)
  75. elseif dickRand <= (dickChance * 2):
  76. dick = rand(10, 24)
  77. else
  78. dick = rand(5, 14)
  79. end
  80. end
  81. vagDMG = (dick - pcs_vag) * 2
  82. assDMG = (dick - pcs_ass) * 2
  83. throatDMG = (dick - pcs_throat) * 2
  84. ! customer dick size
  85. if dick >= 30:
  86. $dick_girth = 'monstrous'
  87. cumVol = rand(4, 5)
  88. elseif dick >= 25:
  89. $dick_girth = 'huge'
  90. cumVol += 1
  91. cumVol = rand(3, 5)
  92. elseif dick >= 20:
  93. $dick_girth = 'very big'
  94. cumVol = rand(2, 5)
  95. elseif dick >= 15:
  96. $dick_girth = 'big'
  97. cumVol = rand(2, 4)
  98. elseif dick >= 10:
  99. $dick_girth = 'regular'
  100. cumVol -= 1
  101. cumVol = rand(1, 4)
  102. else
  103. $dick_girth = 'tiny'
  104. cumVol -= 2
  105. cumVol = rand(1, 3)
  106. end
  107. ! customer cum volume
  108. if cumVol <= 1:
  109. $cumType = 'neglectable'
  110. elseif cumVol = 2:
  111. $cumType = 'little'
  112. elseif cumVol = 3:
  113. $cumType = 'normal'
  114. elseif cumVol = 4:
  115. $cumType = 'significant'
  116. elseif cumVol >= 5:
  117. $cumType = 'horse like'
  118. end
  119. if charTypeRand <= 1:
  120. $charType = 'kind'
  121. elseif charTypeRand >= 2 and charTypeRand <= 4:
  122. $charType = 'neutral'
  123. elseif charTypeRand >= 5:
  124. $charType = 'sadistic'
  125. elseif charTypeRand < 999 and buyout = 1:
  126. $charType = 'sadistic'
  127. end
  128. if bodyTypeRand <= 1:
  129. $bodyType = 'skinny'
  130. elseif bodyTypeRand >= 2 and bodyTypeRand <= 4:
  131. $bodyType = 'slim'
  132. elseif bodyTypeRand >= 5 and bodyTypeRand <= 6:
  133. $bodyType = 'muscular'
  134. elseif bodyTypeRand >= 7:
  135. $bodyType = 'fat'
  136. end
  137. if heightTypeRand <= 1:
  138. $heightType = 'small'
  139. elseif heightTypeRand >= 2 and heightTypeRand <= 4:
  140. $heightType = 'average'
  141. elseif heightTypeRand >= 5:
  142. $heightType = 'tall'
  143. end
  144. if customerAge <= 18:
  145. $ageType = 'very young'
  146. elseif customerAge > 18 and customerAge <= 30:
  147. $ageType = 'young'
  148. elseif customerAge > 30 and customerAge <= 45:
  149. $ageType = 'middle aged'
  150. elseif customerAge > 45 and customerAge <= 60:
  151. $ageType = 'elderly'
  152. elseif customerAge > 60 and customerAge <= 80:
  153. $ageType = 'old'
  154. elseif customerAge > 80:
  155. $ageType = 'very old'
  156. end
  157. if buyout = 1:
  158. $bName = 'Leonid'
  159. $bSurname = 'Nosov'
  160. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel1.jpg"></center>'
  161. 'As you are led to the room as usual, you see the man standing opposite to you.'
  162. 'Right away you can see that he is just another bastard coming here to use your <<age>> years young body.'
  163. 'Your master leaves you in center of the room, still kneeling with the leash attached to your collar.'
  164. 'As the door closes behind him, the customer slowly turns and you can finally see his face.'
  165. act 'Look to his face':gt 'abductionCustomer', 'abdCustomer-buyout1'
  166. else
  167. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  168. 'The customer is a <<$heightType>> <<$bodyType>> <<$raceType>>.'
  169. 'Kneeling in front of him, you look up into his eyes and see a <<$charType>> look in his eyes.'
  170. 'You look back down and see his crotch directly in front of you. It''s obvious that he has something <<$dick_girth>> in his pants.'
  171. end
  172. if pcs_vag = 0:
  173. 'Your master tells the customer: "So this is her. You can make sure she''s a virgin, her hymen is intact."'
  174. '"I believe you, she''s not the first virgin slut that you delivered me, is she?"'
  175. '"No, she definitely is not! How many has it been so far, four, five?"'
  176. '"In your establishment, I have paid for six virgins in total. This one is the seventh.'
  177. if age < 17:
  178. '"Good number. Good slut, too. She''s <<age>> years old only, I suppose her vagina will be especially tight."'
  179. '"That''s how I like it."'
  180. else
  181. '"Good number. Good slut, too."'
  182. '"We will see."'
  183. end
  184. act 'Sob and wait':gt 'abductionCustomer', 'abdCustomer-virgin1'
  185. else
  186. if buyout = 0:
  187. 'He is clearly expecting you to start doing something. You decide to:'
  188. act 'Show him your assets':gt 'abductionCustomer', 'abdCustomer-show'
  189. act 'Unzip his pants':gt 'abductionCustomer', 'abdCustomer-unzip'
  190. end
  191. end
  192. end
  193. if $ARGS[0] = 'abdCustomer-buyout1':
  194. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/leonid/leonid.jpg"></center>'
  195. 'As you look up at his face a chill runs down your back - you know him!'
  196. 'You remember this man from one of the parent-school conferences, it''s Dimka''s dad, <<$bName>>..'
  197. 'And obviously he recognizes you too: "Oh... what the... who do we have here? Isn''t this the known missing person, <<$pcs_firstname>> <<$pcs_lastname>>?'
  198. 'With trembling voice only few words leave your mouth: "Th...that''s me mister <<$bSurname>>.."'
  199. '"The police has already given up searching for you, you know. As if they made any effort, though..."'
  200. '"I-I don''t even know how long I''ve been here. The only thing I remember is being a plaything for these perverts..."'
  201. 'After these words there is a short period of silence. You just keep kneeling like you are trained to, straightening your back with your breasts jutting forward so to give your customers something nice to look at.'
  202. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel2.jpg"></center>'
  203. 'Then suddenly the look on <<$bName>>''s face changes from surprised to something else.'
  204. 'He comes up to you and gently caresses your face: "Plaything, you say? And do you like it?"'
  205. 'Surprised by such a question you wait with your answer:'
  206. if sub > 95:
  207. act 'Admit you like to be dominated, but this is too much':gt 'abductionCustomer', 'abdCustomer-buyout2'
  208. end
  209. act 'Say you hate it':gt 'abductionCustomer', 'abdCustomer-buyout3'
  210. end
  211. if $ARGS[0] = 'abdCustomer-buyout2':
  212. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  213. '"What a nice submissive slut you have become. What would your mother say about this?"'
  214. '"I rather you wouldn''t let her know how I ended up."'
  215. '"This establishment really gets the job done. I must commend the owner."'
  216. 'With these words he leaves the room. You can hear an echo of a discussion between him and your master.'
  217. 'After a while <<$bName>> comes back: "Let''s go <<$pcs_firstname>>.". He grabs your leash and leads you outside the room and into the hallway.'
  218. '"B-but... where are you taking me? I have never been in this part of the house before."'
  219. '"You still don''t understand, slut? I own you now. I''ve bought you, I paid for you, you are my property. My slavegirl."'
  220. 'Surprised, you can only think; better be used by one man then by many random ones.'
  221. 'Still naked and collared, he leads you outside to his car and stuffs you into the trunk.'
  222. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  223. end
  224. if $ARGS[0] = 'abdCustomer-buyout3':
  225. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreleonid1.mp4"></video></center>'
  226. '"In that case let''s have some fun, before we go straight to business."'
  227. 'He slaps your face so hard you lose your balance and fall down on the floor.'
  228. 'You are taken by surprise by the blow - you had started to think that you were finally about to be saved from all of this.'
  229. 'But <<$bName>> seems to be as perverted as all the other men that have used you previously.'
  230. 'Stepping above you as you helplessly lay on the floor, he opens his zipper and pulls his dick out of his pants.'
  231. 'You can clearly see his <<dick>> cm long <<$dick_girth>> dick swing above you in the air.'
  232. act 'Suck on it':gt 'abductionCustomer', 'abdCustomer-suckTip'
  233. act 'Do nothing':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  234. end
  235. if $ARGS[0] = 'abdCustomer-buyout4':
  236. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid2.jpg"></center>'
  237. 'You are left lying on the floor, <<$bName>>''s cum still flowing out of your gaping ass.'
  238. 'He goes through the door and you can hear an echo of a discussion between him and the master.'
  239. 'In a few minutes <<$bName>> comes back: "I really like you <<$pcs_firstname>>."'
  240. 'He grabs your leash and leads you outside the room and into the hallway.'
  241. '"B-but... where are you taking me? I have never been in this part of the house."'
  242. '"You still don''t understand, slut? I own you now. I''ve bought you, I paid for you, you are my property. My slavegirl."'
  243. 'Surprised, you can only think; better be used by one man then by many random ones.'
  244. 'Still naked and collared, he leads you outside to his car and stuffs you into the trunk.'
  245. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  246. end
  247. if $ARGS[0] = 'abdCustomer-buyoutLeave':
  248. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/garage.jpg"></center>'
  249. 'Stuffed in the trunk you can hear the sound of the engine as he drives you somewhere unknown.'
  250. 'After about thirty minutes the car stops.'
  251. '<<$bName>> opens the trunk. You appear to be in an underground parking garage.'
  252. 'You climb out, still naked and collared like a bitch. It seems he doesn''t care about your feelings at all.'
  253. 'He takes your leash and leads you through a door upstairs into a room which looks like an office.'
  254. act 'Continue':gt 'leonid', 'firstTime'
  255. end
  256. if $ARGS[0] = 'abdCustomer-virgin1':
  257. minut += 10
  258. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin1.mp4"></video></center>'
  259. 'Your master leaves and you start to shiver.'
  260. '"Don''t worry slut, it will hurt only a lot!" the customer is clearly enjoying himself.'
  261. 'You run to the far corner of the room, a futile attempt to get as far away as you can from him.'
  262. 'He walks up and grabs you, dragging you to the center of the room, where a sort of bench stands.'
  263. 'You are bound to the bench, your legs spread as wide as they go, giving him ideal access to your naked virgin pussy.'
  264. 'Your head is bound so that you have an unobstructed view on your own pussy - probably to make sure you watch as he tears it apart.'
  265. gs 'stat'
  266. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin2'
  267. end
  268. if $ARGS[0] = 'abdCustomer-virgin2':
  269. minut += 2
  270. pcs_mood = 5
  271. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin2.mp4"></video></center>'
  272. 'He starts to undress, finishing off with his pants. As he pulls them down, you can finally can see his naked member fall out.'
  273. '"With renewed terror you start to cry, because the sight of his <<dick>> cm thick <<$dick_girth>> fallus is just terrifying."'
  274. gs 'stat'
  275. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin3'
  276. end
  277. if $ARGS[0] = 'abdCustomer-virgin3':
  278. minut += 10
  279. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin3.jpg"></center>'
  280. 'He starts jerking his member, looking at you - bound and helpless, slowly making his cock hard.'
  281. 'From his eyes you can see he relishes looking at you in your despair.'
  282. gs 'stat'
  283. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin4'
  284. end
  285. if $ARGS[0] = 'abdCustomer-virgin4':
  286. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin4.jpg"></center>'
  287. 'Finally he reaches to you, bringing the tip of his phallus in front of your pussy.'
  288. 'He covers his <<$dick_girth>> member in thick layer of lube and starts slowly pressing against the opening of your vagina.'
  289. 'With his hands he spreads your pussy lips, easing the entry for his member.'
  290. '"Now behold, girl. You are about to become a woman!"'
  291. 'He pushes it in with a single long trust, almost all the way inside your virgin pussy.'
  292. 'A terrible pain spreads throughout your lower body, a trickle of red blood running down the shaft of his cock.'
  293. pcs_vag += 1
  294. stat['vaginal'] += 1
  295. pain['vaginal'] += 20
  296. gs 'stat'
  297. gs 'arousal', 'vaginal', 5, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  298. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin5'
  299. end
  300. if $ARGS[0] = 'abdCustomer-virgin5':
  301. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin5.mp4"></video></center>'
  302. 'He leaves his cock inside you, enjoying your facial expressions and the sight of blood coating his cock.'
  303. 'For a while he removes it, renewing the pain and enjoying himself again.'
  304. 'Being content with his accomplishment, he enters your pussy again and this time fucks you brutally, often hitting your cervix with his <<dick>> cm long thick <<$dick_girth>> dick.'
  305. pain['vaginal'] += 10
  306. pain['cervix'] += 10
  307. pain['tummy'] += 10
  308. gs 'stat'
  309. gs 'arousal', 'vaginal', 30, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  310. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin6'
  311. end
  312. if $ARGS[0] = 'abdCustomer-virgin6':
  313. minut += 5
  314. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin6.mp4"></video></center>'
  315. '"And now whore, you will receive your first cum, as the breeder you were always supposed to be and that you are about to become."'
  316. 'With new tears streaming down your cheeks, he spurts his <<$cumType>> amount of sperm <<dick>> cm deep inside your belly."'
  317. gs 'cum_call', 'pussy', 'deflowering pervert'
  318. gs 'stat'
  319. act 'Cry more':gt 'abductionCustomer', 'abdCustomer-virgin7'
  320. end
  321. if $ARGS[0] = 'abdCustomer-virgin7':
  322. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin7.jpg"></center>'
  323. 'He rests with his dick deep inside you for a while, again enjoying the sight of your sobbing and despair.'
  324. '"As his <<$dick_girth>> member becomes flaccid, he grabs a dildo that looks almost exactly like his own dick, probably having been modeled after it."'
  325. '"The gift I just gave you, my cum, it is not meant to just drip out of you. You will receive another gift, that will keep it inside you."'
  326. 'With these words he lifts your ass in the air so the cum does not flow out and pushes the dildo shaped after his <<dick>> cm <<$dick_girth>> cock all the way inside you and then a little bit further - the dildo is pushed so deep into you that only its brightly coloured end is peeking out of your sorry hole.'
  327. 'When it''s in, he takes a duck tape and wraps it over your pussy, covering your lips and keeping the dildo firmly stuck inside.'
  328. 'He unties you from the bench, but tightens your hands behind your back, probably to keep you from removing the shaft.'
  329. '"Now run, slut, and enjoy my gifts even more!" he leaves laughing.'
  330. pain['vaginal'] += 10
  331. pain['cervix'] += 10
  332. pain['belly'] += 20
  333. gs 'stat'
  334. gs 'arousal', 'vaginal_dildo', 10, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  335. act 'Struggle to remove the dildo':gt 'abductionCustomer', 'abdCustomer-virgin8'
  336. end
  337. if $ARGS[0] = 'abdCustomer-virgin8':
  338. minut += 10
  339. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin8.jpg"></center>'
  340. 'Your master comes and finds you struggling on the ground, trying to shake the <<$dick_girth>> dildo out of you.'
  341. '"Stop it, girl. You are just making it worse."'
  342. 'He grabs your leash and leads you back down to your cell.'
  343. 'As you follow the master by the leash, the plugged <<$dick_girth>> dildo moves inside you, causing you unpleasant sensations and pain.'
  344. 'Finally you are back at your bed.'
  345. gs 'stat'
  346. act 'Lie down':gt 'abductionCustomer', 'abdCustomer-virgin9'
  347. end
  348. if $ARGS[0] = 'abdCustomer-virgin9':
  349. minut += 480
  350. pcs_sleep += 70
  351. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin9.jpg"></center>'
  352. 'Still having your hands bound you are put on your bed, tied to the wall on a short leash.'
  353. 'Your master leaves and you are left lying on the bed, still having your vagina plugged with this <<dick>> cm long <<$dick_girth>> dildo.'
  354. gs 'stat'
  355. act 'Try to rest':gt 'abductionCustomer', 'abdCustomer-virgin10'
  356. end
  357. if $ARGS[0] = 'abdCustomer-virgin10':
  358. minut += 15
  359. pcs_mood = 5
  360. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin10.mp4"></video></center>'
  361. 'A sound of the master coming from upstairs wakes you up.'
  362. 'You must have fallen asleep from the exhaustion.'
  363. *nl
  364. 'Kneel and stick your ass high in the air, slut.'
  365. 'You are so desperate that you don''t even think about not doing what he orders you to do.'
  366. 'You just stick your ass as high as possible, pointing it so he has good access to both your ass and your ruthlessly plugged deflowered pussy.'
  367. 'Your master kneels down, removes the duct tape with one pull and puts his fingers inside you, grabbing the stuck dildo.'
  368. 'Slowly he takes it out, remnants of your virgin blood and the customer''s sperm smeared all over it.'
  369. 'Your empty vagina giving you a rush of relief.'
  370. 'Your master unties you, adjusts your leash and as he leaves he tells you: "Be glad that you can be deflowered only once, silly girl."'
  371. gs 'stat'
  372. act 'Continue':gt 'abduction', 'abdRoom'
  373. end
  374. if $ARGS[0] = 'abdCustomer-unzip':
  375. minut += 2
  376. gs 'stat'
  377. 'You reach towards his crotch and slowly start to unzip his trousers.'
  378. 'Pressing your face underneath his crotch, you pull down his shorts and a <<$dick_girth>> member falls out, landing directly on your face with a slapping sound.'
  379. if dick > 15 and dick < 25:
  380. *nl
  381. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip1.mp4"></video></center>'
  382. 'You stare at his <<$dick_girth>> cock with respect.'
  383. elseif dick >= 25:
  384. *nl
  385. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip2.mp4"></video></center>'
  386. 'You stare at his <<$dick_girth>> cock with horror, imagining what terrible things this sizeable penis will do to your tender body.'
  387. elseif dick < 15 and pcs_throat > dick:
  388. *nl
  389. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip3.mp4"></video></center>'
  390. 'With relief you look at his <<$dick_girth>> cock thinking that it''s nothing you can''t handle.'
  391. end
  392. if pcs_throat < dick:
  393. 'It''s obvious that his <<$dick_girth>> dick is above your skill and you know you wouldn''t be able to swallow it whole.'
  394. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  395. act 'Force yourself on his cock':gt 'abductionCustomer', 'abdCustomer-suckForceself'
  396. else
  397. 'Even though his dick is <<$dick_girth>>, you know you''d be able to take it all the way to the balls.'
  398. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  399. act 'Deepthroat':gt 'abductionCustomer', 'abdCustomer-suckDeep'
  400. end
  401. end
  402. if $ARGS[0] = 'abdCustomer-show':
  403. minut += 10
  404. i = rand(1, 5)
  405. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoretease<<i>>.mp4"></video></center>'
  406. 'You decide to tease the customer by showing him your sexy assets by jiggling your girly parts.'
  407. 'After some time behaving like a slut, it is obvious that he wants something more.'
  408. act 'Continue':gt 'abductionCustomer', 'abdCustomer-unzip'
  409. end
  410. if $ARGS[0] = 'abdCustomer-suckTip':
  411. gs 'stat'
  412. i = rand(1, 5)
  413. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobtip<<i>>.mp4"></video></center>'
  414. 'You try as best as you can to suck the head of his <<dick>> cm sized <<$dick_girth>> dick.'
  415. if pcs_throat < dick:
  416. 'It is obvious that his <<$dick_girth>> dick is above your skill and you know you wouldn''t be able to swallow it whole.'
  417. else
  418. 'Even though his dick is <<$dick_girth>>, you know you''d be able to take it all the way to the balls.'
  419. end
  420. if $charType = 'sadistic':
  421. if buyout = 1:
  422. '<<$bName>> is starting to get very grumpy, obviously he''s not happy that all you can do is suck the tip of his cock.'
  423. else
  424. 'The customer is starting to get very grumpy, obviously he''s not happy that all you can do is suck the tip of his cock.'
  425. end
  426. 'In one moment, without any warning, he takes a step back, pulling his <<$dick_girth>> member out of your mouth.'
  427. 'With an angry face he slaps your face very hard, knocking you down to the cold floor.'
  428. 'He jumps on top of you with a piece of rope and ties you up.'
  429. '"Even here must one train the slaves yourself!" he shouts at you, forcing his <<$dick_girth>> dick all the way down your throat.'
  430. 'With tied up hands you are unable to resist and all you can do is struggle to avoid suffocating as best you can...'
  431. act 'Endure':gt 'abductionCustomer', 'abdCustomer-suckForced'
  432. elseif $charType = 'neutral':
  433. 'The customer seems displeased by your performance. You are starting to worry about what he''ll do if you don''t satisfy him well enough...'
  434. forceChance = rand(1, 100)
  435. if forceChance <= 70:
  436. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-suckForced'
  437. else
  438. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  439. end
  440. if pcs_throat < dick:
  441. act 'Force yourself on his cock':gt 'abductionCustomer', 'abdCustomer-suckForceself'
  442. else
  443. act 'Deepthroat':gt 'abductionCustomer', 'abdCustomer-suckDeep'
  444. end
  445. elseif $charType = 'kind':
  446. 'The customer seems pleased by your sucking skills, so you continue to tease the tip of his <<$dick_girth>> cock, looking at him with as much sensual abandon that you can muster under the present conditions.'
  447. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  448. end
  449. gs 'arousal', 'bj', 15, 'sub'
  450. end
  451. if $ARGS[0] = 'abdCustomer-suckForceself':
  452. pcs_throat += 1
  453. pain['throat'] += throatDMG
  454. gs 'stat'
  455. i = rand(1, 3)
  456. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobselfforced<<i>>.mp4"></video></center>'
  457. 'Knowing you will probably hurt yourself, you force yourself on his <<dick>> cm long cock all the way down to the balls anyway.'
  458. 'You start gagging and saliva is everywhere, but the customer seems more content now.'
  459. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat'
  460. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  461. end
  462. if $ARGS[0] = 'abdCustomer-suckForced':
  463. pain['throat'] += throatDMG * 2
  464. pcs_throat += 2
  465. gs 'stat'
  466. endPunishment = 1
  467. i = rand(1, 6)
  468. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobforced<<i>>.mp4"></video></center>'
  469. if buyout = 1:
  470. '<<$bName>> starts growling and suddenly pulls his cock out of your mouth.'
  471. else
  472. 'The customer starts growling and suddenly pulls his cock out of your mouth.'
  473. end
  474. '"What kind of slave are you when you cannot swallow my <<$dick_girth>> dick?"'
  475. 'He ties you up and forces his cock down your throat, showing you little to no concern.'
  476. 'You start to gag as he keeps pushing his member deep inside you, sometimes leaving you on the brink of passing out.'
  477. vagOrAss = rand (1, 2)
  478. if buyout = 1:
  479. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  480. else
  481. if vagOrAss = 1:
  482. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  483. elseif vagOrAss = 2:
  484. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  485. end
  486. end
  487. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat', 'humiliation'
  488. end
  489. if $ARGS[0] = 'abdCustomer-suckDeep':
  490. pcs_throat += 1
  491. gs 'stat'
  492. i = rand(1, 6)
  493. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjob<<i>>.mp4"></video></center>'
  494. 'You swallow his <<$dick_girth>> cock all the way down to the balls.'
  495. gs 'arousal', 'bj', 15, 'sub', 'deepthroat'
  496. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  497. end
  498. if $ARGS[0] = 'abdCustomer-fuck':
  499. minut += 2
  500. pcs_throat += 1
  501. gs 'stat'
  502. endPunishment = 0
  503. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorecockremoved.jpg"></center>'
  504. 'It seems the customer is done with fucking your mouth as he removes his dick and steps back a bit, looking at you with a <<$charType>> appetite in his eyes.'
  505. if charType = 'sadistic':
  506. '"What should I do to you next, bitch?"'
  507. else
  508. 'So how do you want it next, luv?'
  509. end
  510. 'You are not entirely sure if he means that as a question or if he''s just saying that to himself.'
  511. if $charType = 'sadistic':
  512. *nl
  513. 'You want to answer him, but the moment you open your mouth to talk, he slaps your face very hard, knocking you down on the cold floor.'
  514. '"You thought I''m really interested in your slutty opinion?" he says laughing.'
  515. '"A whore, and on top of that a slave whore, has no right to have an opinion."'
  516. 'You are unable to do anything except whimper like a small child. He ties you up and you know that it''s going to get even worse now.'
  517. vagOrAss = rand (1, 2)
  518. if vagOrAss = 1:
  519. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  520. elseif vagOrAss = 2:
  521. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  522. end
  523. else
  524. 'You decide to:'
  525. act 'Be quiet':gt 'abductionCustomer', 'abdCustomer-decide'
  526. act 'Beg him to be kind':gt 'abductionCustomer', 'abdCustomer-beg'
  527. end
  528. end
  529. if $ARGS[0] = 'abdCustomer-decide':
  530. minut += 2
  531. gs 'stat'
  532. sexRand = rand(1, 2)
  533. vagOrAss = rand (1, 2)
  534. if vagOrAss = 1:
  535. if $charType = 'sadistic':
  536. '"I will fuck your cunt raw, bitch.'
  537. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  538. else
  539. '"Let''s take your tender pussy!" he decides.'
  540. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  541. end
  542. elseif vagOrAss = 2:
  543. if $charType = 'sadistic':
  544. '"I will fuck you deep in your ass, bitch.'
  545. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  546. else
  547. '"I want to see how tight your ass is." he says.'
  548. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  549. end
  550. end
  551. end
  552. if $ARGS[0] = 'abdCustomer-beg':
  553. vagOrAss = rand (1, 2)
  554. minut += 2
  555. gs 'stat'
  556. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorebeg1.jpg"></center>'
  557. 'Please be kind to me Sir, I''m so afraid and sore... please!'
  558. if dick >= 15:
  559. '"I''m very afraid of your <<$dick_girth>> penis Sir!"'
  560. end
  561. *nl
  562. bekindChance = rand(1, 100)
  563. endPunishment = 0
  564. if $charType = 'neutral' or $charType = 'kind':
  565. 'Alright girl, you''re lucky that I feel generous today.'
  566. if vagOrAss = 1:
  567. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  568. elseif vagOrAss = 2:
  569. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  570. end
  571. else
  572. endPunishment = 1
  573. 'A slave has no right to ask what will happen to it!'
  574. hardChance = rand(1, 100)
  575. if hardChance <= 50:
  576. '"I will fuck you however I want, so shut up, bitch!"'
  577. if vagOrAss = 1:
  578. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  579. elseif vagOrAss = 2:
  580. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  581. end
  582. else
  583. '"I will fuck you however way I want, so shut up."'
  584. if vagOrAss = 1:
  585. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  586. elseif vagOrAss = 2:
  587. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  588. end
  589. end
  590. end
  591. end
  592. if $ARGS[0] = 'abdCustomer-fuckAnal':
  593. pcs_ass += 1
  594. gs 'stat'
  595. i = rand(1, 5)
  596. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanal<<i>>.mp4"></video></center>'
  597. 'The customer puts some lubricant on his <<$dick_girth>> cock and penetrates your ass.'
  598. 'He doesn''t care much about your feelings but he''s also not exactly hurting you on purpose.'
  599. *nl
  600. if dick > pcs_ass:
  601. pain['asshole'] += assDMG
  602. pain['tummy'] += assDMG
  603. gs 'arousal', 'anal', 30, 'sub', 'rough'
  604. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  605. else
  606. 'You have no problems accommodating his <<$dick_girth>> member.'
  607. gs 'arousal', 'anal', 30, 'sub'
  608. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  609. end
  610. end
  611. if $ARGS[0] = 'abdCustomer-fuckAnalRough':
  612. pcs_ass += 2
  613. gs 'stat'
  614. i = rand(1, 5)
  615. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanalrough<<i>>.mp4"></video></center>'
  616. if buyout = 1:
  617. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid1.jpg"></center>'
  618. '<<$bName>> takes you by your leash and positions your body as if it''s just meat to be used.'
  619. else
  620. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  621. end
  622. 'What comes next is an excruciatingly rough anal fuck that clearly shows he has no regard for all the pain you have to endure, whatsoever.'
  623. *nl
  624. if assDMG <= 0 :
  625. 'Fortunately his <<$dick_girth>> dick is not enough to damage your anus and intestines, not more than usual, anyway.'
  626. if buyout = 1:
  627. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  628. else
  629. if $charType = 'sadistic':
  630. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  631. else
  632. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  633. end
  634. end
  635. elseif assDMG <= 2:
  636. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as his dick bumps against your intestinal walls.'
  637. pain['asshole'] += assDMG
  638. gs 'stat'
  639. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  640. else
  641. 'His <<$dick_girth>> dick is insanely big for you.'
  642. 'The tip of his cock repeatedly hits your intestinal walls and stretches your anus to insane proportions.'
  643. 'You will probably not be able to close your anus for a while.'
  644. pain['asshole'] += assDMG
  645. pain['tummy'] += assDMG
  646. gs 'stat'
  647. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  648. end
  649. gs 'arousal', 'anal', 30, 'sub', 'rough', 'bound'
  650. end
  651. if $ARGS[0] = 'abdCustomer-fuckAnalDeep':
  652. minut += 15
  653. pcs_ass += 1
  654. gs 'stat'
  655. i = rand(1, 1)
  656. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanaldeep<<i>>.mp4"></video></center>'
  657. 'His member is <<$dick_girth>> and your ass is unable to accommodate it.'
  658. if $charType = 'sadistic':
  659. *nl
  660. 'But he doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  661. '"How do like my <<$dick_girth>> cock inside you, bitch?"'
  662. '"Is it deep enough for you, or should I push a bit more?"'
  663. 'Obviously he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  664. *nl
  665. end
  666. 'With every stroke of his dick deep inside your intestines, you feel as if it''s your very stomach being poked by it.'
  667. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  668. *nl
  669. if buyout = 1:
  670. 'After about an half hour of deep anal banging, <<$bName>> is about to cum.'
  671. else
  672. 'After about an half hour of deep anal banging, the man is about to cum.'
  673. end
  674. if (endPunishment = 1 or $charType = 'sadistic') and buyout = 0:
  675. '"Now, I will feed you my seed, you unruly anal slave."'
  676. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  677. elseif buyout = 1:
  678. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  679. else
  680. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  681. end
  682. end
  683. if $ARGS[0] = 'abdCustomer-fuckNormal':
  684. pcs_vag += 1
  685. gs 'stat'
  686. i = rand(1, 5)
  687. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefucknormal<<i>>.mp4"></video></center>'
  688. 'The customer penetrates your pussy and fucks you.'
  689. if vagDMG <= 0:
  690. 'He''s not gentle, but it is not a very rough fuck either.'
  691. 'You have no problems accommodating his <<$dick_girth>> dick.'
  692. 'At some moments, you almost seem to enjoy it.'
  693. gs 'arousal', 'vaginal', 30, 'sub'
  694. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  695. elseif vagDMG <= 2:
  696. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as his dick bumps against your vaginal walls.'
  697. pain['vaginal'] += vagDMG
  698. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  699. gs 'stat'
  700. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  701. else
  702. 'His <<$dick_girth>> dick is insanely big for you.'
  703. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you - the pain almost unbearable!'
  704. pain['vaginal'] += vagDMG
  705. pain['cervix'] += vagDMG
  706. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  707. gs 'stat'
  708. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  709. end
  710. end
  711. if $ARGS[0] = 'abdCustomer-fuckRough':
  712. pcs_vag += 2
  713. gs 'stat'
  714. i = rand(1, 5)
  715. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckrough<<i>>.mp4"></video></center>'
  716. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  717. 'What comes next is an excruciatingly rough fuck that clearly shows he has no regard for all the pain you have to endure, whatsoever.'
  718. if vagDMG <= 0:
  719. 'Fortunately his <<$dick_girth>> dick is not enough to damage your vagina, not more than usual, anyway.'
  720. gs 'arousal', 'vaginal', 30, 'sub', 'bound'
  721. if $charType = 'sadistic':
  722. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  723. else
  724. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  725. end
  726. elseif vagDMG <= 2:
  727. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as his dick bumps against your vaginal walls.'
  728. pain['vaginal'] += vagDMG
  729. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  730. gs 'stat'
  731. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  732. else
  733. 'His <<$dick_girth>> dick is insanely big for you.'
  734. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you - the pain almost unbearable!'
  735. 'He seems to notice it too and realizes why you''re groaning so loudly.'
  736. 'Enjoying your suffering, he pushes his dick even deeper inside and you squeal like pig being slaughtered.'
  737. pain['vaginal'] += vagDMG * 2
  738. pain['cervix'] += vagDMG * 2
  739. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  740. gs 'stat'
  741. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  742. end
  743. end
  744. if $ARGS[0] = 'abdCustomer-fuckDeep':
  745. minut += 15
  746. pcs_ass += 1
  747. gs 'stat'
  748. i = rand(1, 5)
  749. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckdeep<<i>>.mp4"></video></center>'
  750. 'His member is <<$dick_girth>> and your vagina is unable to accommodate it.'
  751. if $charType = 'sadistic':
  752. *nl
  753. 'But he doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  754. '"How do like my <<$dick_girth>> cock inside you, bitch?"'
  755. '"Is it deep enough for you, or should I push a bit more?"'
  756. '"Do you feel me entering your cervix?"'
  757. 'Obviously he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  758. *nl
  759. end
  760. 'With every stroke of his dick deep inside your vagina, you feel as if it''s your very cervix being penetrated.'
  761. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  762. *nl
  763. 'After about an half hour of deep vaginal banging, the man is about to cum.'
  764. if endPunishment = 1 or $charType = 'sadistic':
  765. '"Now, I will feed you my seed, unruly fuck slave."'
  766. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  767. else
  768. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  769. end
  770. end
  771. if $ARGS[0] = 'abdCustomer-cumGate':
  772. if endPunishment = 1:
  773. '"Now, I will feed you my seed, unruly slave slut."'
  774. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  775. elseif buyout = 1:
  776. '"Now <<$pcs_firstname>> you will be filled with my seed for the first time, so be sure to cherish the memory of this moment!"'
  777. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  778. else
  779. '"So where do you want me to put the deposit, luv?"'
  780. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  781. act 'Ask him to cum inside your pussy':gt 'abductionCustomer', 'abdCustomer-cumPussy'
  782. act 'Ask him to cum inside your ass':gt 'abductionCustomer', 'abdCustomer-cumAss'
  783. act 'Ask him to cum into your mouth':gt 'abductionCustomer', 'abdCustomer-cumMouth'
  784. act 'Ask him to cum on your face':gt 'abductionCustomer', 'abdCustomer-cumFace'
  785. end
  786. end
  787. if $ARGS[0] = 'abdCustomer-cum':
  788. cumRand = rand(1, 100)
  789. if cumRand > 75 and cumRand <= 100:
  790. 'He decides to cum inside your vagina.'
  791. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumPussy'
  792. elseif cumRand > 50 and cumRand <= 75:
  793. 'He decides to cum inside your ass.'
  794. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumAss'
  795. elseif cumRand > 25 and cumRand <= 50:
  796. 'He decides to cum into your mouth.'
  797. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumMouth'
  798. elseif cumRand >= 0:
  799. 'He decides to cum on your face.'
  800. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumFace'
  801. end
  802. end
  803. if $ARGS[0] = 'abdCustomer-cumPussy':
  804. i = rand(1, 5)
  805. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumpussy<<i>>.mp4"></video></center>'
  806. if vagDMG > 0:
  807. 'As he delivers his <<$cumType>> amount of cum inside your vagina, you can feel the tip of his <<$dick_girth>> cock at your cervix and even a bit inside it.'
  808. 'His bursting cum penetrates through the cervix directly into your womb, causing you both pain and a weird warm sensation.'
  809. pain['cervix'] += vagDMG
  810. gs 'stat'
  811. end
  812. *nl
  813. if cumVol = 3:
  814. 'With his <<$dick_girth>> dick buried inside your pussy, the customer delivers his <<$cumType>> amount of sperm inside you.'
  815. 'When he takes it out, some of the sperm drips out of you.'
  816. elseif cumVol = 4:
  817. 'With his <<$dick_girth>> dick buried deep inside your pussy, his tip touches your cervix.'
  818. 'He pumps your vagina full of his <<$cumType>> amount of sperm.'
  819. 'As he pulls his cock out, a large portion of the cum forcefully squirts out of you.'
  820. elseif cumVol >= 5:
  821. 'With his <<$dick_girth>> dick buried very deep inside your pussy, his tip pushes against your cervix and even slides inside of it a bit.'
  822. 'Then, as he shoots his <<$cumType>> amount of cum inside you, lot of it goes directly to your womb.'
  823. 'It feels painful but the warm sensation is weird and nothing like what you have felt before.'
  824. 'You feel as if your inner parts are stretching from the <<$cumType>> amount of cum being pumped into you.'
  825. *nl
  826. 'When he pulls his <<$dick_girth>> cock out, a bulge is noticeable on the lower part of your belly.'
  827. 'The customer looks at it with joy and punches at the bulge with his fist.'
  828. 'The cum burst out of your pussy as if it shot out from a uncorked champagne bottle.'
  829. pain['cervix'] += 20
  830. pain['tummy'] += 40
  831. else
  832. 'The customer cums inside you. When he takes his <<$dick_girth>> cock out, a small part of his <<$cumType>> amount of sperm drips out of you.'
  833. end
  834. pcs_vag += 1
  835. stat['vaginal'] += 1
  836. gs 'cum_call', 'pussy', 'customer', svol,'', spot
  837. gs 'stat'
  838. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  839. end
  840. if $ARGS[0] = 'abdCustomer-cumAss':
  841. i = rand(1, 5)
  842. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumass<<i>>.mp4"></video></center>'
  843. if assDMG > 0:
  844. 'As he cums inside your anus, you can feel the banging of his <<$dick_girth>> cock against your intestinal wall.'
  845. 'A moving bulge is visible on your otherwise flat stomach as the phallus moves inside you.'
  846. 'His bursting cum fills you and it seems as if it went backwards up to your very stomach.'
  847. pain['asshole'] += assDMG
  848. gs 'stat'
  849. end
  850. if cumVol = 3:
  851. 'His <<$dick_girth>> member is buried in your intestines.'
  852. if buyout = 1:
  853. 'When <<$bName>> shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  854. else
  855. 'When he shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  856. end
  857. 'After his dick is removed, part of the sperm drips out of your gaping hole.'
  858. elseif cumVol = 4:
  859. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, sometimes even hitting your intestinal walls.'
  860. if buyout = 1:
  861. 'When <<$bName>> shoots his <<$cumType>> amount of cum inside you, you can feel your stomach growing larger...'
  862. else
  863. 'When he shoots his <<$cumType>> amount of cum inside you, you can feel your stomach growing larger...'
  864. end
  865. 'You feel very full, even after he pull his <<$dick_girth>> dick out of you.'
  866. 'After a few seconds a large portion of his <<$cumType>> amount of cum spurts out of you as if from a garden hose.'
  867. elseif cumVol >= 5:
  868. if buyout = 1:
  869. '<<$bName>> <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, with each stroke hitting your intestinal walls forcefully.'
  870. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep in your intestines, with each stroke hitting your intestinal walls forcefully.'
  871. *nl
  872. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines with <<$cumType>> amount of cum.'
  873. else
  874. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep in your intestines, with each stroke hitting your intestinal walls forcefully.'
  875. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines with <<$cumType>> amount of cum.'
  876. *nl
  877. 'When he pulls his <<$dick_girth>> cock out, a bulge is noticeable on the lower part of your belly.'
  878. 'The customer looks at it with joy and punches at the bulge with his fist.'
  879. 'The cum burst out of your pussy as if it shot out from a uncorked champagne bottle.'
  880. end
  881. pain['tummy'] += 20
  882. gs 'stat'
  883. else
  884. if buyout = 1:
  885. '<<$bName>> cums inside you. When he takes his <<$dick_girth>> cock out, a small part of his <<$cumType>> amount of sperm leaks out of your gaping anus.'
  886. else
  887. 'The customer cums inside you. When he takes his <<$dick_girth>> cock out, a small part of his <<$cumType>> amount of sperm leaks out of your gaping anus.'
  888. end
  889. end
  890. if buyout = 1:
  891. gs 'npcgeneratec', 0, $bName, rand(18,34)
  892. gs 'boyStat', $npclastgenerated
  893. else
  894. gs 'npcgeneratec', 0, 'customer', rand(18,34)
  895. gs 'boyStat', $npclastgenerated
  896. end
  897. pcs_ass += 1
  898. gs 'cum_call', 'anus', $boy
  899. stat['anal'] += 1
  900. gs 'stat'
  901. if buyout = 1:
  902. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyout4'
  903. else
  904. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  905. end
  906. end
  907. if $ARGS[0] = 'abdCustomer-cumMouth':
  908. i = rand(1, 5)
  909. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecummouth<<i>>.mp4"></video></center>'
  910. if throatDMG > 0:
  911. 'Your aching throat is penetrated again.'
  912. 'He buries his <<$dick_girth>> cock to the hilt inside you.'
  913. 'While he''s cumming directly down your gullet, you can feel the pulsing of his member, painfully stretching your already sore throat.'
  914. pain['throat'] += throatDMG
  915. gs 'stat'
  916. end
  917. if cumVol = 3:
  918. 'His <<$cumType>> amount of cum fills your gullet.'
  919. elseif cumVol = 4:
  920. 'His <<$cumType>> amount of cum fills your gullet and drips down into your stomach.'
  921. 'You feel as if you just ate a bunch of biscuits.'
  922. pcs_energy += 50
  923. pcs_hydra += 40
  924. elseif cumVol => 5:
  925. 'You are being pumped like a water bag. His <<$cumType>> amount of jizz fills your stomach and gullet.'
  926. 'Today you probably won''t need another meal..'
  927. pcs_energy += 100
  928. pcs_hydra += 90
  929. else
  930. 'The customer shoots his <<$cumType>> amount of cum inside your mouth and down your gullet.'
  931. end
  932. mouth += 1
  933. gs 'cum_call', 'mouth', 'customer'
  934. stat['throat'] += 1
  935. gs 'stat'
  936. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  937. end
  938. if $ARGS[0] = 'abdCustomer-cumFace':
  939. i = rand(1, 5)
  940. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumface<<i>>.mp4"></video></center>'
  941. 'He takes his <<$dick_girth>> dick and points it towards your face.'
  942. if cumVol = 3:
  943. 'A <<$cumType>> amount of sperm lands all over your face.'
  944. elseif cumVol = 4:
  945. 'A <<$cumType>> amount of sperm lands all over your face, some even in your eyes and hair.'
  946. elseif cumVol => 5:
  947. 'A <<$cumType>> amount of sperm lands all over your face, in your eyes, hair, everywhere.'
  948. 'There is so much cum that you have a solid layer on your face, as if you were wearing a cosmetic mask.'
  949. else
  950. 'A <<$cumType>> cum volume is spread around your mouth and cheeks.'
  951. end
  952. 'The customer seems content with his creation and looks at you with a weird satisfaction.'
  953. mouth += 1
  954. gs 'cum_call', 'face', 'customer'
  955. stat['mouth'] += 1
  956. gs 'stat'
  957. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  958. end
  959. if $ARGS[0] = 'abdCustomer-end':
  960. if endPunishment = 1:
  961. 'The customer goes to the bathroom and your master soon returns to you.'
  962. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  963. elseif buyout = 1:
  964. '<<$bName>> leaves you lying on the ground, his cum still dripping out of your ass.'
  965. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  966. else
  967. 'The customer goes to the bathroom and you are immediately lead back to the basement.'
  968. act 'Go back':gt 'abduction', 'abdRoom'
  969. end
  970. end
  971. if $ARGS[0] = 'abdCustomer-endPunishment':
  972. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/kneelingslave1.jpg"></center>'
  973. 'After the customer is done with you, he calls for your master.'
  974. 'He tells your master how unruly you were and that further training should be applied to you.'
  975. 'Then he leaves.'
  976. 'Kneeling you look up at your master, only to see a grim face. You can tell something bad will happen.'
  977. act 'Be led back to the basement':gt 'abduction', 'abdFailedCustomer'
  978. end
  979. --- abductionCustomer ---------------------------------