abductionCustomer 45 KB

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