abductionCustomer.qsrc 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  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 that came to rent you for a while. Do whatever he asks of you."'
  13. buyout = 1
  14. act 'Yes, Master.':gt 'abductionCustomer', 'abdCustomerGo'
  15. end
  16. if $ARGS[0] = 'abdCustomerGo':
  17. menu_off = 1
  18. minut += 5
  19. gs 'stat'
  20. i = rand(1,3)
  21. '<center><video autoplay loop src="images/locations/shared/abduction/sex/ledonfour<<i>>.mp4"></video></center>'
  22. 'Your master removes your regular chains and attaches a leash to your collar.'
  23. 'You are led up the stairs into the house above your cellar.'
  24. 'When you enter the hall, your master orders you on your knees, "Kneel slave then continue on your four legs just like the bitch you are."'
  25. if pcs_vag = 0:
  26. 'You are led to the room where your customer awaits. Your leash is handed to him.'
  27. else
  28. 'You are led to the room where your customer awaits. Your leash is handed to him, and your master leaves. The room''s only door closes behind him, leaving you alone with your customer.'
  29. end
  30. act 'Continue':gt 'abductionCustomer', 'abdCustomer'
  31. end
  32. if $ARGS[0] = 'abdCustomer':
  33. minut += 5
  34. gs 'stat'
  35. ! customer character type
  36. ! -1=kind, 3-4=normal, 5+=sadistic
  37. charTypeRand = 3
  38. ! customer body type
  39. ! -1=skinny, 3-4=regular, 5-6=muscular, 7+=fat
  40. bodyTypeRand = 3
  41. ! customer height type
  42. ! -1=small, 3-4=regular, 5+=tall
  43. heightTypeRand = 3
  44. ! customer age
  45. customerAge = rand(15, 90)
  46. ! customer race, racial modifiers
  47. raceRand = rand(0, 2)
  48. if RaceRand = 0:
  49. $raceType = 'white'
  50. dickChance = 30
  51. charTypeRand += rand(-3,2)
  52. bodyTypeRand += rand(-2,8)
  53. heightTypeRand += rand(-1,6)
  54. elseif RaceRand = 1:
  55. $raceType = 'black'
  56. dickChance = 40
  57. charTypeRand += rand(0,2)
  58. bodyTypeRand += rand(0,6)
  59. heightTypeRand += rand(0,6)
  60. elseif RaceRand = 2:
  61. $raceType = 'asian'
  62. dickChance = 20
  63. charTypeRand += rand(-2,2)
  64. bodyTypeRand += rand(-6,2)
  65. heightTypeRand += rand(-4,1)
  66. end
  67. if pcs_vag = 0:
  68. dick = 28
  69. elseif buyout = 1:
  70. dick = 24
  71. else
  72. dickRand = rand(1,100)
  73. if dickRand <= dickChance:
  74. dick = rand(15, 40)
  75. elseif dickRand <= (dickChance * 2):
  76. dick = rand(10, 24)
  77. else
  78. dick = rand(5, 14)
  79. end
  80. end
  81. vagDMG = (dick - pcs_vag) * 2
  82. assDMG = (dick - pcs_ass) * 2
  83. throatDMG = (dick - pcs_throat) * 2
  84. ! customer dick size
  85. if dick >= 30:
  86. $dick_girth = 'monstrous'
  87. cumVol = rand(4,5)
  88. elseif dick >= 25:
  89. $dick_girth = 'huge'
  90. cumVol += 1
  91. cumVol = rand(3,5)
  92. elseif dick >= 20:
  93. $dick_girth = 'very big'
  94. cumVol = rand(2,5)
  95. elseif dick >= 15:
  96. $dick_girth = 'big'
  97. cumVol = rand(2,4)
  98. elseif dick >= 10:
  99. $dick_girth = 'regular'
  100. cumVol -= 1
  101. cumVol = rand(1,4)
  102. else
  103. $dick_girth = 'tiny'
  104. cumVol -= 2
  105. cumVol = rand(1,3)
  106. end
  107. ! customer cum volume
  108. if cumVol <= 1:
  109. $cumType = 'neglectable'
  110. elseif cumVol = 2:
  111. $cumType = 'little'
  112. elseif cumVol = 3:
  113. $cumType = 'normal'
  114. elseif cumVol = 4:
  115. $cumType = 'significant'
  116. elseif cumVol >= 5:
  117. $cumType = 'horse like'
  118. end
  119. if charTypeRand <= 1:
  120. $charType = 'kind'
  121. elseif charTypeRand >= 2 and charTypeRand <= 4:
  122. $charType = 'neutral'
  123. elseif charTypeRand >= 5:
  124. $charType = 'sadistic'
  125. end
  126. if bodyTypeRand <= 1:
  127. $bodyType = 'skinny'
  128. elseif bodyTypeRand >= 2 and bodyTypeRand <= 4:
  129. $bodyType = 'slim'
  130. elseif bodyTypeRand >= 5 and bodyTypeRand <= 6:
  131. $bodyType = 'muscular'
  132. elseif bodyTypeRand >= 7:
  133. $bodyType = 'fat'
  134. end
  135. if heightTypeRand <= 1:
  136. $heightType = 'small'
  137. elseif heightTypeRand >= 2 and heightTypeRand <= 4:
  138. $heightType = 'average'
  139. elseif heightTypeRand >= 5:
  140. $heightType = 'tall'
  141. end
  142. if customerAge <= 18:
  143. $ageType = 'very young'
  144. elseif customerAge > 18 and customerAge <= 30:
  145. $ageType = 'young'
  146. elseif customerAge > 30 and customerAge <= 45:
  147. $ageType = 'middle aged'
  148. elseif customerAge > 45 and customerAge <= 60:
  149. $ageType = 'elderly'
  150. elseif customerAge > 60 and customerAge <= 80:
  151. $ageType = 'old'
  152. elseif customerAge > 80:
  153. $ageType = 'very old'
  154. end
  155. if buyout = 1:
  156. $bName = 'Leonid'
  157. $bSurname = 'Nosov'
  158. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorekneel1.jpg"></center>'
  159. 'As you are led to the room, as usual, you see the man standing opposite of you.'
  160. 'Right away you can see that he is just another bastard coming here to use your <<age>> years young body.'
  161. 'Your master leaves you in the center of the room. You are still kneeling with the leash attached to your collar.'
  162. 'As the door closes behind him, the customer slowly turns, so you can finally see his face.'
  163. act 'Look at his face':gt 'abductionCustomer', 'abdCustomer-buyout1'
  164. else
  165. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorekneelmaster.mp4"></video></center>'
  166. 'The customer is a <<$heightType>> <<$bodyType>> <<$raceType>>.'
  167. 'Kneeling in front of him, you look up into his eyes and see a <<$charType>> look there.'
  168. 'You then look down and see his crotch directly in front of you. It''s obvious that he has something <<$dick_girth>> in his pants.'
  169. end
  170. if pcs_vag = 0:
  171. 'Your master tells the customer, "So this is her. You can be sure she''s a virgin as her hymen is intact."'
  172. '"I believe you. She''s not the first virgin slut that you''ve delivered to me, is she?"'
  173. '"No, she definitely is not! How many has it been so far, four, five?"'
  174. '"In your establishment, I have paid for six virgins in total. This one is the seventh.'
  175. if age < 17:
  176. '"Good number. Good slut, too. She''s only <<age>> years old. I suppose her vagina will be especially tight."'
  177. '"That''s how I like it."'
  178. else
  179. '"Good number. She''s a 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 working to pleasure him. You decide to:'
  186. act 'Show him your beautiful body':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. '"You do realize that the police have already given up searching for you. 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. Despite the unexpected situation, you keep kneeling with your back straight and breasts jutting forward, as you have been trained so your customers have 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 consider how to reply:'
  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''d rather you didn''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 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, do you slut? I own you now. I''ve bought you. I paid for you. You are now my property. You are... my slavegirl."'
  226. 'Surprised. you can only think, "it''s better to be used by one man than by many random ones."'
  227. 'You are still naked and collared as he leads you outside to his car. You are forced to get into his 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 get straight to business."'
  233. 'He slaps your face so hard that you lose your balance and fall face first onto 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. 'However, <<$bName>> seems to be as perverted as all the other men that have used you previously.'
  236. 'Stepping above you as you helplessly lie on the floor, he opens his zipper to pull out his dick.'
  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 with <<$bName>>''s cum still flowing out of your gaping ass.'
  254. 'He goes through the door. You can hear an echo of your master''s and his voices discussing something you can''t make out.'
  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 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, do you slut? I own you now. I''ve bought you. I paid for you. You are now my property. You are... my slavegirl."'
  259. 'Surprised you can only think, "it''s better to be used by one man than by many random ones."'
  260. 'You are still naked and collared as he leads you outside to his car. You are forced to get into his 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 inside of the trunk, you can only hear the sound of the engine and the pavement below as he drives you somewhere unknown.'
  266. 'After an unknown amount of time, the sound of the pavement stops, and the engine shuts off, leaving only silence.'
  267. '<<$bName>> opens the trunk. Your eyes blink to adjust to the dimly lit area, and you realize that you are in a parking garage. There are no open spaces between the current level and the above one, so you think to yourself that this is underground.'
  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 while you are on all fours up the stairs. You both exit through the upstairs stairwell door into a room that appears to be 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 your body starts to shiver.'
  276. '"Don''t worry slut, because this will only hurt a lot," the customer says. He is clearly enjoying himself.'
  277. 'You run to the far corner of the room. It''s a futile attempt to get as far away from him as you can.'
  278. 'He walks up to you and grabs you by the hair. He drags you as a painful, terrified scream emits from your throat to something that looks like a bench in the center of the room.'
  279. 'He forcefully yanks your hair to make you climb onto the bench like structure. He punches you in the stomach, and you collapse. He flips you over onto your back and binds your arms above your head with handcuffs. He follows with putting your legs into stirrups then follows with legcuffs to hold you in place. You realize that this gives him unlimited access to your virgin pussy.'
  280. 'Your head is bound so that you have an unobstructed view on your own pussy. This is to ensure that you watch as he tears your terrified cunt 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 slowly undress, with his back to you to enhance your terror. With a clink on the floor, you can tell that his pants, holding a belt, have hit the concrete floor. He slowly turns around to face you, and you can finally see his naked body. His cock sways for a moment before stopping in front of your face.'
  289. '"With renewed terror, you start to cry at the sight of his <<dick>> cm thick <<$dick_girth>> phallus."'
  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 to jerk his cock, all the while looking at your eyes then to your bound and helpless nude body. The sight slowly makes 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. 'He finally reaches for you and brings the tip of his phallus to the entrance of your virgin pussy.'
  304. 'He covers his <<$dick_girth>> member in a thick layer of lube then starts to slowly press against the opening of your vagina.'
  305. 'With his hands, he spreads your pussy lips apart to help ease the entry for his member.'
  306. '"Now behold girl. You are about to become a woman," he exclaims.'
  307. 'He pushes it in with a single long thrust that almost hits the bottom of your virgin cunt.'
  308. 'A terrible pain rips through your body, beginning where your hymen was and spreading like a fire. A trickle of red blood runs 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 pulls his cock back out and shows it to you, enjoying the expression you make seeing your blood coating it.'
  319. 'He then slams his cock back into you. The pain you feel is renewed while he grunts in pleasure.'
  320. 'He feels accomplishment in his handiwork and sneers at you. He brutally thrusts into your pussy over and over again. He often hits 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. You will become the breeder you were always supposed to be."'
  332. 'As renewed tears streams down your cheeks, he spurts his <<$cumType>> amount of sperm <<dick>> cm deep inside your pussy. You can feel it hit your cervix, and you shudder at the thought of you getting pregnant from this monster.'
  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. He is enjoying the sight of your cries and the despair in your situation.'
  340. '"As his <<$dick_girth>> member becomes flaccid, it slides free of your abused pussy. He reaches out of sight and brings into view a dildo that looks almost exactly like his own dick. You think that it has probably been modeled from it."'
  341. '"My cum that I just gave you is not meant to just drip out of you. You will receive another gift from me, one that will keep my present inside you."'
  342. 'With these words, he lifts your ass in the air so the cum doesn''t flow out then brutally shoves the dildo, shaped after his <<dick>> cm <<$dick_girth>> cock, all the way inside you. The dildo is pushed so deep into you that only its brightly coloured base peeks out of your abused hole.'
  343. 'He then takes some pieces of duct tape and wraps them over your pussy to cover your lips and keep the dildo firmly stuck inside.'
  344. 'He uncuffs you from the bench, but pulls your arms behind your back. This is 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. You are trying to shake the <<$dick_girth>> dildo out of you.'
  357. '"Stop it... girl. You''ll just make it worse."'
  358. 'He grabs your leash and leads you back down to your cell.'
  359. 'As you follow your master, the plugged <<$dick_girth>> dildo moves inside you causing you further 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. Your vagina is still plugged by 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. It points so he has good access to both your ass and your ruthlessly plugged deflowered pussy.'
  383. 'Your master kneels down to remove the duct tape with a single pull. You yelp in pain from the tiny pubic hairs that get ripped out with the tape. He puts his fingers inside you to grab the stuck dildo.'
  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 as the cool air flows in to fill the void.'
  386. 'Your master unties you then adjusts your leash. As he leaves, he tells you, "Be glad that you can be deflowered only once you 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. It lands directly onto 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. You image what terrible things this sizable 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 level and you know you can''t safely 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 could 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 breasts and jiggling them.'
  443. 'After some time of 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 level and you know you can''t safely swallow it whole.'
  454. else
  455. 'Even though his dick is <<$dick_girth>>, you know you could 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. He''s obviously not happy that all you can do is suck the tip of his cock.'
  460. else
  461. 'Your customer is starting to get very grumpy. He''s obviously 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 which pulls his <<$dick_girth>> member out of your mouth.'
  464. 'With an angry look in his eyes, he slaps your face very hard, which knocks you to the cold floor.'
  465. 'He jumps on top of your chest, and with a piece of rope, he ties you up.'
  466. '"Even here, one must train the slaves himself" he shouts at you. He forces his <<$dick_girth>> dick all the way down your throat.'
  467. 'With your hands tied up, you are unable to resist. 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. 'Your 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. 'Your customer seems pleased by your sucking skills, so you continue to tease the tip of his <<$dick_girth>> cock. You look at him with as much sensual abandon as you can muster under the present conditions.'
  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. 'Despite knowing you will probably hurt yourself, you force yourself on his <<dick>> cm long cock all the way down to the balls.'
  514. 'You start gagging, and saliva freely flows from your stuffed mouth. Your 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>> growls and suddenly pulls his cock out of your mouth.'
  528. else
  529. 'Your customer growls 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. He shows little to no concern for your wellbeing.'
  533. 'You start to gag as he keeps pushing his member deep inside you. Sometimes this leaves 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 his 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 then steps back a bit. He looks 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 rhetorical question or not.'
  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. This knocks you down to the cold floor. Tears erupt from your eyes in response.'
  570. '"You thought I really was interested in your slutty opinion?" He questions, 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. '"I will fuck you however I want, so shut up bitch!"'
  640. if hardChance <= 50:
  641. if vagOrAss = 0:
  642. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckRough'
  643. else
  644. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalRough'
  645. end
  646. else
  647. if vagOrAss = 0:
  648. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckNormal'
  649. else
  650. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnal'
  651. end
  652. end
  653. end
  654. end
  655. if $ARGS[0] = 'abdCustomer-fuckAnal':
  656. pcs_ass += 1
  657. gs 'stat'
  658. i = rand(1,5)
  659. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanal<<i>>.mp4"></video></center>'
  660. 'The customer puts some lubricant on his <<$dick_girth>> cock and penetrates your ass.'
  661. 'He doesn''t care much about your feelings, but he''s also not exactly hurting you on purpose.'
  662. *nl
  663. if dick > pcs_ass:
  664. pain['asshole'] += assDMG
  665. pain['tummy'] += assDMG
  666. gs 'arousal', 'anal', 30, 'sub', 'rough'
  667. gs 'stat'
  668. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  669. else
  670. 'You have no problems accommodating his <<$dick_girth>> member.'
  671. gs 'arousal', 'anal', 30, 'sub'
  672. gs 'stat'
  673. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  674. end
  675. end
  676. if $ARGS[0] = 'abdCustomer-fuckAnalRough':
  677. pcs_ass += 2
  678. gs 'arousal', 'anal', 30, 'sub', 'rough', 'bound'
  679. gs 'stat'
  680. i = rand(1,5)
  681. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanalrough<<i>>.mp4"></video></center>'
  682. if buyout = 1:
  683. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefuckanalroughleonid1.jpg"></center>'
  684. '<<$bName>> takes you by your leash and positions your body as if it''s just meat to be used.'
  685. else
  686. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  687. end
  688. 'What comes next is an excruciatingly rough anal fuck that clearly shows he has no regard for all the pain you have to endure.'
  689. *nl
  690. if assDMG <= 0 :
  691. 'Fortunately, his <<$dick_girth>> dick is not enough to damage your anus and intestines, no more than usual, anyway.'
  692. if buyout = 1:
  693. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  694. else
  695. if $charType = 'sadistic':
  696. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  697. else
  698. act 'Continue':gt 'abductionCustomer', 'abdCustomer-cumGate'
  699. end
  700. end
  701. elseif assDMG <= 2:
  702. 'His <<$dick_girth>> dick is too big for you and you suffer a lot of stretching pain as it bumps against your intestinal walls.'
  703. pain['asshole'] += assDMG
  704. gs 'stat'
  705. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  706. else
  707. 'His <<$dick_girth>> dick is insanely big for you.'
  708. 'The tip of his cock repeatedly hits your intestinal walls and stretches your anus to insane proportions.'
  709. 'You will probably not be able to close your anus for a while.'
  710. pain['asshole'] += assDMG
  711. pain['tummy'] += assDMG
  712. gs 'stat'
  713. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckAnalDeep'
  714. end
  715. end
  716. if $ARGS[0] = 'abdCustomer-fuckAnalDeep':
  717. minut += 15
  718. pcs_ass += 1
  719. gs 'stat'
  720. i = rand(1, 1)
  721. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckanaldeep<<i>>.mp4"></video></center>'
  722. 'His member is <<$dick_girth>> and your ass is unable to accommodate it.'
  723. if $charType = 'sadistic':
  724. *nl
  725. 'But he doesn''t care, even though he is obviously aware, and he fucks you furiously hard.'
  726. '"How do like my <<$dick_girth>> cock inside you bitch?"'
  727. '"Is it deep enough for you, or should I push a bit more?"'
  728. 'Obviously, he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  729. *nl
  730. end
  731. 'With every stroke of his dick deep inside your intestines, you feel as if it''s your very stomach being poked by it.'
  732. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  733. *nl
  734. if buyout = 1:
  735. 'After about a half an hour of deep anal banging, <<$bName>> is about to cum.'
  736. else
  737. 'After about a half an hour of deep anal banging, the man is about to cum.'
  738. end
  739. if (endPunishment = 1 or $charType = 'sadistic') and buyout = 0:
  740. '"Now, I will feed you my seed you unruly anal slave."'
  741. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  742. elseif buyout = 1:
  743. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  744. else
  745. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  746. end
  747. end
  748. if $ARGS[0] = 'abdCustomer-fuckNormal':
  749. pcs_vag += 1
  750. gs 'stat'
  751. i = rand(1,5)
  752. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefucknormal<<i>>.mp4"></video></center>'
  753. 'The customer penetrates your pussy and fucks you.'
  754. if vagDMG <= 0:
  755. 'He''s not gentle, but it isn''t a very rough fuck either.'
  756. 'You have no problems accommodating his <<$dick_girth>> dick.'
  757. 'At some moments, you almost seem to enjoy it.'
  758. gs 'arousal', 'vaginal', 30, 'sub'
  759. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  760. elseif vagDMG <= 2:
  761. 'His <<$dick_girth>> dick is too big for you, and you suffer a lot of stretching pain as it bumps against your vaginal walls.'
  762. pain['vaginal'] += vagDMG
  763. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  764. gs 'stat'
  765. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  766. else
  767. 'His <<$dick_girth>> dick is insanely big for you.'
  768. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  769. pain['vaginal'] += vagDMG
  770. pain['cervix'] += vagDMG
  771. gs 'arousal', 'vaginal', 30, 'sub', 'rough'
  772. gs 'stat'
  773. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  774. end
  775. end
  776. if $ARGS[0] = 'abdCustomer-fuckRough':
  777. pcs_vag += 2
  778. gs 'stat'
  779. i = rand(1,5)
  780. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckrough<<i>>.mp4"></video></center>'
  781. 'The man takes you by your leash and positions your body as if it''s just meat to be used.'
  782. 'What comes next is an excruciatingly rough fuck that clearly shows he has no regard for all the pain you have to endure.'
  783. if vagDMG <= 0:
  784. 'Fortunately, his <<$dick_girth>> dick is not enough to damage your vagina, no more than usual, anyway.'
  785. gs 'arousal', 'vaginal', 30, 'sub', 'bound'
  786. if $charType = 'sadistic':
  787. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  788. else
  789. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  790. end
  791. elseif vagDMG <= 2:
  792. 'His <<$dick_girth>> dick is too big for you, and you suffer a lot of stretching pain as it bumps against your vaginal walls.'
  793. pain['vaginal'] += vagDMG
  794. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  795. gs 'stat'
  796. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  797. else
  798. 'His <<$dick_girth>> dick is insanely big for you.'
  799. 'The tip of his cock even penetrates your cervix, or at least it seems like it to you. The pain is almost unbearable!'
  800. 'He notice this too, realizing it''s why you''re groaning so loudly.'
  801. 'Enjoying your suffering, he pushes his dick even deeper inside, and you squeal like a pig.'
  802. pain['vaginal'] += vagDMG * 2
  803. pain['cervix'] += vagDMG * 2
  804. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'rough'
  805. gs 'stat'
  806. act 'Continue':gt 'abductionCustomer', 'abdCustomer-fuckDeep'
  807. end
  808. end
  809. if $ARGS[0] = 'abdCustomer-fuckDeep':
  810. minut += 15
  811. pcs_ass += 1
  812. gs 'stat'
  813. i = rand(1, 5)
  814. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefuckdeep<<i>>.mp4"></video></center>'
  815. 'His member is <<$dick_girth>> and your vagina is unable to accommodate it.'
  816. if $charType = 'sadistic':
  817. *nl
  818. 'But he doesn''t care about that, even though he is obviously aware of it, and fucks you furiously hard.'
  819. '"How do like my <<$dick_girth>> cock inside you bitch?"'
  820. '"Is it deep enough for you, or should I push a bit more?"'
  821. '"Do you feel me entering your cervix?"'
  822. 'Obviously he''s enjoying this a lot. Doing this is probably the reason he came to this slave house.'
  823. *nl
  824. end
  825. 'With every stroke of his dick deep inside your vagina, you feel as if it''s your very cervix being penetrated.'
  826. 'A large bulge is noticeable every time he shoves it more than half the way inside you.'
  827. *nl
  828. 'After about half an hour of deep vaginal banging, the man is about to cum.'
  829. if endPunishment = 1 or $charType = 'sadistic':
  830. '"Now, I will feed you my seed, unruly fuck slave."'
  831. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  832. else
  833. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumGate'
  834. end
  835. end
  836. if $ARGS[0] = 'abdCustomer-cumGate':
  837. if endPunishment = 1:
  838. '"Now, I will feed you my seed, unruly slave slut."'
  839. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  840. elseif buyout = 1:
  841. '"Now <<$pcs_firstname>> you will be filled with my seed for the first time, so be sure to cherish the memory of this moment!"'
  842. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cumAss'
  843. else
  844. '"So where do you want me to put the deposit, love?"'
  845. act 'Be silent':gt 'abductionCustomer', 'abdCustomer-cum'
  846. act 'Ask him to cum on your face':gt 'abductionCustomer', 'abdCustomer-cumFace'
  847. gs 'willpower', 'cum_inside', 'self'
  848. if will_cost <= pcs_willpwr:
  849. act 'Ask him to cum inside your pussy (<<will_cost>> Willpower)':
  850. gs 'willpower', 'cum_inside', 'self'
  851. gs 'willpower', 'pay', 'self'
  852. gs 'stat'
  853. gt 'abductionCustomer', 'abdCustomer-cumPussy'
  854. end
  855. else
  856. 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>'
  857. end
  858. gs 'willpower', 'cum_inside_anal', 'self'
  859. if will_cost <= pcs_willpwr:
  860. act 'Ask him to cum inside your ass (<<will_cost>> Willpower)':
  861. gs 'willpower', 'cum_inside_anal', 'self'
  862. gs 'willpower', 'pay', 'self'
  863. gs 'stat'
  864. gt 'abductionCustomer', 'abdCustomer-cumAss'
  865. end
  866. else
  867. 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>'
  868. end
  869. gs 'willpower', 'swallow', 'self'
  870. if will_cost <= pcs_willpwr:
  871. act 'Ask him to cum into your mouth (<<will_cost>> Willpower)':
  872. gs 'willpower', 'swallow', 'self'
  873. gs 'willpower', 'pay', 'self'
  874. gs 'stat'
  875. gt 'abductionCustomer', 'abdCustomer-cumMouth'
  876. end
  877. else
  878. 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>'
  879. end
  880. end
  881. end
  882. if $ARGS[0] = 'abdCustomer-cum':
  883. cumRand = rand(1,100)
  884. if cumRand > 75 and cumRand <= 100:
  885. 'He decides to cum inside your vagina.'
  886. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumPussy'
  887. elseif cumRand > 50 and cumRand <= 75:
  888. 'He decides to cum inside your ass.'
  889. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumAss'
  890. elseif cumRand > 25 and cumRand <= 50:
  891. 'He decides to cum into your mouth.'
  892. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumMouth'
  893. else
  894. 'He decides to cum on your face.'
  895. act 'Endure it':gt 'abductionCustomer', 'abdCustomer-cumFace'
  896. end
  897. end
  898. if $ARGS[0] = 'abdCustomer-cumPussy':
  899. i = rand(1,5)
  900. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumpussy<<i>>.mp4"></video></center>'
  901. if vagDMG > 0:
  902. '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.'
  903. 'His bursting cum penetrates through the cervix directly into your womb, which causes you both pain and a weird warm sensation.'
  904. pain['cervix'] += vagDMG
  905. gs 'stat'
  906. end
  907. *nl
  908. if cumVol = 3:
  909. 'With his <<$dick_girth>> dick buried inside your pussy, the customer delivers his <<$cumType>> amount of sperm inside you.'
  910. 'When he takes it out, some of the sperm drips out of your cunt.'
  911. elseif cumVol = 4:
  912. 'With his <<$dick_girth>> dick buried deep inside your pussy, his tip touches your cervix.'
  913. 'He pumps your vagina full of his <<$cumType>> amount of sperm.'
  914. 'As he pulls his cock out, a large portion of the cum forcefully squirts out of you.'
  915. elseif cumVol >= 5:
  916. '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.'
  917. 'Then, as he shoots his <<$cumType>> amount of cum inside you, a lot of it goes directly to your womb.'
  918. 'It feels painful, but the warm sensation is weird and nothing like what you have felt before.'
  919. 'You feel as if your inner parts are stretching from the <<$cumType>> amount of cum being pumped into you.'
  920. *nl
  921. 'When he pulls his <<$dick_girth>> cock out the lower part of your belly bulges noticeably.'
  922. 'The customer looks at it with joy then punches at your bulge with his fist.'
  923. 'The cum bursts out of your pussy as if it shot out from an uncorked champagne bottle.'
  924. pain['cervix'] += 20
  925. pain['tummy'] += 40
  926. else
  927. '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 your pussy.'
  928. end
  929. pcs_vag += 1
  930. stat['vaginal'] += 1
  931. gs 'cum_call', 'pussy', 'customer', svol,'', spot
  932. gs 'stat'
  933. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  934. end
  935. if $ARGS[0] = 'abdCustomer-cumAss':
  936. i = rand(1,5)
  937. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumass<<i>>.mp4"></video></center>'
  938. if assDMG > 0:
  939. 'As he cums inside your anus, you can feel the banging of his <<$dick_girth>> cock against your intestinal wall.'
  940. 'A moving bulge is visible on your otherwise flat stomach as his phallus moves inside you.'
  941. 'His bursting cum fills you, and it seems as if it went backwards up to your very stomach.'
  942. pain['asshole'] += assDMG
  943. gs 'stat'
  944. end
  945. if cumVol = 3:
  946. 'His <<$dick_girth>> member is buried in your intestines.'
  947. if buyout = 1:
  948. 'When <<$bName>> shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  949. else
  950. 'When he shoots his <<$cumType>> amount of cum, you can feel the warmth spreading inside you...'
  951. end
  952. 'After his dick is removed, part of the sperm drips out of your gaping hole.'
  953. elseif cumVol = 4:
  954. 'His <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines sometimes even hitting your intestinal walls.'
  955. if buyout = 1:
  956. 'When <<$bName>> shoots his <<$cumType>> amount of cum inside, you can feel your stomach grow larger...'
  957. else
  958. 'When he shoots his <<$cumType>> amount of cum inside, the lower part of your belly bulges noticeably...'
  959. end
  960. 'You feel very full, even after he pulls his <<$dick_girth>> dick out of you.'
  961. 'After a few seconds, a large portion of his <<$cumType>> amount of cum spurts out of you as if from a garden hose.'
  962. elseif cumVol >= 5:
  963. if buyout = 1:
  964. '<<$bName>>''s <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines with each stroke hitting your intestinal walls forcefully.'
  965. else
  966. 'The customer''s <<$dick_girth>> member is buried <<dick>> centimeters deep inside your intestines with each stroke hitting your intestinal walls forcefully.'
  967. end
  968. 'You feel an increasing amount of pressure and stretching pain as he pumps your intestines with a <<$cumType>> amount of cum.'
  969. *nl
  970. 'When he pulls his <<$dick_girth>> cock out, the lower part of your belly bulges noticeably.'
  971. 'He looks at the bulge with joy then punches at it with his fist.'
  972. 'The cum burst out of your anus as if it shot out from an uncorked champagne bottle.'
  973. pain['tummy'] += 20
  974. gs 'stat'
  975. else
  976. if buyout = 1:
  977. '<<$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.'
  978. else
  979. '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.'
  980. end
  981. end
  982. if buyout = 1:
  983. gs 'npcgeneratec', 0, $bName, rand(18,34)
  984. gs 'boyStat', $npclastgenerated
  985. else
  986. gs 'npcgeneratec', 0, 'customer', rand(18,34)
  987. gs 'boyStat', $npclastgenerated
  988. end
  989. pcs_ass += 1
  990. gs 'cum_call', 'anus', $boy
  991. stat['anal'] += 1
  992. gs 'stat'
  993. if buyout = 1:
  994. act 'Continue':gt 'abductionCustomer', 'abdCustomer-buyout4'
  995. else
  996. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  997. end
  998. end
  999. if $ARGS[0] = 'abdCustomer-cumMouth':
  1000. i = rand(1, 5)
  1001. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecummouth<<i>>.mp4"></video></center>'
  1002. if throatDMG > 0:
  1003. 'Your aching throat is penetrated again.'
  1004. 'He buries his <<$dick_girth>> cock to the hilt inside you.'
  1005. 'While he''s cumming directly down your gullet, you can feel the pulsing of his member. It painfully stretches your already sore throat.'
  1006. pain['throat'] += throatDMG
  1007. gs 'stat'
  1008. end
  1009. if cumVol = 3:
  1010. 'His <<$cumType>> amount of cum fills your gullet.'
  1011. elseif cumVol = 4:
  1012. 'His <<$cumType>> amount of cum fills your gullet and drips down into your stomach.'
  1013. 'You feel as if you just ate a bunch of biscuits.'
  1014. pcs_energy += 50
  1015. pcs_hydra += 40
  1016. elseif cumVol => 5:
  1017. 'You are being pumped like a water bag. His <<$cumType>> amount of jizz fills your stomach and gullet.'
  1018. 'You probably won''t need another meal today...'
  1019. pcs_energy += 100
  1020. pcs_hydra += 90
  1021. else
  1022. 'The customer shoots his <<$cumType>> amount of cum inside your mouth and down your gullet.'
  1023. end
  1024. mouth += 1
  1025. gs 'cum_call', 'mouth', 'customer'
  1026. stat['throat'] += 1
  1027. gs 'stat'
  1028. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1029. end
  1030. if $ARGS[0] = 'abdCustomer-cumFace':
  1031. i = rand(1, 5)
  1032. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorecumface<<i>>.mp4"></video></center>'
  1033. 'He takes his <<$dick_girth>> dick and points it towards your face.'
  1034. if cumVol = 3:
  1035. 'A <<$cumType>> amount of sperm lands all over your face.'
  1036. elseif cumVol = 4:
  1037. 'A <<$cumType>> amount of sperm lands all over your face, some even in your eyes and hair.'
  1038. elseif cumVol => 5:
  1039. 'A <<$cumType>> amount of sperm lands all over your face, in your eyes, hair, everywhere.'
  1040. 'There is so much cum that you have a solid layer on your face, as if you were wearing a cosmetic mask.'
  1041. else
  1042. 'A <<$cumType>> cum volume is spread around your mouth and cheeks.'
  1043. end
  1044. 'The customer seems content with his creation and looks at you with a weird satisfaction.'
  1045. mouth += 1
  1046. gs 'cum_call', 'face', 'customer'
  1047. stat['mouth'] += 1
  1048. gs 'stat'
  1049. act 'Continue':gt 'abductionCustomer', 'abdCustomer-end'
  1050. end
  1051. if $ARGS[0] = 'abdCustomer-end':
  1052. if endPunishment = 1:
  1053. 'The customer goes to the bathroom and then calls for your master.'
  1054. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1055. elseif buyout = 1:
  1056. '<<$bName>> leaves you lying on the ground, his cum still dripping out of your ass, and calls for your master.'
  1057. act 'Continue':gt 'abductionCustomer', 'abdCustomer-endPunishment'
  1058. else
  1059. 'The customer goes to the bathroom, and you are immediately lead back to the basement.'
  1060. act 'Go back':gt 'abduction', 'abdRoom'
  1061. end
  1062. end
  1063. if $ARGS[0] = 'abdCustomer-endPunishment':
  1064. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/kneelingslave1.jpg"></center>'
  1065. iif(buyout = 1, $bName, 'The customer') + ' tells your master how unruly you were and that further training should be applied to you.'
  1066. 'He then leaves.'
  1067. 'Kneeling, you look up at your master only to see his grim face. You can tell something bad will happen.'
  1068. act 'Be led back to the basement':gt 'abduction', 'abdFailedCustomer'
  1069. end
  1070. --- abductionCustomer ---------------------------------