abductionCustomer.qsrc 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154
  1. # abductionCustomer
  2. if $ARGS[0] = 'abdCustomerGate':
  3. menu_off = 1
  4. 'Your master approaches you, "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. 'Your master approaches you, "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 orders 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(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 to you.'
  160. 'Right away you can see that he is just another bastard coming here to use your <<age>> years young body.'
  161. 'Your master leaves you in the center of the room, still kneeling with the leash attached to your collar.'
  162. 'As the door closes behind him, the customer slowly turns and 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 into his eyes and see a <<$charType>> look in his eyes.'
  168. '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.'
  169. end
  170. if pcs_vag = 0:
  171. 'Your master tells the customer: "So this is her. You can make sure she''s a virgin, 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, I suppose her vagina will be especially tight."'
  177. '"That''s how I like it."'
  178. else
  179. '"Good number. Good slut, too."'
  180. '"We will 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 doing something. You decide to:'
  186. act 'Show him your assets':gt 'abductionCustomer', 'abdCustomer-show'
  187. act 'Unzip his pants':gt 'abductionCustomer', 'abdCustomer-unzip'
  188. end
  189. end
  190. end
  191. if $ARGS[0] = 'abdCustomer-buyout1':
  192. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/leonid/leonid.jpg"></center>'
  193. 'As you look up at his face a chill runs down your spine - you know him!'
  194. 'You remember this man from one of the parent-school conferences. It''s Dimka''s dad, <<$bName>>..'
  195. '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>>?'
  196. 'With a trembling voice only a few words leave your mouth: "Th...that''s me mister <<$bSurname>>.."'
  197. '"The police has already given up searching for you, you know. As if they made any effort, though..."'
  198. '"I-I don''t even know how long I''ve been here. The only thing I remember is being a plaything for these perverts..."'
  199. '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.'
  200. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel2.jpg"></center>'
  201. 'Then suddenly the look on <<$bName>>''s face changes from surprised to something else.'
  202. 'He comes up to you and gently caresses your face: "Plaything, you say? And do you like it?"'
  203. 'Surprised by such a question you wait with your answer:'
  204. gs 'willpower', 'misc', 'self', 'hard'
  205. if will_cost <= pcs_willpwr:
  206. act 'Admit you like to be dominated, but this is too much (<<will_cost>> Willpower)':
  207. gs 'willpower', 'misc', 'self', 'hard'
  208. gs 'willpower', 'pay', 'self'
  209. gs 'stat'
  210. gt 'abductionCustomer', 'abdCustomer-buyout2'
  211. end
  212. else
  213. 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>'
  214. end
  215. act 'Say you hate it':gt 'abductionCustomer', 'abdCustomer-buyout3'
  216. end
  217. if $ARGS[0] = 'abdCustomer-buyout2':
  218. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  219. '"What a nice submissive slut you have become. What would your mother say about this?"'
  220. '"I rather you wouldn''t let her know how I ended up."'
  221. '"This establishment really gets the job done. I must commend the owner."'
  222. 'With these words he leaves the room. You can hear an echo of a discussion between him and your master.'
  223. '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.'
  224. '"B-but... where are you taking me? I have never been in this part of the house before."'
  225. '"You still don''t understand, slut? I own you now. I''ve bought you, I paid for you, you are my property. My slavegirl."'
  226. 'Surprised, you can only think; better be used by one man than by many random ones.'
  227. 'Still naked and collared, he leads you outside to his car and stuffs you into the trunk.'
  228. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  229. end
  230. if $ARGS[0] = 'abdCustomer-buyout3':
  231. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreleonid1.mp4"></video></center>'
  232. '"In that case let''s have some fun, before we go straight to business."'
  233. 'He slaps your face so hard you lose your balance and fall down on the floor.'
  234. '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.'
  235. 'But <<$bName>> seems to be as perverted as all the other men that have used you previously.'
  236. 'Stepping above you as you helplessly lay on the floor, he opens his zipper and pulls his dick out of his pants.'
  237. 'You can clearly see his <<dick>> cm long <<$dick_girth>> dick swing above you in the air.'
  238. act 'Suck on it':gt 'abductionCustomer', 'abdCustomer-suckTip'
  239. gs 'willpower', 'bj', 'resist'
  240. if will_cost <= pcs_willpwr:
  241. act 'Do Nothing (<<will_cost>> Willpower)':
  242. gs 'willpower', 'bj', 'resist'
  243. gs 'willpower', 'pay', 'resist'
  244. gs 'stat'
  245. gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  246. end
  247. else
  248. 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>'
  249. end
  250. end
  251. if $ARGS[0] = 'abdCustomer-buyout4':
  252. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid2.jpg"></center>'
  253. 'You are left lying on the floor, <<$bName>>''s cum still flowing out of your gaping ass.'
  254. 'He goes through the door and you can hear an echo of a discussion between him and your master.'
  255. 'In a few minutes <<$bName>> comes back: "I really like you <<$pcs_firstname>>."'
  256. 'He grabs your leash and leads you outside the room and into the hallway.'
  257. '"B-but... where are you taking me? I have never been in this part of the house."'
  258. '"You still don''t understand, slut? I own you now. I''ve bought you, I paid for you, you are my property. My slavegirl."'
  259. 'Surprised, you can only think; better be used by one man then by many random ones.'
  260. 'Still naked and collared, he leads you outside to his car and stuffs you into the trunk.'
  261. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyoutLeave'
  262. end
  263. if $ARGS[0] = 'abdCustomer-buyoutLeave':
  264. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/garage.jpg"></center>'
  265. 'Stuffed in the trunk you can hear the sound of the engine as he drives you somewhere unknown.'
  266. 'After about thirty minutes the car stops.'
  267. '<<$bName>> opens the trunk. You appear to be in an underground parking garage.'
  268. 'You climb out, still naked and collared like a bitch. It seems he doesn''t care about your feelings at all.'
  269. 'He takes your leash and leads you through a door upstairs into a room that looks like an office.'
  270. act 'Continue':gt 'leonid', 'firstTime'
  271. end
  272. if $ARGS[0] = 'abdCustomer-virgin1':
  273. minut += 10
  274. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin1.mp4"></video></center>'
  275. 'Your master leaves and you start to shiver.'
  276. '"Don''t worry slut, it will hurt only a lot!" the customer is clearly enjoying himself.'
  277. 'You run to the far corner of the room, a futile attempt to get as far away from him as you can.'
  278. 'He walks up to you and grabs you, dragging you to the center of the room, where a sort of bench stands.'
  279. 'You are bound to the bench, your legs spread as wide as they go, giving him ideal access to your naked virgin pussy.'
  280. '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.'
  281. gs 'stat'
  282. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin2'
  283. end
  284. if $ARGS[0] = 'abdCustomer-virgin2':
  285. minut += 2
  286. pcs_mood = 5
  287. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin2.mp4"></video></center>'
  288. 'He starts to undress, finishing off with his pants. As he pulls them down, you can finally can see his naked member fall out.'
  289. '"With renewed terror you start to cry, because the sight of his <<dick>> cm thick <<$dick_girth>> phallus is just terrifying."'
  290. gs 'stat'
  291. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin3'
  292. end
  293. if $ARGS[0] = 'abdCustomer-virgin3':
  294. minut += 10
  295. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin3.jpg"></center>'
  296. 'He starts jerking his member, looking at you, bound and helpless, slowly making his cock hard.'
  297. 'In his eyes you can see he relishes looking at you in your despair.'
  298. gs 'stat'
  299. act 'Continue':gt 'abductionCustomer', 'abdCustomer-virgin4'
  300. end
  301. if $ARGS[0] = 'abdCustomer-virgin4':
  302. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin4.jpg"></center>'
  303. 'Finally he reaches for you, bringing the tip of his phallus in front of your pussy.'
  304. 'He covers his <<$dick_girth>> member in a thick layer of lube and starts slowly pressing against the opening of your vagina.'
  305. 'With his hands he spreads your pussy lips, easing the entry for his member.'
  306. '"Now behold, girl. You are about to become a woman!"'
  307. 'He pushes it in with a single long trust, almost all the way inside your virgin pussy.'
  308. 'A terrible pain spreads throughout your lower body, a trickle of red blood running down the shaft of his cock.'
  309. pcs_vag += 1
  310. stat['vaginal'] += 1
  311. pain['vaginal'] += 20
  312. gs 'stat'
  313. gs 'arousal', 'vaginal', 5, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  314. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin5'
  315. end
  316. if $ARGS[0] = 'abdCustomer-virgin5':
  317. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin5.mp4"></video></center>'
  318. 'He leaves his cock inside you, enjoying your facial expressions and the sight of blood coating his cock.'
  319. 'Then he removes it, renewing your pain and enjoying himself again.'
  320. 'Being content with his accomplishment, he enters your pussy again and this time he fucks you brutally, often hitting your cervix with his <<dick>> cm long thick <<$dick_girth>> dick.'
  321. pain['vaginal'] += 10
  322. pain['cervix'] += 10
  323. pain['tummy'] += 10
  324. gs 'stat'
  325. gs 'arousal', 'vaginal', 30, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  326. act 'Cry':gt 'abductionCustomer', 'abdCustomer-virgin6'
  327. end
  328. if $ARGS[0] = 'abdCustomer-virgin6':
  329. minut += 5
  330. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin6.mp4"></video></center>'
  331. '"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."'
  332. 'With new tears streaming down your cheeks, he spurts his <<$cumType>> amount of sperm <<dick>> cm deep inside your belly.'
  333. gs 'cum_call', 'pussy', 'deflowering pervert'
  334. gs 'stat'
  335. act 'Cry more':gt 'abductionCustomer', 'abdCustomer-virgin7'
  336. end
  337. if $ARGS[0] = 'abdCustomer-virgin7':
  338. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin7.jpg"></center>'
  339. 'He rests with his dick deep inside you for a while, again enjoying the sight of your sobbing and despair.'
  340. '"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."'
  341. '"The gift I just gave you, my cum, is not meant to just drip out of you. You will receive another gift. One that will keep it inside you."'
  342. 'With these words he lifts your ass in the air so the cum doesn''t 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.'
  343. 'When it''s in, he takes some pieces of duct tape and wraps it over your pussy, covering your lips and keeping the dildo firmly stuck inside.'
  344. 'He unties you from the bench, but tightens your hands behind your back, probably to keep you from removing the shaft.'
  345. '"Now run, slut, and enjoy my gifts even more!" He leaves laughing.'
  346. pain['vaginal'] += 10
  347. pain['cervix'] += 10
  348. pain['belly'] += 20
  349. gs 'stat'
  350. gs 'arousal', 'vaginal_dildo', 10, 'sub', 'maso', 'humiliation', 'rough', 'bound'
  351. act 'Struggle to remove the dildo':gt 'abductionCustomer', 'abdCustomer-virgin8'
  352. end
  353. if $ARGS[0] = 'abdCustomer-virgin8':
  354. minut += 10
  355. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin8.jpg"></center>'
  356. 'Your master comes in and finds you struggling on the ground, trying to shake the <<$dick_girth>> dildo out of you.'
  357. '"Stop it, girl. You are just making it worse."'
  358. 'He grabs your leash and leads you back down to your cell.'
  359. 'As you follow the master by the leash, the plugged <<$dick_girth>> dildo moves inside you, causing you unpleasant sensations and pain.'
  360. 'Finally you are back at your bed.'
  361. gs 'stat'
  362. act 'Lie down':gt 'abductionCustomer', 'abdCustomer-virgin9'
  363. end
  364. if $ARGS[0] = 'abdCustomer-virgin9':
  365. minut += 480
  366. pcs_sleep += 70
  367. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorevirgin9.jpg"></center>'
  368. 'Still having your hands bound you are put on your bed and tied to the wall on a short leash.'
  369. 'Your master leaves and you are left lying on the bed, still having your vagina plugged with this <<dick>> cm long <<$dick_girth>> dildo.'
  370. gs 'stat'
  371. act 'Try to rest':gt 'abductionCustomer', 'abdCustomer-virgin10'
  372. end
  373. if $ARGS[0] = 'abdCustomer-virgin10':
  374. minut += 15
  375. pcs_mood = 5
  376. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorevirgin10.mp4"></video></center>'
  377. 'The sound of your master coming downstairs wakes you up.'
  378. 'You must have fallen asleep from the exhaustion.'
  379. *nl
  380. 'Kneel and stick your ass high in the air, slut.'
  381. 'You are so desperate that you don''t even think about not doing what he orders you to do.'
  382. '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.'
  383. 'Your master kneels down, removes the duct tape with a single pull and puts his fingers inside you, grabbing the stuck dildo.'
  384. 'Slowly he takes it out. Remnants of your virgin blood and the customer''s sperm are smeared all over it.'
  385. 'Your empty vagina gives you a rush of relief.'
  386. '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."'
  387. gs 'stat'
  388. act 'Continue':gt 'abduction', 'abdRoom'
  389. end
  390. if $ARGS[0] = 'abdCustomer-unzip':
  391. minut += 2
  392. gs 'stat'
  393. 'You reach towards his crotch and slowly start to unzip his trousers.'
  394. '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.'
  395. if dick > 15 and dick < 25:
  396. *nl
  397. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip1.mp4"></video></center>'
  398. 'You stare at his <<$dick_girth>> cock with respect.'
  399. elseif dick >= 25:
  400. *nl
  401. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip2.mp4"></video></center>'
  402. 'You stare at his <<$dick_girth>> cock with horror, imagining what terrible things this sizeable penis will do to your tender body.'
  403. elseif dick < 15 and pcs_throat > dick:
  404. *nl
  405. '<center><video autoplay loop src="images/locations/shared/abduction/sex/unzip3.mp4"></video></center>'
  406. 'With relief you look at his <<$dick_girth>> cock thinking that it''s nothing you can''t handle.'
  407. end
  408. if pcs_throat < dick:
  409. 'It''s obvious that his <<$dick_girth>> dick is above your skill and you know you wouldn''t be able to swallow it whole.'
  410. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  411. gs 'willpower', 'bj', 'self'
  412. if will_cost <= pcs_willpwr:
  413. act 'Force yourself on his cock (<<will_cost>> Willpower)':
  414. gs 'willpower', 'bj', 'self'
  415. gs 'willpower', 'pay', 'self'
  416. gs 'stat'
  417. gt 'abductionCustomer', 'abdCustomer-suckForceself'
  418. end
  419. else
  420. 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>'
  421. end
  422. else
  423. 'Even though his dick is <<$dick_girth>>, you know you''d be able to take it all the way to the balls.'
  424. act 'Suck the tip':gt 'abductionCustomer', 'abdCustomer-suckTip'
  425. gs 'willpower', 'bj', 'self'
  426. if will_cost <= pcs_willpwr:
  427. act 'Deepthroat his cock (<<will_cost>> Willpower)':
  428. gs 'willpower', 'bj', 'self'
  429. gs 'willpower', 'pay', 'self'
  430. gs 'stat'
  431. gt 'abductionCustomer', 'abdCustomer-suckDeep'
  432. end
  433. else
  434. 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>'
  435. end
  436. end
  437. end
  438. if $ARGS[0] = 'abdCustomer-show':
  439. minut += 10
  440. i = rand(1,5)
  441. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoretease<<i>>.mp4"></video></center>'
  442. 'You decide to tease the customer by showing him your sexy assets by jiggling your girly parts.'
  443. 'After some time behaving like a slut, it is obvious that he wants something more.'
  444. act 'Continue':gt 'abductionCustomer', 'abdCustomer-unzip'
  445. end
  446. if $ARGS[0] = 'abdCustomer-suckTip':
  447. gs 'arousal', 'bj', 15, 'sub'
  448. gs 'stat'
  449. i = rand(1,5)
  450. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobtip<<i>>.mp4"></video></center>'
  451. 'You try as best as you can to suck the head of his <<dick>> cm sized <<$dick_girth>> dick.'
  452. if pcs_throat < dick:
  453. 'It''s obvious that his <<$dick_girth>> dick is above your skill and you know you wouldn''t be able to swallow it whole.'
  454. else
  455. 'Even though his dick is <<$dick_girth>>, you know you''d be able to take it all the way to the balls.'
  456. end
  457. if $charType = 'sadistic':
  458. if buyout = 1:
  459. '<<$bName>> is starting to get very grumpy, obviously he''s not happy that all you can do is suck the tip of his cock.'
  460. else
  461. '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.'
  462. end
  463. 'Suddenly, without any warning, he takes a step back, pulling his <<$dick_girth>> member out of your mouth.'
  464. 'With an angry look in his eyes he slaps your face very hard, knocking you down to the cold floor.'
  465. 'He jumps on top of you with a piece of rope and ties you up.'
  466. '"Even here one must train the slaves himself!" He shouts at you, forcing his <<$dick_girth>> dick all the way down your throat.'
  467. 'With your hands tied up you are unable to resist and all you can do is struggle to avoid suffocating as best you can...'
  468. act 'Endure':gt 'abductionCustomer', 'abdCustomer-suckForced'
  469. elseif $charType = 'neutral':
  470. '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...'
  471. forceChance = rand(1, 100)
  472. if forceChance <= 70:
  473. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-suckForced'
  474. else
  475. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  476. end
  477. if pcs_throat < dick:
  478. gs 'willpower', 'bj', 'self'
  479. if will_cost <= pcs_willpwr:
  480. act 'Force yourself on his cock (<<will_cost>> Willpower)':
  481. gs 'willpower', 'bj', 'self'
  482. gs 'willpower', 'pay', 'self'
  483. gs 'stat'
  484. gt 'abductionCustomer', 'abdCustomer-suckForceself'
  485. end
  486. else
  487. 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>'
  488. end
  489. else
  490. gs 'willpower', 'bj', 'self'
  491. if will_cost <= pcs_willpwr:
  492. act 'Deepthroat his cock (<<will_cost>> Willpower)':
  493. gs 'willpower', 'bj', 'self'
  494. gs 'willpower', 'pay', 'self'
  495. gs 'stat'
  496. gt 'abductionCustomer', 'abdCustomer-suckDeep'
  497. end
  498. else
  499. 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>'
  500. end
  501. end
  502. elseif $charType = 'kind':
  503. '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.'
  504. act 'Continue sucking the tip':gt 'abductionCustomer', 'abdCustomer-fuck'
  505. end
  506. end
  507. if $ARGS[0] = 'abdCustomer-suckForceself':
  508. pcs_throat += 1
  509. pain['throat'] += throatDMG
  510. gs 'stat'
  511. i = rand(1,3)
  512. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobselfforced<<i>>.mp4"></video></center>'
  513. 'Knowing you will probably hurt yourself, you force yourself on his <<dick>> cm long cock all the way down to the balls anyway.'
  514. 'You start gagging and saliva is everywhere, but the customer seems more content now.'
  515. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat'
  516. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  517. end
  518. if $ARGS[0] = 'abdCustomer-suckForced':
  519. pain['throat'] += throatDMG * 2
  520. pcs_throat += 2
  521. gs 'arousal', 'bj', 15, 'sub', 'rough', 'deepthroat', 'humiliation'
  522. gs 'stat'
  523. endPunishment = 1
  524. i = rand(1,6)
  525. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjobforced<<i>>.mp4"></video></center>'
  526. if buyout = 1:
  527. '<<$bName>> starts growling and suddenly pulls his cock out of your mouth.'
  528. else
  529. 'The customer starts growling and suddenly pulls his cock out of your mouth.'
  530. end
  531. '"What kind of slave are you when you can''t swallow my <<$dick_girth>> dick?"'
  532. 'He ties you up and forces his cock down your throat, showing you little to no concern.'
  533. 'You start to gag as he keeps pushing his member deep inside you, sometimes leaving you on the brink of passing out.'
  534. vagOrAss = rand (0,1)
  535. if buyout = 1:
  536. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  537. else
  538. if vagOrAss = 0:
  539. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  540. else
  541. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  542. end
  543. end
  544. end
  545. if $ARGS[0] = 'abdCustomer-suckDeep':
  546. pcs_throat += 1
  547. gs 'arousal', 'bj', 15, 'sub', 'deepthroat'
  548. gs 'stat'
  549. i = rand(1,6)
  550. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoreblowjob<<i>>.mp4"></video></center>'
  551. 'You swallow his <<$dick_girth>> cock all the way down to the balls.'
  552. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuck'
  553. end
  554. if $ARGS[0] = 'abdCustomer-fuck':
  555. minut += 2
  556. pcs_throat += 1
  557. gs 'stat'
  558. endPunishment = 0
  559. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorecockremoved.jpg"></center>'
  560. '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.'
  561. if charType = 'sadistic':
  562. '"What should I do to you next, bitch?"'
  563. else
  564. 'So how do you want it next, love?'
  565. end
  566. 'You are not entirely sure if he means that as a question or if he''s just saying that to himself.'
  567. if $charType = 'sadistic':
  568. *nl
  569. '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.'
  570. '"You thought I''m really interested in your slutty opinion?" He says laughing.'
  571. '"A whore, and on top of that a slave whore, has no right to have an opinion."'
  572. '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.'
  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 will fuck your cunt raw, bitch.'
  603. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  604. else
  605. '"Let''s take your tender pussy!" He decides.'
  606. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  607. end
  608. else
  609. if $charType = 'sadistic':
  610. '"I will 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." He says.'
  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 kind to me sir, I''m so afraid and sore... please!'
  624. if dick >= 15:'"I''m very afraid of your <<$dick_girth>> penis 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 feel 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. if hardChance <= 50:
  640. '"I will fuck you however I want, so shut up, bitch!"'
  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. '"I will fuck you however way I want, so shut up."'
  648. if vagOrAss = 0:
  649. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  650. else
  651. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  652. end
  653. end
  654. end
  655. end
  656. if $ARGS[0] = 'abdCustomer-fuckAnal':
  657. pcs_ass += 1
  658. gs 'stat'
  659. i = rand(1,5)
  660. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanal<<i>>.mp4"></video></center>'
  661. 'The customer puts some lubricant on his <<$dick_girth>> cock and penetrates your ass.'
  662. 'He doesn''t care much about your feelings but he''s also not exactly hurting you on purpose.'
  663. *nl
  664. if dick > pcs_ass:
  665. pain['asshole'] += assDMG
  666. pain['tummy'] += assDMG
  667. gs 'arousal', 'anal', 30, 'sub', 'rough'
  668. gs 'stat'
  669. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  670. else
  671. 'You have no problems accommodating his <<$dick_girth>> member.'
  672. gs 'arousal', 'anal', 30, 'sub'
  673. gs 'stat'
  674. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  675. end
  676. end
  677. if $ARGS[0] = 'abdCustomer-fuckAnalRough':
  678. pcs_ass += 2
  679. gs 'arousal', 'anal', 30, 'sub', 'rough', 'bound'
  680. gs 'stat'
  681. i = rand(1,5)
  682. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanalrough<<i>>.mp4"></video></center>'
  683. if buyout = 1:
  684. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid1.jpg"></center>'
  685. '<<$bName>> takes you by your leash and positions your body as if it''s just meat to be used.'
  686. else
  687. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  688. end
  689. '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.'
  690. *nl
  691. if assDMG <= 0 :
  692. 'Fortunately his <<$dick_girth>> dick is not enough to damage your anus and intestines, not more than usual, anyway.'
  693. if buyout = 1:
  694. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  695. else
  696. if $charType = 'sadistic':
  697. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  698. else
  699. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  700. end
  701. end
  702. elseif assDMG <= 2:
  703. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as it bumps against your intestinal walls.'
  704. pain['asshole'] += assDMG
  705. gs 'stat'
  706. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  707. else
  708. 'His <<$dick_girth>> dick is insanely big for you.'
  709. 'The tip of his cock repeatedly hits your intestinal walls and stretches your anus to insane proportions.'
  710. 'You will probably not be able to close your anus for a while.'
  711. pain['asshole'] += assDMG
  712. pain['tummy'] += assDMG
  713. gs 'stat'
  714. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  715. end
  716. end
  717. if $ARGS[0] = 'abdCustomer-fuckAnalDeep':
  718. minut += 15
  719. pcs_ass += 1
  720. gs 'stat'
  721. i = rand(1, 1)
  722. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanaldeep<<i>>.mp4"></video></center>'
  723. 'His member is <<$dick_girth>> and your ass is unable to accommodate it.'
  724. if $charType = 'sadistic':
  725. *nl
  726. 'But he doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  727. '"How do like my <<$dick_girth>> cock inside you, bitch?"'
  728. '"Is it deep enough for you, or should I push a bit more?"'
  729. 'Obviously he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  730. *nl
  731. end
  732. 'With every stroke of his dick deep inside your intestines, you feel as if it''s your very stomach being poked by it.'
  733. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  734. *nl
  735. if buyout = 1:
  736. 'After about half an hour of deep anal banging, <<$bName>> is about to cum.'
  737. else
  738. 'After about half an hour of deep anal banging, the man is about to cum.'
  739. end
  740. if (endPunishment = 1 or $charType = 'sadistic') and buyout = 0:
  741. '"Now, I will feed you my seed, you unruly anal slave."'
  742. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  743. elseif buyout = 1:
  744. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  745. else
  746. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  747. end
  748. end
  749. if $ARGS[0] = 'abdCustomer-fuckNormal':
  750. pcs_vag += 1
  751. gs 'stat'
  752. i = rand(1,5)
  753. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefucknormal<<i>>.mp4"></video></center>'
  754. 'The customer penetrates your pussy and fucks you.'
  755. if vagDMG <= 0:
  756. 'He''s not gentle, but it isn''t a very rough fuck either.'
  757. 'You have no problems accommodating his <<$dick_girth>> dick.'
  758. 'For some moments, you almost seem to enjoy it.'
  759. gs 'arousal', 'vaginal', 30, 'sub'
  760. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  761. elseif vagDMG <= 2:
  762. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as it bumps against your vaginal walls.'
  763. pain['vaginal'] += vagDMG
  764. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  765. gs 'stat'
  766. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  767. else
  768. 'His <<$dick_girth>> dick is insanely big for you.'
  769. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  770. pain['vaginal'] += vagDMG
  771. pain['cervix'] += vagDMG
  772. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  773. gs 'stat'
  774. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  775. end
  776. end
  777. if $ARGS[0] = 'abdCustomer-fuckRough':
  778. pcs_vag += 2
  779. gs 'stat'
  780. i = rand(1,5)
  781. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckrough<<i>>.mp4"></video></center>'
  782. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  783. 'What comes next is an excruciatingly rough fuck that clearly shows he has no regard for all the pain you have to endure, whatsoever.'
  784. if vagDMG <= 0:
  785. 'Fortunately his <<$dick_girth>> dick is not enough to damage your vagina, not more than usual, anyway.'
  786. gs 'arousal', 'vaginal', 30, 'sub', 'bound'
  787. if $charType = 'sadistic':
  788. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  789. else
  790. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  791. end
  792. elseif vagDMG <= 2:
  793. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain, as it bumps against your vaginal walls.'
  794. pain['vaginal'] += vagDMG
  795. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  796. gs 'stat'
  797. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  798. else
  799. 'His <<$dick_girth>> dick is insanely big for you.'
  800. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  801. 'He seems to notice it too and realizes why you''re groaning so loudly.'
  802. 'Enjoying your suffering, he pushes his dick even deeper inside and you squeal like a pig being slaughtered.'
  803. pain['vaginal'] += vagDMG * 2
  804. pain['cervix'] += vagDMG * 2
  805. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  806. gs 'stat'
  807. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  808. end
  809. end
  810. if $ARGS[0] = 'abdCustomer-fuckDeep':
  811. minut += 15
  812. pcs_ass += 1
  813. gs 'stat'
  814. i = rand(1, 5)
  815. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckdeep<<i>>.mp4"></video></center>'
  816. 'His member is <<$dick_girth>> and your vagina is unable to accommodate it.'
  817. if $charType = 'sadistic':
  818. *nl
  819. 'But he doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  820. '"How do like my <<$dick_girth>> cock inside you, bitch?"'
  821. '"Is it deep enough for you, or should I push a bit more?"'
  822. '"Do you feel me entering your cervix?"'
  823. 'Obviously he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  824. *nl
  825. end
  826. 'With every stroke of his dick deep inside your vagina, you feel as if it''s your very cervix being penetrated.'
  827. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  828. *nl
  829. 'After about half an hour of deep vaginal banging, the man is about to cum.'
  830. if endPunishment = 1 or $charType = 'sadistic':
  831. '"Now, I will feed you my seed, unruly fuck slave."'
  832. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  833. else
  834. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  835. end
  836. end
  837. if $ARGS[0] = 'abdCustomer-cumGate':
  838. if endPunishment = 1:
  839. '"Now, I will feed you my seed, unruly slave slut."'
  840. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  841. elseif buyout = 1:
  842. '"Now <<$pcs_firstname>> you will be filled with my seed for the first time, so be sure to cherish the memory of this moment!"'
  843. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  844. else
  845. '"So where do you want me to put the deposit, love?"'
  846. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  847. act 'Ask him to cum on your face':gt 'abductionCustomer', 'abdCustomer-cumFace'
  848. gs 'willpower', 'cum_inside', 'self'
  849. if will_cost <= pcs_willpwr:
  850. act 'Ask him to cum inside your pussy (<<will_cost>> Willpower)':
  851. gs 'willpower', 'cum_inside', 'self'
  852. gs 'willpower', 'pay', 'self'
  853. gs 'stat'
  854. gt 'abductionCustomer', 'abdCustomer-cumPussy'
  855. end
  856. else
  857. act 'Ask him to cum 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>'
  858. end
  859. gs 'willpower', 'cum_inside_anal', 'self'
  860. if will_cost <= pcs_willpwr:
  861. act 'Ask him to cum inside your ass (<<will_cost>> Willpower)':
  862. gs 'willpower', 'cum_inside_anal', 'self'
  863. gs 'willpower', 'pay', 'self'
  864. gs 'stat'
  865. gt 'abductionCustomer', 'abdCustomer-cumAss'
  866. end
  867. else
  868. act 'Ask him to cum 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>'
  869. end
  870. gs 'willpower', 'swallow', 'self'
  871. if will_cost <= pcs_willpwr:
  872. act 'Ask him to cum into your mouth (<<will_cost>> Willpower)':
  873. gs 'willpower', 'swallow', 'self'
  874. gs 'willpower', 'pay', 'self'
  875. gs 'stat'
  876. gt 'abductionCustomer', 'abdCustomer-cumMouth'
  877. end
  878. else
  879. act 'Ask him to cum into your mouth (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  880. end
  881. end
  882. end
  883. if $ARGS[0] = 'abdCustomer-cum':
  884. cumRand = rand(1,100)
  885. if cumRand > 75 and cumRand <= 100:
  886. 'He decides to cum inside your vagina.'
  887. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumPussy'
  888. elseif cumRand > 50 and cumRand <= 75:
  889. 'He decides to cum inside your ass.'
  890. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumAss'
  891. elseif cumRand > 25 and cumRand <= 50:
  892. 'He decides to cum into your mouth.'
  893. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumMouth'
  894. else
  895. 'He decides to cum on your face.'
  896. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumFace'
  897. end
  898. end
  899. if $ARGS[0] = 'abdCustomer-cumPussy':
  900. i = rand(1,5)
  901. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumpussy<<i>>.mp4"></video></center>'
  902. if vagDMG > 0:
  903. '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.'
  904. 'His bursting cum penetrates through the cervix directly into your womb, causing you both pain and a weird warm sensation.'
  905. pain['cervix'] += vagDMG
  906. gs 'stat'
  907. end
  908. *nl
  909. if cumVol = 3:
  910. 'With his <<$dick_girth>> dick buried inside your pussy, the customer delivers his <<$cumType>> amount of sperm inside you.'
  911. 'When he takes it out, some of the sperm drips out of you.'
  912. elseif cumVol = 4:
  913. 'With his <<$dick_girth>> dick buried deep inside your pussy, his tip touches your cervix.'
  914. 'He pumps your vagina full of his <<$cumType>> amount of sperm.'
  915. 'As he pulls his cock out, a large portion of the cum forcefully squirts out of you.'
  916. elseif cumVol >= 5:
  917. '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.'
  918. 'Then, as he shoots his <<$cumType>> amount of cum inside you, a lot of it goes directly to your womb.'
  919. 'It feels painful but the warm sensation is weird and nothing like what you have felt before.'
  920. 'You feel as if your inner parts are stretching from the <<$cumType>> amount of cum being pumped into you.'
  921. *nl
  922. 'When he pulls his <<$dick_girth>> cock out, a bulge is noticeable on the lower part of your belly.'
  923. 'The customer looks at it with joy and punches at the bulge with his fist.'
  924. 'The cum burst out of your pussy as if it shot out from an uncorked champagne bottle.'
  925. pain['cervix'] += 20
  926. pain['tummy'] += 40
  927. else
  928. '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.'
  929. end
  930. pcs_vag += 1
  931. stat['vaginal'] += 1
  932. gs 'cum_call', 'pussy', 'customer', svol,'', spot
  933. gs 'stat'
  934. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  935. end
  936. if $ARGS[0] = 'abdCustomer-cumAss':
  937. i = rand(1,5)
  938. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumass<<i>>.mp4"></video></center>'
  939. if assDMG > 0:
  940. 'As he cums inside your anus, you can feel the banging of his <<$dick_girth>> cock against your intestinal wall.'
  941. 'A moving bulge is visible on your otherwise flat stomach as the phallus moves inside you.'
  942. 'His bursting cum fills you and it seems as if it went backwards up to your very stomach.'
  943. pain['asshole'] += assDMG
  944. gs 'stat'
  945. end
  946. if cumVol = 3:
  947. 'His <<$dick_girth>> member is buried in your intestines.'
  948. if buyout = 1:
  949. 'When <<$bName>> shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  950. else
  951. 'When he shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  952. end
  953. 'After his dick is removed, part of the sperm drips out of your gaping hole.'
  954. elseif cumVol = 4:
  955. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines, sometimes even hitting your intestinal walls.'
  956. if buyout = 1:
  957. 'When <<$bName>> shoots his <<$cumType>> amount of cum inside you, you can feel your stomach growing larger...'
  958. else
  959. 'When he shoots his <<$cumType>> amount of cum inside you, you can feel your stomach growing larger...'
  960. end
  961. 'You feel very full, even after he pulls his <<$dick_girth>> dick out of you.'
  962. 'After a few seconds a large portion of his <<$cumType>> amount of cum spurts out of you as if from a garden hose.'
  963. elseif cumVol >= 5:
  964. if buyout = 1:
  965. '<<$bName>> <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines. With each stroke hitting your intestinal walls forcefully.'
  966. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep in your intestines. With each stroke hitting your intestinal walls forcefully.'
  967. *nl
  968. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines with a <<$cumType>> amount of cum.'
  969. else
  970. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep in your intestines. With each stroke hitting your intestinal walls forcefully.'
  971. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines with a <<$cumType>> amount of cum.'
  972. *nl
  973. 'When he pulls his <<$dick_girth>> cock out, a bulge is noticeable on the lower part of your belly.'
  974. 'The customer looks at it with joy and punches at the bulge with his fist.'
  975. 'The cum burst out of your pussy as if it shot out from an uncorked champagne bottle.'
  976. end
  977. pain['tummy'] += 20
  978. gs 'stat'
  979. else
  980. if buyout = 1:
  981. '<<$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.'
  982. else
  983. '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.'
  984. end
  985. end
  986. if buyout = 1:
  987. gs 'npcgeneratec', 0, $bName, rand(18,34)
  988. gs 'boyStat', $npclastgenerated
  989. else
  990. gs 'npcgeneratec', 0, 'customer', rand(18,34)
  991. gs 'boyStat', $npclastgenerated
  992. end
  993. pcs_ass += 1
  994. gs 'cum_call', 'anus', $boy
  995. stat['anal'] += 1
  996. gs 'stat'
  997. if buyout = 1:
  998. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyout4'
  999. else
  1000. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1001. end
  1002. end
  1003. if $ARGS[0] = 'abdCustomer-cumMouth':
  1004. i = rand(1, 5)
  1005. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecummouth<<i>>.mp4"></video></center>'
  1006. if throatDMG > 0:
  1007. 'Your aching throat is penetrated again.'
  1008. 'He buries his <<$dick_girth>> cock to the hilt inside you.'
  1009. 'While he''s cumming directly down your gullet, you can feel the pulsing of his member, painfully stretching your already sore throat.'
  1010. pain['throat'] += throatDMG
  1011. gs 'stat'
  1012. end
  1013. if cumVol = 3:
  1014. 'His <<$cumType>> amount of cum fills your gullet.'
  1015. elseif cumVol = 4:
  1016. 'His <<$cumType>> amount of cum fills your gullet and drips down into your stomach.'
  1017. 'You feel as if you just ate a bunch of biscuits.'
  1018. pcs_energy += 50
  1019. pcs_hydra += 40
  1020. elseif cumVol => 5:
  1021. 'You are being pumped like a water bag. His <<$cumType>> amount of jizz fills your stomach and gullet.'
  1022. 'You probably won''t need another meal today..'
  1023. pcs_energy += 100
  1024. pcs_hydra += 90
  1025. else
  1026. 'The customer shoots his <<$cumType>> amount of cum inside your mouth and down your gullet.'
  1027. end
  1028. mouth += 1
  1029. gs 'cum_call', 'mouth', 'customer'
  1030. stat['throat'] += 1
  1031. gs 'stat'
  1032. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1033. end
  1034. if $ARGS[0] = 'abdCustomer-cumFace':
  1035. i = rand(1, 5)
  1036. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumface<<i>>.mp4"></video></center>'
  1037. 'He takes his <<$dick_girth>> dick and points it towards your face.'
  1038. if cumVol = 3:
  1039. 'A <<$cumType>> amount of sperm lands all over your face.'
  1040. elseif cumVol = 4:
  1041. 'A <<$cumType>> amount of sperm lands all over your face, some even in your eyes and hair.'
  1042. elseif cumVol => 5:
  1043. 'A <<$cumType>> amount of sperm lands all over your face, in your eyes, hair, everywhere.'
  1044. 'There is so much cum that you have a solid layer on your face, as if you were wearing a cosmetic mask.'
  1045. else
  1046. 'A <<$cumType>> cum volume is spread around your mouth and cheeks.'
  1047. end
  1048. 'The customer seems content with his creation and looks at you with a weird satisfaction.'
  1049. mouth += 1
  1050. gs 'cum_call', 'face', 'customer'
  1051. stat['mouth'] += 1
  1052. gs 'stat'
  1053. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1054. end
  1055. if $ARGS[0] = 'abdCustomer-end':
  1056. if endPunishment = 1:
  1057. 'The customer goes to the bathroom and your master soon returns to you.'
  1058. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1059. elseif buyout = 1:
  1060. '<<$bName>> leaves you lying on the ground, his cum still dripping out of your ass.'
  1061. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1062. else
  1063. 'The customer goes to the bathroom and you are immediately lead back to the basement.'
  1064. act 'Go back':gt 'abduction', 'abdRoom'
  1065. end
  1066. end
  1067. if $ARGS[0] = 'abdCustomer-endPunishment':
  1068. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/kneelingslave1.jpg"></center>'
  1069. 'After the customer is done with you, he calls for your master.'
  1070. 'He tells your master how unruly you were and that further training should be applied to you.'
  1071. 'Then he leaves.'
  1072. 'Kneeling you look up at your master, only to see a grim face. You can tell something bad will happen.'
  1073. act 'Be led back to the basement':gt 'abduction', 'abdFailedCustomer'
  1074. end
  1075. --- abductionCustomer ---------------------------------