abductionCustomer.qsrc 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  1. # abductionCustomer
  2. if $ARGS[0] = 'abdCustomerGate':
  3. menu_off = 1
  4. 'Your master approaches you. "Hello, slave."'
  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. 'Your master approaches you. "Hello, slave."'
  12. '"I have a customer here that 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 chain and attaches a leash to your collar.'
  23. 'You are led up the stairs into the house above your cellar.'
  24. 'When you enter the hall, your master orders you on your knees. "Crawl on your hands and legs like the bitch you are!"'
  25. if pcs_vag = 0:
  26. 'You are led to the room where your customer awaits. Your leash is handed to him.'
  27. else
  28. 'You are led to the room where your customer awaits. Your leash is handed to him, and your master leaves. The room''s only door closes behind him, leaving you alone with your customer.'
  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(0, 2)
  48. if RaceRand = 0:
  49. $raceType = 'white'
  50. dickChance = 30
  51. charTypeRand += rand(-3,2)
  52. bodyTypeRand += rand(-2,8)
  53. heightTypeRand += rand(-1,6)
  54. elseif RaceRand = 1:
  55. $raceType = 'black'
  56. dickChance = 40
  57. charTypeRand += rand(0,2)
  58. bodyTypeRand += rand(0,6)
  59. heightTypeRand += rand(0,6)
  60. elseif RaceRand = 2:
  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. end
  126. if bodyTypeRand <= 1:
  127. $bodyType = 'skinny'
  128. elseif bodyTypeRand >= 2 and bodyTypeRand <= 4:
  129. $bodyType = 'slim'
  130. elseif bodyTypeRand >= 5 and bodyTypeRand <= 6:
  131. $bodyType = 'muscular'
  132. elseif bodyTypeRand >= 7:
  133. $bodyType = 'fat'
  134. end
  135. if heightTypeRand <= 1:
  136. $heightType = 'small'
  137. elseif heightTypeRand >= 2 and heightTypeRand <= 4:
  138. $heightType = 'average'
  139. elseif heightTypeRand >= 5:
  140. $heightType = 'tall'
  141. end
  142. if customerAge <= 18:
  143. $ageType = 'very young'
  144. elseif customerAge > 18 and customerAge <= 30:
  145. $ageType = 'young'
  146. elseif customerAge > 30 and customerAge <= 45:
  147. $ageType = 'middle aged'
  148. elseif customerAge > 45 and customerAge <= 60:
  149. $ageType = 'elderly'
  150. elseif customerAge > 60 and customerAge <= 80:
  151. $ageType = 'old'
  152. elseif customerAge > 80:
  153. $ageType = 'very old'
  154. end
  155. if buyout = 1:
  156. $bName = 'Leonid'
  157. $bSurname = 'Nosov'
  158. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel1.jpg"></center>'
  159. 'As you are led to the room as usual, you see the man standing opposite of you.'
  160. 'Right away, you can see that he is just another bastard coming here to use your body.'
  161. 'Your master leaves you in the center of the room, kneeling with the leash attached to your collar.'
  162. 'As the door closes behind him, the customer slowly turns so you can finally see his face.'
  163. act 'Look at his face':gt 'abductionCustomer', 'abdCustomer-buyout1'
  164. else
  165. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  166. 'The customer is a <<$heightType>> <<$bodyType>> <<$raceType>>.'
  167. 'Kneeling in front of him, you look up and see the <<$charType>> look in his eyes.'
  168. 'You then look down and see his crotch directly in front of you. It''s obvious that he has something <<$dick_girth>> in his pants.'
  169. end
  170. if pcs_vag = 0:
  171. 'Your master speaks to the customer. "So this is her. You can be sure she''s a virgin as her hymen is intact."'
  172. '"I believe you. She''s not the first virgin slut that you''ve delivered to me, is she?"'
  173. '"No, she definitely is not! How many has it been so far? Four, five?"'
  174. '"In your establishment, I have paid for six virgins in total. This one is the seventh.'
  175. if age < 17:
  176. '"Good number. Good slut, too. She''s only <<age>> years old, so her pussy will be especially tight."'
  177. '"That''s how I like it."'
  178. else
  179. '"Good number. She''s a good slut, too."'
  180. '"We shall see."'
  181. end
  182. act 'Sob and wait':gt 'abductionCustomer', 'abdCustomer-virgin1'
  183. else
  184. if buyout = 0:
  185. 'He is clearly expecting you to start pleasuring him. You decide to:'
  186. act 'Show him your body':gt 'abductionCustomer', 'abdCustomer-show'
  187. act 'Unzip his pants':gt 'abductionCustomer', 'abdCustomer-unzip'
  188. end
  189. end
  190. end
  191. !! Scene is too long and has two images playing at the same time. Can this be split into smaller chunks please?
  192. if $ARGS[0] = 'abdCustomer-buyout1':
  193. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/leonid/leonid.jpg"></center>'
  194. 'As you look up at his face, a chill runs down your spine - you know him!'
  195. 'You remember this man from one of the parent-school conferences. It''s Dimka''s dad, <<$bName>>!'
  196. 'He recognizes you too. "Oh... what the? Who do we have here? Aren''t you that missing girl, <<$pcs_firstname>> <<$pcs_lastname>>?'
  197. *nl
  198. 'With a trembling voice, only a few words leave your mouth. "Th... that''s me mister <<$bSurname>>..."'
  199. '"You do realize that the police have already given up searching for you. 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. 'There is a short period of silence, but despite the unexpected situation, you keep kneeling with your back straight and breasts jutting forward, as you have been trained to do.'
  202. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel2.jpg"></center>'
  203. 'The look on <<$bName>>''s face then changes from surprised to something else.'
  204. 'He approaches you and gently caresses your face. "Plaything, you say? And do you like it?"'
  205. 'Surprised by such a question, you consider how to reply:'
  206. gs 'willpower', 'misc', 'self', 'hard'
  207. if will_cost <= pcs_willpwr:
  208. act 'Admit you like to be dominated, but this is too much (<<will_cost>> Willpower)':
  209. gs 'willpower', 'misc', 'self', 'hard'
  210. gs 'willpower', 'pay', 'self'
  211. gs 'stat'
  212. gt 'abductionCustomer', 'abdCustomer-buyout2'
  213. end
  214. else
  215. act 'Admit you like to be dominated, but this is too much (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  216. end
  217. act 'Say you hate it':gt 'abductionCustomer', 'abdCustomer-buyout3'
  218. end
  219. if $ARGS[0] = 'abdCustomer-buyout2':
  220. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  221. '"What a nice submissive slut you have become. What would your mother say about this?"'
  222. '"I''d rather you didn''t let her know how I ended up..." you meekly reply.'
  223. '"This establishment really gets the job done. I must commend the owner."'
  224. *nl
  225. 'He leaves the room and you can hear the echo of a discussion between him and your master.'
  226. 'After a while, <<$bName>> returns. "Let''s go <<$pcs_firstname>>." He grabs your leash and leads you outside the room into the hallway.'
  227. '"B-but... where are you taking me? I''ve never been in this part of the house before."'
  228. '"You still don''t understand, do you slut? I own you now. I''ve just bought you and you are now my property. You are... my slave."'
  229. 'You''re still naked and collared as he leads you outside to his car. You are forced to get into the trunk.'
  230. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  231. end
  232. if $ARGS[0] = 'abdCustomer-buyout3':
  233. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreleonid1.mp4"></video></center>'
  234. '"In that case, let''s have some fun before we get straight to business."'
  235. 'He slaps your face so hard that you lose your balance and fall face first onto the floor.'
  236. 'You are taken by surprise by the blow - you thought you were finally about to be saved from all of this.'
  237. 'However, <<$bName>> seems to be as perverted as all the other men that have used you previously.'
  238. 'Stepping above you as you helplessly lie on the floor, he opens his zipper to pull out his dick.'
  239. 'You can clearly see his <<dick>> cm long <<$dick_girth>> dick swing above you in the air.'
  240. act 'Suck on it':gt 'abductionCustomer', 'abdCustomer-suckTip'
  241. gs 'willpower', 'bj', 'resist'
  242. if will_cost <= pcs_willpwr:
  243. act 'Do nothing (<<will_cost>> Willpower)':
  244. gs 'willpower', 'bj', 'resist'
  245. gs 'willpower', 'pay', 'resist'
  246. gs 'stat'
  247. gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  248. end
  249. else
  250. act 'Do nothing (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  251. end
  252. end
  253. if $ARGS[0] = 'abdCustomer-buyout4':
  254. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid2.jpg"></center>'
  255. 'You are left lying on the floor with <<$bName>>''s cum still flowing out of your gaping asshole.'
  256. 'You can hear the echo of his and your master''s voices discussing something you can''t make out.'
  257. 'A few minutes later, <<$bName>> comes back into the room. "I really like you <<$pcs_firstname>>."'
  258. *nl
  259. 'He grabs your leash and leads you outside the room into the hallway.'
  260. '"B-but... where are you taking me? I''ve never been in this part of the house before."'
  261. '"You still don''t understand, do you slut? I own you now. I''ve just bought you and you are now my property. You are... my slave."'
  262. 'You''re still naked and collared as he leads you outside to his car. You are forced to get into the trunk.'
  263. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  264. end
  265. if $ARGS[0] = 'abdCustomer-buyoutLeave':
  266. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/garage.jpg"></center>'
  267. 'Stuffed inside the trunk, you can only hear the sound of the engine and the pavement below as he drives you somewhere unknown.'
  268. 'After an unknown amount of time, the engine shuts off, leaving only silence.'
  269. '<<$bName>> opens the trunk. Your eyes blink to adjust to the dimly lit area, and you realize that you''re in an underground parking garage.'
  270. 'You climb out, still naked and collared like a dog. It seems he doesn''t care about your feelings at all.'
  271. 'He takes your leash and leads you on all fours up the stairs. You exit through the stairwell door into a room that appears to be an office.'
  272. act 'Continue':gt 'leonid', 'firstTime'
  273. end
  274. if $ARGS[0] = 'abdCustomer-virgin1':
  275. minut += 10
  276. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin1.mp4"></video></center>'
  277. 'Your master leaves, and your body starts to shiver.'
  278. '"Don''t worry slut. This will only hurt a lot!" the customer laughs. He is clearly enjoying himself.'
  279. 'You quickly back up into the far corner of the room in a futile attempt to get as far away from him as you can.'
  280. 'He walks up to you and grabs you by the hair. He drags you as a pained, terrified scream emits from your throat to something that looks like a bench in the center of the room.'
  281. 'He forcefully yanks your hair to make you climb onto the bench like structure. He punches you in the stomach, and you collapse. He then flips you over onto your back and binds your arms above your head with handcuffs. He follows with putting your legs into stirrups, with legcuffs to hold you in place. You realize that this gives him unlimited access to your virgin pussy.'
  282. 'Your head is bound so that you have an unobstructed view on your own pussy. This is to ensure that you watch as he tears you apart.'
  283. gs 'stat'
  284. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin2'
  285. end
  286. if $ARGS[0] = 'abdCustomer-virgin2':
  287. minut += 2
  288. pcs_mood = 5
  289. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin2.mp4"></video></center>'
  290. 'He starts to slowly undress, his back turned to you to enhance your terror. You hear a loud clink as his pants, holding a belt, hit the concrete floor. He slowly turns around to face you, and you can finally see his naked body. His cock sways for a moment before stopping in front of your face.'
  291. '"With renewed terror, you start to cry at the sight of his <<dick>> cm thick <<$dick_girth>> cock."'
  292. gs 'stat'
  293. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin3'
  294. end
  295. if $ARGS[0] = 'abdCustomer-virgin3':
  296. minut += 10
  297. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin3.jpg"></center>'
  298. 'He starts to jerk his cock while looking at your eyes, then to your bound and helpless nude body. The sight slowly makes his cock hard.'
  299. 'You can tell he relishes looking at you in your despair.'
  300. gs 'stat'
  301. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin4'
  302. end
  303. if $ARGS[0] = 'abdCustomer-virgin4':
  304. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin4.jpg"></center>'
  305. 'He finally reaches for you and brings the tip of his dick to the entrance of your virgin pussy.'
  306. 'He covers his <<$dick_girth>> member in a thick layer of lube and starts to slowly press against the opening of your pussy.'
  307. 'With his hands, he spreads your pussy lips apart to help ease the entry for his member.'
  308. '"Now behold girl. You are about to become a woman!" he exclaims.'
  309. 'He pushes it in with a single long thrust that almost hits the bottom of your virgin cunt.'
  310. 'Pain rips through your body, spreading like a fire as a trickle of blood runs down the shaft of his cock.'
  311. pcs_vag += 1
  312. stat['vaginal'] += 1
  313. pain['vaginal'] += 20
  314. gs 'stat'
  315. gs 'arousal', 'vaginal', 5, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  316. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin5'
  317. end
  318. if $ARGS[0] = 'abdCustomer-virgin5':
  319. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin5.mp4"></video></center>'
  320. 'He pulls his cock back out and shows it to you, enjoying the expression you make seeing your blood coating it.'
  321. 'He then slams his cock back into you. The pain you feel is renewed while he grunts in pleasure.'
  322. 'He feels accomplishment in his handiwork and sneers at you as he brutally thrusts into your pussy over and over again. He often hits your cervix with his <<dick>> cm long thick <<$dick_girth>> dick.'
  323. pain['vaginal'] += 10
  324. pain['cervix'] += 10
  325. pain['tummy'] += 10
  326. gs 'stat'
  327. gs 'arousal', 'vaginal', 30, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  328. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin6'
  329. end
  330. if $ARGS[0] = 'abdCustomer-virgin6':
  331. minut += 5
  332. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin6.mp4"></video></center>'
  333. '"And now you will receive your first load of cum, whore. You will become the breeder you were always supposed to be!"'
  334. 'As renewed tears stream down your cheeks, he spurts his <<$cumType>> amount of sperm <<dick>> cm deep inside your pussy. You can feel it hit your cervix, and you shudder at the thought of getting pregnant from this monster.'
  335. cumnostd = 1
  336. gs 'cum_call', 'pussy', 'deflowering pervert'
  337. gs 'stat'
  338. act 'Cry more':gt 'abductionCustomer', 'abdCustomer-virgin7'
  339. end
  340. if $ARGS[0] = 'abdCustomer-virgin7':
  341. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin7.jpg"></center>'
  342. 'He rests with his dick deep inside you for a while. He is enjoying the sight of your cries and the despair of your situation.'
  343. '"As his <<$dick_girth>> member becomes flaccid, it slides free of your abused pussy. He reaches out of sight and brings into view a dildo that looks almost exactly like his own dick. You think that it has probably been modeled from it."'
  344. '"The cum that I just gave you is not meant to just drip out of you. You will receive another gift from me, one that will keep my present inside you."'
  345. *nl
  346. 'He proceeds to lift your ass in the air so the cum doesn''t flow out, then brutally shoves the dildo all the way inside you. The dildo is pushed so deep into you that only its brightly coloured base peeks out of your abused hole.'
  347. 'He then takes some pieces of duct tape and wraps them over your pussy to cover your lips and keep the dildo firmly stuck inside.'
  348. 'He uncuffs you from the bench, but pulls your arms behind your back. This is probably to keep you from removing his ''gift''.'
  349. '"Now run along and enjoy my gifts even more, slut!" he laughs before leaving.'
  350. pain['vaginal'] += 10
  351. pain['cervix'] += 10
  352. pain['belly'] += 20
  353. gs 'stat'
  354. gs 'arousal', 'vaginal_dildo', 10, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  355. act 'Struggle to remove the dildo':gt 'abductionCustomer', 'abdCustomer-virgin8'
  356. end
  357. if $ARGS[0] = 'abdCustomer-virgin8':
  358. minut += 10
  359. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin8.jpg"></center>'
  360. 'Your master comes in and finds you struggling on the ground. You are trying to shake the <<$dick_girth>> dildo out of you.'
  361. '"Stop it girl. You''ll just make it worse."'
  362. 'He grabs your leash and leads you back down to your cell.'
  363. 'As you follow your master, the plugged <<$dick_girth>> dildo moves inside you, causing you further unpleasant sensations and pain.'
  364. 'Finally, you are back at your bed.'
  365. gs 'stat'
  366. act 'Lie down':gt 'abductionCustomer', 'abdCustomer-virgin9'
  367. end
  368. if $ARGS[0] = 'abdCustomer-virgin9':
  369. gs 'sleep_simple', 'forced', 480
  370. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin9.jpg"></center>'
  371. 'Your hands still bound, you are thrown on your bed and are once again chained to the wall.'
  372. 'Your master leaves and you are left lying on the bed, your pussy still plugged by the <<dick>> cm long <<$dick_girth>> dildo.'
  373. act 'Try to rest':gt 'abductionCustomer', 'abdCustomer-virgin10'
  374. end
  375. if $ARGS[0] = 'abdCustomer-virgin10':
  376. minut += 15
  377. pcs_mood = 5
  378. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin10.mp4"></video></center>'
  379. 'The sound of your master coming downstairs wakes you up. You must have fallen asleep from the exhaustion.'
  380. '"Kneel and get that ass in the air, slut."'
  381. *nl
  382. 'You''re so desperate that you don''t even think about not doing what he orders you. You just stick your ass as high as possible.'
  383. 'It points so he has good access to both your ass and your ruthlessly plugged, deflowered pussy.'
  384. 'Your master kneels down to remove the duct tape with a single pull. You yelp in pain from the tiny pubic hairs that get ripped out with the tape. He puts his fingers inside you to grab the stuck dildo.'
  385. *nl
  386. 'He slowly removes it. Remnants of your blood and the customer''s sperm are smeared all over it.'
  387. 'Your now empty pussy gives you a rush of relief as the cool air flows in to fill the void.'
  388. 'Your master unties you and adjusts your chain. As he leaves, he stops and grins at you. "Be glad that you can only be deflowered once, you silly girl."'
  389. gs 'stat'
  390. act 'Continue':gt 'abduction', 'abdRoom'
  391. end
  392. if $ARGS[0] = 'abdCustomer-unzip':
  393. minut += 2
  394. gs 'stat'
  395. 'You reach towards his crotch and slowly start to unzip his trousers.'
  396. 'Pressing your face underneath his crotch, you pull down his pants and a <<$dick_girth>> member falls out. It lands directly on your face with a loud slap.'
  397. if dick > 15 and dick < 25:
  398. *nl
  399. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip1.mp4"></video></center>'
  400. 'You admire his <<$dick_girth>> cock.'
  401. elseif dick >= 25:
  402. *nl
  403. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip2.mp4"></video></center>'
  404. 'You stare at his <<$dick_girth>> cock in horror. You imagine what terrible things it will do to your tender body.'
  405. elseif dick < 15 and pcs_throat > dick:
  406. *nl
  407. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip3.mp4"></video></center>'
  408. 'You look at his <<$dick_girth>> cock in relief, thinking that it''s nothing you can''t handle.'
  409. end
  410. if pcs_throat < dick:
  411. 'It''s obvious that his <<$dick_girth>> dick is above your skill level and you know you can''t safely swallow it whole.'
  412. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  413. gs 'willpower', 'bj', 'self'
  414. if will_cost <= pcs_willpwr:
  415. act 'Force yourself on his cock (<<will_cost>> Willpower)':
  416. gs 'willpower', 'bj', 'self'
  417. gs 'willpower', 'pay', 'self'
  418. gs 'stat'
  419. gt 'abductionCustomer', 'abdCustomer-suckForceself'
  420. end
  421. else
  422. act 'Force yourself on his cock (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  423. end
  424. else
  425. 'Even though his dick is <<$dick_girth>>, you know you could take it all the way to the base.'
  426. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  427. gs 'willpower', 'bj', 'self'
  428. if will_cost <= pcs_willpwr:
  429. act 'Deepthroat his cock (<<will_cost>> Willpower)':
  430. gs 'willpower', 'bj', 'self'
  431. gs 'willpower', 'pay', 'self'
  432. gs 'stat'
  433. gt 'abductionCustomer', 'abdCustomer-suckDeep'
  434. end
  435. else
  436. act 'Deepthroat his cock (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  437. end
  438. end
  439. end
  440. if $ARGS[0] = 'abdCustomer-show':
  441. minut += 10
  442. i = rand(1,5)
  443. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoretease<<i>>.mp4"></video></center>'
  444. 'You decide to tease the customer by jiggling and squeezing your breasts.'
  445. 'After a few minutes, it''s obvious that he wants something more.'
  446. act 'Continue':gt 'abductionCustomer', 'abdCustomer-unzip'
  447. end
  448. if $ARGS[0] = 'abdCustomer-suckTip':
  449. gs 'arousal', 'bj', 15, 'sub'
  450. gs 'stat'
  451. i = rand(1,5)
  452. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobtip<<i>>.mp4"></video></center>'
  453. 'You try your best to suck the head of his <<dick>> cm sized <<$dick_girth>> dick.'
  454. if pcs_throat < dick:
  455. 'It''s obvious that his <<$dick_girth>> dick is above your skill level and you know you can''t safely swallow it whole.'
  456. else
  457. 'Even though his dick is <<$dick_girth>>, you know you could take it all the way to the base.'
  458. end
  459. if $charType = 'sadistic':
  460. if buyout = 1:
  461. '<<$bName>> is starting to get annoyed. He''s obviously not happy that all you can do is suck the tip of his cock.'
  462. else
  463. 'Your customer is starting to get annoyed. He''s obviously not happy that all you can do is suck the tip of his cock.'
  464. end
  465. 'Suddenly, without any warning, he takes a step back, which pulls his <<$dick_girth>> member out of your mouth.'
  466. 'With an angry look in his eyes, he slaps your face very hard, which knocks you to the cold floor. He then jumps on top of you and ties you up with some rope.'
  467. '"Even here, one must train the slaves himself!" he shouts at you. He forces his <<$dick_girth>> dick all the way down your throat.'
  468. 'With your hands tied, you''re unable to resist. All you can do is struggle to avoid suffocating as best you can.'
  469. act 'Endure':gt 'abductionCustomer', 'abdCustomer-suckForced'
  470. elseif $charType = 'neutral':
  471. 'Your customer seems displeased by your performance. You''re starting to worry about what he''ll do if you don''t satisfy him well enough...'
  472. forceChance = rand(1, 100)
  473. if forceChance <= 70:
  474. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-suckForced'
  475. else
  476. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  477. end
  478. if pcs_throat < dick:
  479. gs 'willpower', 'bj', 'self'
  480. if will_cost <= pcs_willpwr:
  481. act 'Force yourself on his cock (<<will_cost>> Willpower)':
  482. gs 'willpower', 'bj', 'self'
  483. gs 'willpower', 'pay', 'self'
  484. gs 'stat'
  485. gt 'abductionCustomer', 'abdCustomer-suckForceself'
  486. end
  487. else
  488. act 'Force yourself on his cock (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  489. end
  490. else
  491. gs 'willpower', 'bj', 'self'
  492. if will_cost <= pcs_willpwr:
  493. act 'Deepthroat his cock (<<will_cost>> Willpower)':
  494. gs 'willpower', 'bj', 'self'
  495. gs 'willpower', 'pay', 'self'
  496. gs 'stat'
  497. gt 'abductionCustomer', 'abdCustomer-suckDeep'
  498. end
  499. else
  500. act 'Deepthroat his cock (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  501. end
  502. end
  503. elseif $charType = 'kind':
  504. 'Your customer seems pleased with your skill, so you continue to tease the tip of his <<$dick_girth>> cock. You look at him with as much sensual abandon as you can muster under the present conditions.'
  505. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  506. end
  507. end
  508. if $ARGS[0] = 'abdCustomer-suckForceself':
  509. pcs_throat += 1
  510. pain['throat'] += throatDMG
  511. gs 'stat'
  512. i = rand(1,3)
  513. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobselfforced<<i>>.mp4"></video></center>'
  514. 'Despite knowing you will probably hurt yourself, you force yourself on his <<dick>> cm long cock all the way down to the base.'
  515. 'You start gagging, and saliva freely flows from your stuffed mouth. Your customer seems more content now.'
  516. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat'
  517. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  518. end
  519. if $ARGS[0] = 'abdCustomer-suckForced':
  520. pain['throat'] += throatDMG * 2
  521. pcs_throat += 2
  522. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat', 'humiliation'
  523. gs 'stat'
  524. endPunishment = 1
  525. i = rand(1,6)
  526. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobforced<<i>>.mp4"></video></center>'
  527. if buyout = 1:
  528. '<<$bName>> growls and suddenly pulls his cock out of your mouth.'
  529. else
  530. 'Your customer growls and suddenly pulls his cock out of your mouth.'
  531. end
  532. '"What kind of slave are you when you can''t swallow my dick?"'
  533. 'He ties you up and forces his cock down your throat. He shows little to no concern for your wellbeing.'
  534. 'You start to gag as he keeps pushing his member deep inside you, leaving you on the brink of passing out.'
  535. vagOrAss = rand (0,1)
  536. if buyout = 1:
  537. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  538. else
  539. if vagOrAss = 0:
  540. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  541. else
  542. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  543. end
  544. end
  545. end
  546. if $ARGS[0] = 'abdCustomer-suckDeep':
  547. pcs_throat += 1
  548. gs 'arousal', 'bj', 15, 'sub', 'deepthroat'
  549. gs 'stat'
  550. i = rand(1,6)
  551. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjob<<i>>.mp4"></video></center>'
  552. 'You swallow his <<$dick_girth>> cock all the way down to his balls.'
  553. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  554. end
  555. if $ARGS[0] = 'abdCustomer-fuck':
  556. minut += 2
  557. pcs_throat += 1
  558. gs 'stat'
  559. endPunishment = 0
  560. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorecockremoved.jpg"></center>'
  561. 'It seems the customer is done with fucking your mouth as he removes his dick and steps back. He looks at you with a <<$charType>> appetite in his eyes.'
  562. if $charType = 'sadistic':
  563. '"What should I do to you next, bitch?"'
  564. else
  565. '"So how do you want it next, slut?"'
  566. end
  567. 'You''re not entirely sure if he means that as a rhetorical question or not.'
  568. if $charType = 'sadistic':
  569. *nl
  570. 'You want to answer him, but the moment you open your mouth to talk he slaps your face very hard. This knocks you to the cold floor and tears erupt from your eyes in response.'
  571. '"You thought I was actually interested in your opinion...<i>slave</i>?" he questions, laughing. "A bitch like you has no right to an opinion!"'
  572. 'You''re 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.'
  573. vagOrAss = rand (0,1)
  574. if vagOrAss = 0:
  575. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  576. else
  577. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  578. end
  579. else
  580. 'You decide to:'
  581. act 'Be quiet':gt 'abductionCustomer', 'abdCustomer-decide'
  582. gs 'willpower', 'sex', 'self'
  583. if will_cost <= pcs_willpwr:
  584. act 'Beg him to be kind (<<will_cost>> Willpower)':
  585. gs 'willpower', 'sex', 'self'
  586. gs 'willpower', 'pay', 'self'
  587. gs 'stat'
  588. gt 'abductionCustomer', 'abdCustomer-beg'
  589. end
  590. else
  591. act 'Beg him to be kind (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  592. end
  593. end
  594. end
  595. if $ARGS[0] = 'abdCustomer-decide':
  596. minut += 2
  597. gs 'stat'
  598. !!sexRand = rand(1, 2) I believe this isn''t used anywhere so I commented it out.
  599. vagOrAss = rand (0, 1)
  600. if vagOrAss = 1:
  601. if $charType = 'sadistic':
  602. '"I''ll fuck your cunt raw, bitch!"'
  603. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  604. else
  605. '"Let''s take your tender pussy!"'
  606. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  607. end
  608. else
  609. if $charType = 'sadistic':
  610. '"I''ll fuck you deep in your ass, bitch!"'
  611. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  612. else
  613. '"I want to see how tight your ass is."'
  614. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  615. end
  616. end
  617. end
  618. if $ARGS[0] = 'abdCustomer-beg':
  619. vagOrAss = rand (1, 2)
  620. minut += 2
  621. gs 'stat'
  622. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorebeg1.jpg"></center>'
  623. 'Please be gentle to me, sir! I''m so sore... Please!'
  624. if dick >= 15:'"I''m scared of your dick, sir!"'
  625. *nl
  626. bekindChance = rand(1, 100)
  627. endPunishment = 0
  628. if $charType = 'neutral' or $charType = 'kind':
  629. '"Alright girl, you''re lucky that I''m feeling generous today."'
  630. if vagOrAss = 1:
  631. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  632. elseif vagOrAss = 2:
  633. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  634. end
  635. else
  636. endPunishment = 1
  637. '"A slave has no right to ask what will happen to it!"'
  638. hardChance = rand(1, 100)
  639. '"I''ll fuck you however I want, so shut up bitch!"'
  640. if hardChance <= 50:
  641. if vagOrAss = 0:
  642. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  643. else
  644. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  645. end
  646. else
  647. if vagOrAss = 0:
  648. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  649. else
  650. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  651. end
  652. end
  653. end
  654. end
  655. if $ARGS[0] = 'abdCustomer-fuckAnal':
  656. pcs_ass += 1
  657. gs 'stat'
  658. i = rand(1,5)
  659. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanal<<i>>.mp4"></video></center>'
  660. 'The customer puts some lubricant on his <<$dick_girth>> cock and penetrates your ass.'
  661. 'He doesn''t care much about your feelings, but he''s also not exactly hurting you on purpose.'
  662. *nl
  663. if dick > pcs_ass:
  664. pain['asshole'] += assDMG
  665. pain['tummy'] += assDMG
  666. gs 'arousal', 'anal', 30, 'sub', 'rough'
  667. gs 'stat'
  668. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  669. else
  670. 'You have no problems accommodating his <<$dick_girth>> member.'
  671. gs 'arousal', 'anal', 30, 'sub'
  672. gs 'stat'
  673. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  674. end
  675. end
  676. if $ARGS[0] = 'abdCustomer-fuckAnalRough':
  677. pcs_ass += 2
  678. gs 'arousal', 'anal', 30, 'sub', 'rough', 'bound'
  679. gs 'stat'
  680. i = rand(1,5)
  681. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanalrough<<i>>.mp4"></video></center>'
  682. if buyout = 1:
  683. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid1.jpg"></center>'
  684. '<<$bName>> takes you by your leash and positions your body as if it''s just meat to be used.'
  685. else
  686. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  687. end
  688. 'What comes next is an excruciatingly rough ass fucking that clearly shows he has no regard for all the pain you have to endure.'
  689. *nl
  690. if assDMG <= 0 :
  691. 'Fortunately, his <<$dick_girth>> dick is not enough to cause you much pain. No more than usual, anyway.'
  692. if buyout = 1:
  693. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  694. else
  695. if $charType = 'sadistic':
  696. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  697. else
  698. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  699. end
  700. end
  701. elseif assDMG <= 2:
  702. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain as it slams against your intestinal walls.'
  703. pain['asshole'] += assDMG
  704. gs 'stat'
  705. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  706. else
  707. 'His <<$dick_girth>> dick is insanely big for you.'
  708. 'The tip of his cock repeatedly hits your intestinal walls and stretches your anus wide.'
  709. pain['asshole'] += assDMG
  710. pain['tummy'] += assDMG
  711. gs 'stat'
  712. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  713. end
  714. end
  715. if $ARGS[0] = 'abdCustomer-fuckAnalDeep':
  716. minut += 15
  717. pcs_ass += 1
  718. gs 'stat'
  719. i = rand(1, 1)
  720. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanaldeep<<i>>.mp4"></video></center>'
  721. 'His member is <<$dick_girth>> and your ass is unable to accommodate it.'
  722. if $charType = 'sadistic':
  723. *nl
  724. 'He doesn''t care, even though he''s obviously aware, and fucks you furiously hard.'
  725. '"How do like my <<$dick_girth>> cock inside you bitch? Is it deep enough for you, or should I push a bit more?"'
  726. 'He''s obviously enjoying this a lot.'
  727. *nl
  728. end
  729. 'With every thrust of his dick deep inside your intestines, you feel as if it''s your very stomach being poked by it.'
  730. *nl
  731. if buyout = 1:
  732. 'After about a half an hour of deep anal banging, <<$bName>> is about to cum.'
  733. else
  734. 'After about a half an hour of deep anal banging, the man is about to cum.'
  735. end
  736. if (endPunishment = 1 or $charType = 'sadistic') and buyout = 0:
  737. '"I''m going to feed you my cum now, you unruly anal slut!"'
  738. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  739. elseif buyout = 1:
  740. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  741. else
  742. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  743. end
  744. end
  745. if $ARGS[0] = 'abdCustomer-fuckNormal':
  746. pcs_vag += 1
  747. gs 'stat'
  748. i = rand(1,5)
  749. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefucknormal<<i>>.mp4"></video></center>'
  750. 'The customer penetrates your pussy and fucks you.'
  751. if vagDMG <= 0:
  752. 'He''s not gentle, but it isn''t very rough either.'
  753. 'You have no problems accommodating his <<$dick_girth>> dick. You almost seem to enjoy it.'
  754. gs 'arousal', 'vaginal', 30, 'sub'
  755. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  756. elseif vagDMG <= 2:
  757. 'His <<$dick_girth>> dick is too big for you, and you suffer a lot of stretching pain as it slams against your vaginal walls.'
  758. pain['vaginal'] += vagDMG
  759. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  760. gs 'stat'
  761. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  762. else
  763. 'His <<$dick_girth>> dick is insanely big for you.'
  764. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  765. pain['vaginal'] += vagDMG
  766. pain['cervix'] += vagDMG
  767. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  768. gs 'stat'
  769. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  770. end
  771. end
  772. if $ARGS[0] = 'abdCustomer-fuckRough':
  773. pcs_vag += 2
  774. gs 'stat'
  775. i = rand(1,5)
  776. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckrough<<i>>.mp4"></video></center>'
  777. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  778. 'What comes next is an excruciatingly rough fuck that clearly shows he has no regard for all the pain you have to endure.'
  779. if vagDMG <= 0:
  780. 'Fortunately, his <<$dick_girth>> dick is not enough to cause you much pain. No more than usual, anyway.'
  781. gs 'arousal', 'vaginal', 30, 'sub', 'bound'
  782. if $charType = 'sadistic':
  783. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  784. else
  785. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  786. end
  787. elseif vagDMG <= 2:
  788. 'His <<$dick_girth>> dick is too big for you, and you suffer a lot of stretching pain as it slams against your vaginal walls.'
  789. pain['vaginal'] += vagDMG
  790. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  791. gs 'stat'
  792. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  793. else
  794. 'His <<$dick_girth>> dick is insanely big for you.'
  795. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  796. 'He notices this too, realizing it''s why you''re groaning so loudly. Enjoying your suffering, he pushes his dick even deeper inside, and you squeal like a pig.'
  797. pain['vaginal'] += vagDMG * 2
  798. pain['cervix'] += vagDMG * 2
  799. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  800. gs 'stat'
  801. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  802. end
  803. end
  804. if $ARGS[0] = 'abdCustomer-fuckDeep':
  805. minut += 15
  806. pcs_ass += 1
  807. gs 'stat'
  808. i = rand(1, 5)
  809. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckdeep<<i>>.mp4"></video></center>'
  810. 'His member is <<$dick_girth>> and your vagina is unable to accommodate it.'
  811. if $charType = 'sadistic':
  812. *nl
  813. 'He doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  814. '"How do like my <<$dick_girth>> cock inside you bitch? Is it deep enough for you, or should I push a bit more? Do you feel me entering your cervix?"'
  815. 'He''s obviously enjoying this a lot.'
  816. *nl
  817. end
  818. 'With every thrust of his dick deep inside your vagina, you feel as if it''s your very cervix being penetrated.'
  819. 'After about half an hour of deep vaginal banging, the man is about to cum.'
  820. if endPunishment = 1 or $charType = 'sadistic':
  821. '"I''m going to feed you my cum now, you unruly fuck slave!"'
  822. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  823. else
  824. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  825. end
  826. end
  827. if $ARGS[0] = 'abdCustomer-cumGate':
  828. if endPunishment = 1:
  829. '"I''m going to feed you my cum now, you unruly slave!"'
  830. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  831. elseif buyout = 1:
  832. '"You''re going to be filled with my seed for the first time, so be sure to cherish the memory of this moment!"'
  833. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  834. else
  835. '"So where do you want it, bitch?"'
  836. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  837. act 'On your face':gt 'abductionCustomer', 'abdCustomer-cumFace'
  838. gs 'willpower', 'cum_inside', 'self'
  839. if will_cost <= pcs_willpwr:
  840. act 'Inside your pussy (<<will_cost>> Willpower)':
  841. gs 'willpower', 'cum_inside', 'self'
  842. gs 'willpower', 'pay', 'self'
  843. gs 'stat'
  844. gt 'abductionCustomer', 'abdCustomer-cumPussy'
  845. end
  846. else
  847. act 'Inside your pussy (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  848. end
  849. gs 'willpower', 'cum_inside_anal', 'self'
  850. if will_cost <= pcs_willpwr:
  851. act 'Inside your ass (<<will_cost>> Willpower)':
  852. gs 'willpower', 'cum_inside_anal', 'self'
  853. gs 'willpower', 'pay', 'self'
  854. gs 'stat'
  855. gt 'abductionCustomer', 'abdCustomer-cumAss'
  856. end
  857. else
  858. act 'Inside your ass (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  859. end
  860. gs 'willpower', 'swallow', 'self'
  861. if will_cost <= pcs_willpwr:
  862. act 'In your mouth (<<will_cost>> Willpower)':
  863. gs 'willpower', 'swallow', 'self'
  864. gs 'willpower', 'pay', 'self'
  865. gs 'stat'
  866. gt 'abductionCustomer', 'abdCustomer-cumMouth'
  867. end
  868. else
  869. act 'In your mouth (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  870. end
  871. end
  872. end
  873. if $ARGS[0] = 'abdCustomer-cum':
  874. cumRand = rand(1,100)
  875. if cumRand > 75 and cumRand <= 100:
  876. 'He decides to cum inside your pussy.'
  877. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumPussy'
  878. elseif cumRand > 50 and cumRand <= 75:
  879. 'He decides to cum inside your ass.'
  880. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumAss'
  881. elseif cumRand > 25 and cumRand <= 50:
  882. 'He decides to cum in your mouth.'
  883. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumMouth'
  884. else
  885. 'He decides to cum on your face.'
  886. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumFace'
  887. end
  888. end
  889. if $ARGS[0] = 'abdCustomer-cumPussy':
  890. i = rand(1,5)
  891. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumpussy<<i>>.mp4"></video></center>'
  892. if vagDMG > 0:
  893. 'As he pumps his cum into your vagina, you feel the tip of his <<$dick_girth>> cock at your cervix and even inside it.'
  894. 'His cum penetrates through the cervix directly into your womb, which causes a warm, yet painful sensation to flow through you.'
  895. pain['cervix'] += vagDMG
  896. gs 'stat'
  897. end
  898. *nl
  899. if cumVol = 3:
  900. 'With his <<$dick_girth>> dick buried inside your pussy, the customer pumps his cum inside you.'
  901. 'When he pulls out, some of it drips out of you.'
  902. elseif cumVol = 4:
  903. 'With his <<$dick_girth>> dick buried deep inside your pussy, his tip touches your cervix as he pumps your pussy full of his cum.'
  904. 'As he pulls his cock out, a large amount of the cum forcefully squirts out of you.'
  905. elseif cumVol >= 5:
  906. 'With his <<$dick_girth>> dick buried very deep inside your pussy, his tip pushes against your cervix and even slides inside a little.'
  907. 'As he pumps his cum inside you, a lot of it shoots directly into your womb. It feels painful, but the warm sensation is nothing like what you''ve felt before.'
  908. 'When he pulls his cock out, his cum squirts out of your pussy.'
  909. pain['cervix'] += 20
  910. pain['tummy'] += 40
  911. else
  912. 'The customer cums inside you. When he pulls his cock out, his cum slowly drips out of your pussy.'
  913. end
  914. pcs_vag += 1
  915. stat['vaginal'] += 1
  916. cumnostd = 1
  917. gs 'cum_call', 'pussy', 'customer', svol,'', spot
  918. gs 'stat'
  919. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  920. end
  921. if $ARGS[0] = 'abdCustomer-cumAss':
  922. i = rand(1,5)
  923. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumass<<i>>.mp4"></video></center>'
  924. if assDMG > 0:
  925. 'You can feel his <<$dick_girth>> cock slamming against your intestinal wall as he cums inside your ass.'
  926. 'His cum fills you, and feels as if it''s flowed right up to your stomach.'
  927. pain['asshole'] += assDMG
  928. gs 'stat'
  929. end
  930. if cumVol = 3:
  931. 'His <<$dick_girth>> member is buried in your intestines.'
  932. if buyout = 1:
  933. 'As <<$bName>> shoots his load, you can feel the warmth spreading inside you...'
  934. else
  935. 'As he shoots his load, you can feel the warmth spreading inside you...'
  936. end
  937. 'He pulls out and his cum slowly drips from your gaping hole.'
  938. elseif cumVol = 4:
  939. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, sometimes even hitting your intestinal walls.'
  940. if buyout = 1:
  941. 'As <<$bName>> shoots his load, you can feel a warmth spread inside you...'
  942. else
  943. 'As he shoots his load, you can feel a warmth spread inside you...'
  944. end
  945. 'He pulls out and his cum squirts out of your gaping hole.'
  946. elseif cumVol >= 5:
  947. if buyout = 1:
  948. '<<$bName>>''s <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, with each thrust forcefully hitting your intestinal walls.'
  949. else
  950. 'The customer''s <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, with each thrust forcefully hitting your intestinal walls.'
  951. end
  952. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines full of cum.'
  953. *nl
  954. 'When he pulls his cock out, cum squirts out of your ravaged anus.'
  955. pain['tummy'] += 20
  956. gs 'stat'
  957. else
  958. if buyout = 1:
  959. '<<$bName>> cums inside you. When he pulls his cock out, his cum slowly leaks out of your gaping anus.'
  960. else
  961. 'The customer cums inside you. When he pulls his cock out, his cum slowly leaks out of your gaping anus.'
  962. end
  963. end
  964. if buyout = 1:
  965. gs 'npcgeneratec', 0, $bName, rand(18,34)
  966. gs 'boyStat', $npclastgenerated
  967. else
  968. gs 'npcgeneratec', 0, 'customer', rand(18,34)
  969. gs 'boyStat', $npclastgenerated
  970. end
  971. pcs_ass += 1
  972. cumnostd = 1
  973. gs 'cum_call', 'anus', $boy
  974. stat['anal'] += 1
  975. gs 'stat'
  976. if buyout = 1:
  977. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyout4'
  978. else
  979. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  980. end
  981. end
  982. if $ARGS[0] = 'abdCustomer-cumMouth':
  983. i = rand(1, 5)
  984. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecummouth<<i>>.mp4"></video></center>'
  985. if throatDMG > 0:
  986. 'Your aching throat is penetrated again as he buries his <<$dick_girth>> cock to the hilt inside you.'
  987. 'When he shoots his load, you feel his member painfully stretching your already sore throat.'
  988. pain['throat'] += throatDMG
  989. gs 'stat'
  990. end
  991. if cumVol = 3:
  992. 'His cum fills your throat.'
  993. elseif cumVol = 4:
  994. 'His cum fills your throat and trickles down into your stomach.'
  995. 'You feel very full and bloated.'
  996. pcs_energy += 50
  997. pcs_hydra += 40
  998. elseif cumVol => 5:
  999. 'You''re being pumped full of cum like a slut. He completely fills your stomach and throat.'
  1000. 'You probably won''t need another meal today...'
  1001. pcs_energy += 100
  1002. pcs_hydra += 90
  1003. else
  1004. 'The customer shoots his cum into your mouth and down your throat.'
  1005. end
  1006. mouth += 1
  1007. cumnostd = 1
  1008. gs 'cum_call', 'mouth', 'customer'
  1009. stat['throat'] += 1
  1010. gs 'stat'
  1011. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1012. end
  1013. if $ARGS[0] = 'abdCustomer-cumFace':
  1014. i = rand(1, 5)
  1015. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumface<<i>>.mp4"></video></center>'
  1016. 'He takes his <<$dick_girth>> dick and points it towards your face.'
  1017. if cumVol = 3:
  1018. 'A <<$cumType>> amount of cum lands all over your face.'
  1019. elseif cumVol = 4:
  1020. 'A <<$cumType>> amount of cum lands all over your face. Some even lands in your hair.'
  1021. elseif cumVol => 5:
  1022. 'A <<$cumType>> amount of cum lands all over your face and hair.'
  1023. 'There''s so much that you have a solid layer covering your face.'
  1024. else
  1025. 'A <<$cumType>> amount of cum is splattered across your face and in your mouth.'
  1026. end
  1027. 'The customer seems content and looks at you in satisfaction.'
  1028. mouth += 1
  1029. cumnostd = 1
  1030. gs 'cum_call', 'face', 'customer'
  1031. stat['mouth'] += 1
  1032. gs 'stat'
  1033. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1034. end
  1035. if $ARGS[0] = 'abdCustomer-end':
  1036. if endPunishment = 1:
  1037. 'The customer goes to the bathroom before calling for your master.'
  1038. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1039. elseif buyout = 1:
  1040. '<<$bName>> leaves you lying on the ground, his cum still dripping out of your ass, and calls for your master.'
  1041. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1042. else
  1043. 'The customer goes to the bathroom, and you are immediately taken back to the basement.'
  1044. act 'Go back':gt 'abduction', 'abdRoom'
  1045. end
  1046. end
  1047. if $ARGS[0] = 'abdCustomer-endPunishment':
  1048. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/kneelingslave1.jpg"></center>'
  1049. iif(buyout = 1, $bName, 'The customer') + ' tells your master how unruly you were and that further training should be applied to you before he leaves.'
  1050. 'Kneeling, you look up at your master only to see his grim face. You can tell something bad will happen.'
  1051. act 'Back to the basement':gt 'abduction', 'abdFailedCustomer'
  1052. end
  1053. --- abductionCustomer ---------------------------------