abduction.qsrc 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. # abduction
  2. !2021/05/08
  3. $location_type = 'private'
  4. $loc_arg = 'start'
  5. $loc = 'abduction'
  6. if $ARGS[0] = 'start':
  7. *clr & cla
  8. menu_off = 1
  9. i = rand(1, 2)
  10. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/girltocar<<i>>.jpg"></center>'
  11. 'You suddenly hear what sounds like someone coming up to you from behind, but before you can turn and look, you feel something hit your head hard. You stumble as your vision goes black...'
  12. act 'Pass out':gt 'abduction', 'abdCarTrunk'
  13. end
  14. if $ARGS[0] = 'abdCarTrunk':
  15. *clr & cla
  16. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/trunkint1.jpg"></center>'
  17. 'You wake up in a very tight, dark place. You quickly realize that you''re in the trunk of a moving car.'
  18. 'You try to kick the walls with your feet, but after a while you can see it''s pointless.'
  19. act 'Continue':gt 'abduction', 'abdRoomFirstEntry'
  20. end
  21. if $ARGS[0] = 'abdRoomFirstEntry':
  22. *clr & cla
  23. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/downstairs1.jpg"></center>'
  24. 'The car stops and you hear the sound of someone walking outside. Suddenly... the trunk opens up.'
  25. 'Before your eyes adjust to the bright flow of daylight, you''re hoisted up by a strong man and carried into a house.'
  26. 'He''s carrying you downstairs.'
  27. act 'Continue':gt 'abduction', 'abdRoomFirstChaining'
  28. end
  29. if $ARGS[0] = 'abdRoomFirstChaining':
  30. *clr & cla
  31. i = rand(1, 5)
  32. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/shackled<<i>>.jpg"></center>'
  33. 'You''re thrown onto a dirty bed. The man forcibly undresses you before shackling your wrists and ankles. He then slaps a collar around your neck before chaining you to the wall.'
  34. '"You must have really pissed someone off girl." he says.'
  35. '"What is this place? What are you going to do to me?" you ask.'
  36. '"This is where girls are brought to be trained as sex slaves!"'
  37. '"... but... how... no..."'
  38. '"Shut up slut. Usually, we torture you for fun and for as long as we want. Once you break, we sell you to the highest bidder."'
  39. '"You cannot do this to me! It''s illegal!'
  40. '"Ha! Who do you think are our best customers? Politicians, police officers, businessmen... We have our cover, so you should shut up and get used to it!"'
  41. 'The man leaves without saying another word as you tearfully sob and yell for him to come back...'
  42. gs 'underwear', 'remove'
  43. painkiller_bak = painkiller
  44. prezik_bak = prezik
  45. vitamin_bak = vitamin
  46. kosmetica_bak = kosmetica
  47. lipbalm_bak = lipbalm
  48. tampon_bak = tampon
  49. shampoo_bak = shampoo
  50. stanok_bak = stanok
  51. deodorant_bak = deodorant
  52. painkiller = 0
  53. prezik = 0
  54. vitamin = 0
  55. kosmetica = 0
  56. lipbalm = 0
  57. tampon = 0
  58. shampoo = 0
  59. stanok = 0
  60. deodorant = 0
  61. tabletkishot = rand(84,91)
  62. shotdays = 84
  63. tabletkicheck = 2
  64. pillcon = 40000
  65. broken = 0
  66. rapeCount = 0
  67. tortureCount = 0
  68. money = 0
  69. gs 'stat'
  70. gs 'clothing', 'strip'
  71. act 'Continue':gt 'abduction', 'abdRoom'
  72. end
  73. if $ARGS[0] = 'abdRoom':
  74. $loc = 'abduction'
  75. $loc_arg = 'abdRoom'
  76. $menu_loc = 'abduction'
  77. $menu_arg = 'abdRoom'
  78. menu_off = 0
  79. *clr & cla
  80. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/basement1.jpg"></center>'
  81. 'You are in a dark basement that has only one window and some lights. You are chained to the wall like a dog, a collar wrapped tightly around your neck while cold metal shackles also dig painfully into your wrists and ankles.'
  82. 'You can only move a few meters from the wall to reach several things left for you by your abductors.'
  83. act 'Look around':gt 'abduction', 'abdFood'
  84. eventChance = rand(1,100)
  85. if eventChance <= 60:
  86. act 'Take a nap (4:00)':gt 'abduction', 'abdSomeoneComing'
  87. else
  88. act 'Take a nap (4:00)':gt 'abduction', 'abdSleep'
  89. end
  90. end
  91. if $ARGS[0] = 'abdSomeoneComing':
  92. *clr & cla
  93. menu_off = 1
  94. minut += 1
  95. gs 'stat'
  96. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/downstairs2.jpg"></center>'
  97. 'You hear the sounds of footsteps that get louder with every step that comes closer to you. Their sound begins at the top of the stairs.'
  98. if pcs_leghair > 3 or pcs_pubes > 3:
  99. minut += 20
  100. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/shave1.jpg"></center>'
  101. 'You are forced to shave yourself.'
  102. 'Obviously, your captors do not fancy women with body hair.'
  103. 'You are watched the whole time, probably so you don''t cut your arteries or something similar.'
  104. pcs_pubes = 0
  105. pcs_leghair = 0
  106. pcs_horny += 5
  107. end
  108. if broken = 0 and rapeCount = 0 and tortureCount = 0 and examed = 0:
  109. *nl
  110. 'The man comes up to you. He grabs your chain and forcibly puts a blindfold on your head to cover your eyes.'
  111. 'He leads you up the stairs as you feel a breath of fresh air that sensually caresses your bare skin.'
  112. act 'Continue':gt 'abduction', 'abdExamStart'
  113. else
  114. if broken = 0:
  115. 'You fearfully back away from the man and curl up against the wall, your body trembling in fear of what is going to happen next.'
  116. act 'Cower in fear':gt 'abduction', 'abdRape'
  117. if rapeCount >= 5: act 'Plead that you cannot take any more':gt 'abduction', 'abdBreak1'
  118. else
  119. end
  120. buyoutChance = (broken + tortureCount + rapeCount + abdCustomerCount) - 20
  121. saleChance = (broken + tortureCount + rapeCount + abdCustomerCount) - 10
  122. if broken > 0:
  123. saleChanceRand = rand(1,100)
  124. customerChance = rand(1,100)
  125. painkillerChance = rand(1,100)
  126. buyoutChanceRand = rand(1,100)
  127. if broken < 10:
  128. act 'Welcome back, Master.':gt 'abduction', 'abdBrokenAsk'
  129. elseif (broken >= 10 and abdTools = 0):
  130. act 'Welcome back, Master.':gt 'abduction', 'abdBrokenGiveTools'
  131. else
  132. if customerChance <= 50:
  133. act 'Welcome back, Master':gt 'abductionCustomer', 'abdCustomerGate'
  134. abdCustomerCount += 1
  135. elseif abdCustomerCount > 5 and buyoutChanceRand <= (2 * buyoutChance):
  136. act 'Welcome back, Master':gt 'abductionCustomer', 'abdCustomerGateBuyout'
  137. else
  138. if abdCustomerCount > 5 and saleChanceRand <= (2 * saleChance):
  139. 'Master: "I have some good news for you slave."'
  140. act 'Yes Master?':gt 'abduction', 'abdBeSold'
  141. else
  142. if painkillerChance <= 30:
  143. act 'Welcome back, Master':gt 'abduction', 'abdBrokenGivePainkiller'
  144. else
  145. act 'Welcome back, Master':gt 'abduction', 'abdBrokenAsk'
  146. end
  147. end
  148. end
  149. end
  150. end
  151. end
  152. end
  153. if $ARGS[0] = 'abdExamStart':
  154. *clr & cla
  155. menu_off = 1
  156. minut += 5
  157. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/examroom.jpg"></center>'
  158. 'Your blindfold is removed. You find yourself in a small room that''s painted white. The light is very bright and blinds you to the point where you can barely see.'
  159. 'As your eyes adjust, you can see that it is some kind of examination room. It distinctly reminds you of a gynecologist''s office.'
  160. '"Sit." the man sternly orders.'
  161. gs 'willpower', 'misc', 'resist', 'hard'
  162. if will_cost <= pcs_willpwr:
  163. act 'Resist (<<will_cost>> Willpower)':
  164. gs 'willpower', 'misc', 'resist', 'hard'
  165. gs 'willpower', 'pay', 'resist'
  166. gs 'stat'
  167. gt 'abduction', 'abdExamResist'
  168. end
  169. else
  170. act 'Resist (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  171. end
  172. act 'Obey':gt 'abduction', 'abdExamObey'
  173. end
  174. if $ARGS[0] = 'abdExamResist':
  175. *clr & cla
  176. menu_off = 1
  177. '<center><video autoplay loop src="images/locations/shared/abduction/examslap.mp4"></video></center>'
  178. 'Terrified of what they''ll do, you start yelling and clawing at your collar, trying desperately to escape.'
  179. 'However, your captor''s strength, along with your tightly adjusted cuffs, make your attempt to escape futile.'
  180. 'He yanks roughly on your chain, which pulls you to the ground in front of him. He slaps your face hard and leaves it stinging with a red handmark across your cheek.'
  181. '"You''re only making it harder bitch!!" he yells in your face, before effortlessly picking you up and slamming you into the chair. He removes your shackles before tightly restraining you.'
  182. 'He then calmly sits down in a chair over in the far corner of the room.'
  183. act 'Continue':gt 'abduction', 'abdExam1'
  184. end
  185. if $ARGS[0] = 'abdExamObey':
  186. *clr & cla
  187. menu_off = 1
  188. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/examsit.jpg"></center>'
  189. 'Like the obdient slave you obviously have just become, you willingly climb up onto the chair and sit there. You wonder what perverse things are going to happen to you.'
  190. 'The man ties you up anyway, probably to make sure you don''t try to escape after they start. This makes you even more nervous. He also removes your shackles.'
  191. 'He then calmly sits down in a chair over in the far corner of the room.'
  192. act 'Continue':gt 'abduction', 'abdExam1'
  193. end
  194. if $ARGS[0] = 'abdExam1':
  195. *clr & cla
  196. menu_off = 1
  197. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/exam1.jpg"></center>'
  198. 'A man enters the room dressed like a doctor, wearing a lab coat and suit with a stethoscope around his neck. He walks as if he''s unconcerned about you.'
  199. 'Obviously, he doesn''t speak to you, but rather to the man sitting in the chair. "Wow, a nice catch indeed." the doctor exclaims.'
  200. 'The doctor puts on a pair of rubber gloves then sits down on a small chair in front of you. He looks at your spread legs and what''s between them.'
  201. *nl
  202. 'He continues to speak to the man: "She''s about <<age>> years old."'
  203. if age < 18:
  204. '"Geez, you like them really young don''t you?"'
  205. '"Sure Doctor, who wants to fuck some old meat? The customers just love how the young ones squeal."'
  206. '"Heh, I see..."'
  207. 'He continues with the usual report of his findings.'
  208. end
  209. 'He continues to examine every inch of you. "Regarding her usage levels:"'
  210. 'He shines a light in your mouth and says, "Her throat is <<$throattipe>>."'
  211. 'Next, he prods a finger around in your ass. "And her ass is <<$anustipe>>."'
  212. 'He pulls his finger out of your ass and finally reaches for your pussy.'
  213. if pcs_vag = 0:
  214. '"Oh, you''ll like this. Her pussy is fresh. We have a virgin here."'
  215. '"Looks like we hit the jackpot once again dear Doctor." says the man with a happy smile.'
  216. else
  217. '"And her pussy is <<$vaginatipe>>.'
  218. end
  219. 'The doctor finally takes his hands off of you and prepares several needles filled with unknown fluids.'
  220. act 'Continue':gt 'abduction', 'abdExam2'
  221. end
  222. if $ARGS[0] = 'abdExam2':
  223. *clr & cla
  224. menu_off = 1
  225. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/exam2.jpg"></center>'
  226. '"Listen here, little slave. We will make sure that you are healthy and ready to be trained."'
  227. 'He quickly injects all the solutions into one of your arms. The needle pricks your skin to hit the vein in the crook of your arm.'
  228. '"The examination is now over."'
  229. 'The doctor leaves the room. The man puts your shackles and blindfold back on then leads you back down to the basement.'
  230. gs 'medical_din','healSTDs'
  231. examed = 1
  232. act 'Continue':gt 'abduction', 'abdRoom'
  233. end
  234. if $ARGS[0] = 'abdBrokenGiveTools':
  235. *clr & cla
  236. menu_off = 1
  237. abdTools = 1
  238. gs 'stat'
  239. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhoredildosbag.jpg"></center>'
  240. 'Your master approaches you. It looks like he is holding something big in his hands.'
  241. 'When he steps into the light, you can see he holds some very large dildos.'
  242. '"Hello, my newly broken slave. I have a gift for you." he says.'
  243. 'You are rather quiet, because fearful thoughts of having these dreadfully big dildos shoved anywhere into your body make you feel like you might puke.'
  244. '"Aren''t you glad whore? These dildos are here for you to train on, so you can perform better in a "live" situation."'
  245. '"Uhmm... thank you Master."'
  246. 'He puts them down next to your bed and leaves without saying another word.'
  247. if lactation['active'] > 0:
  248. if breastpump = 0:breastpump = 1
  249. 'In the bottom of the box, under the various dildos, you also find a working breast pump.'
  250. if lact_engorgement > 3:
  251. 'You are relieved that you can now empty your painfully full breasts'
  252. end
  253. end
  254. act 'Continue':gt 'abduction', 'abdRoom'
  255. end
  256. if $ARGS[0] = 'abdBreak1':
  257. *clr & cla
  258. menu_off = 1
  259. minut += 10
  260. gs 'stat'
  261. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/questioned1.jpg"></center>'
  262. '"Please... please! I cannot bear this treatment anymore! I''ll do anything, just let me go!" you tearfully plead.'
  263. '"You don''t understand bitch. You will only leave this place in one of two ways. Either as a sex slave - or as a corpse."'
  264. '"But..."'
  265. '"You will be sold to someone as their slave. If you won''t accept that role, then you will be utilized for the more perverted needs of our customers. Those girls usually don''t survive for long.'
  266. 'A sense of dread washes over you as your mind races to think of what horrors might await you.'
  267. '"Now, show me what a good slave you are."'
  268. tortureType = rand(1,3)
  269. gs 'willpower', 'misc', 'resist', 'hard'
  270. if will_cost <= pcs_willpwr:
  271. act 'Spit in his face (<<will_cost>> Willpower)':
  272. gs 'willpower', 'misc', 'resist', 'hard'
  273. gs 'willpower', 'pay', 'resist'
  274. gs 'stat'
  275. gt 'abduction', 'abdTorture'
  276. end
  277. else
  278. act 'Spit in his face (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  279. end
  280. if rapeCount <= 10:
  281. act 'Say nothing and crawl back to your bed': gt 'abduction', 'abdRape'
  282. end
  283. if tortureCount >= 5 or rapeCount >= 10:
  284. if broken > 0:
  285. act 'Please fuck my mouth Master':gt 'abduction', 'abdBreak2FuckB1'
  286. if pcs_vag > 0: act 'Please fuck my pussy Master':gt 'abduction', 'abdBreak2FuckA1'
  287. else
  288. act 'You... you are my master. Please accept my mouth for your use...':gt 'abduction', 'abdBreak2FuckB1'
  289. if pcs_vag > 0: act 'You... you are my master. Please accept my pussy for your use...':gt 'abduction', 'abdBreak2FuckA1'
  290. end
  291. end
  292. end
  293. if $ARGS[0] = 'abdBrokenGivePainkiller':
  294. *clr & cla
  295. menu_off = 1
  296. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/pill1.jpg"></center>'
  297. 'Your master approaches you. "You have been a good slave so far. Good slaves are rewarded."'
  298. 'He hands you a single painkiller pill.'
  299. act 'Take and swallow it':gt 'abduction', 'abdBrokenGivePainkillerYes'
  300. gs 'willpower', 'misc', 'resist', 'easy'
  301. if will_cost <= pcs_willpwr:
  302. act 'Refuse and keep your mouth shut (<<will_cost>> Willpower)':
  303. gs 'willpower', 'misc', 'resist', 'easy'
  304. gs 'willpower', 'pay', 'resist'
  305. gs 'stat'
  306. gt 'abduction', 'abdBrokenGivePainkillerNo'
  307. end
  308. else
  309. act 'Refuse and keep your mouth shut (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  310. end
  311. end
  312. if $ARGS[0] = 'abdBrokenGivePainkillerYes':
  313. *clr & cla
  314. menu_off = 1
  315. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/pill2.jpg"></center>'
  316. 'You happily take the pill and swallow it immediately.'
  317. gs 'stat'
  318. painkillerGive = rand(1,100)
  319. if painkillerGive > 20 and broken >= 10:
  320. 'Your master nods in approval and hands you a small pack of painkillers.'
  321. painkiller += 6
  322. end
  323. act 'How can I thank you, Master?':gt 'abduction', 'abdBrokenAsk'
  324. end
  325. if $ARGS[0] = 'abdBrokenGivePainkillerNo':
  326. *clr & cla
  327. menu_off = 1
  328. '<center><video autoplay loop src="images/locations/shared/abduction/sex/pill1.mp4"></video></center>'
  329. 'You see anger flash across your master''s face. "Refusing a gift? It seems like this slave needs to be reminded of her place."'
  330. 'He ties you down on top of the table then secures your head. Some devious device is attached to your nose which pulls your head backwards. It forces you to open your mouth slightly.'
  331. 'Your master takes a clamp and pulls your tongue out. It tightly and painfully squeezes it. He then secures the pill on top of a dildo and pushes the tip down your throat.'
  332. *nl
  333. 'Your gag reflex activates, causing you to gag and choke, but he doesn''t remove the dildo for as long as you try to throw up.'
  334. 'You almost pass out. Everything goes dark, and at that moment he removes it.'
  335. 'You have been forced to swallow the pill, but your master still looks very angry.'
  336. pain['killer'] += 1
  337. broken -= 5
  338. pain['tongue'] += 5
  339. pain['throat'] += 5
  340. pain['nose'] += 5
  341. gs 'stat'
  342. act 'Continue':gt 'abduction', 'abdTorture'
  343. end
  344. if $ARGS[0] = 'abdBrokenAsk':
  345. menu_off = 1
  346. gs 'stat'
  347. 'Your master responds. "Very good. What do you want me to do to you slave?"'
  348. act 'Please fuck my mouth Master':gt 'abduction', 'abdBreak2FuckB1'
  349. if pcs_vag > 0: act 'Please fuck my pussy Master':gt 'abduction', 'abdBreak2FuckA1'
  350. if broken >= 5: act 'Please rape me Master':gt 'abduction', 'abdRape'
  351. if broken >= 10: act 'Please punish me Master':gt 'abduction', 'abdTorture'
  352. end
  353. if $ARGS[0] = 'abdBreak2FuckA1':
  354. *clr & cla
  355. menu_off = 1
  356. broken += 1
  357. gs 'cum_call', '', 'Master', 0,'', spot, svol
  358. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/brokena1.jpg"></center>'
  359. 'Your tormentor unchains you and throws you onto your dirty bed.'
  360. 'Spreading your legs wide apart you spit on your hand and smear it on your pussy. "Come and take me, Master."'
  361. '"I like my bitches restrained!" your master says and ties your hands and feet together, securing your position.'
  362. 'His dick penetrates your pussy easily with the saliva doing its job.'
  363. gs 'arousal', 'vaginal', 15, 'sub', 'bound'
  364. gs 'stat'
  365. act 'Continue':gt 'abduction', 'abdBreak2FuckA2'
  366. end
  367. if $ARGS[0] = 'abdBreak2FuckA2':
  368. *clr & cla
  369. menu_off = 1
  370. gs 'cum_call', 'mouth', 'Master', 0,'', spot, svol
  371. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/brokena2.jpg"></center>'
  372. 'Fucking you wildly for some time, your master stops right before he orgasms.'
  373. 'He unties your hands and legs, then ties your hands behind your back.'
  374. 'Knowing what he expects you to do, you open your mouth wide and await his cock.'
  375. 'After some mouthfucking and gagging, he cums in your mouth.'
  376. if broken = 1:
  377. *nl
  378. '"Very good, slave. You are on the path to redeem yourself." Finished with you, he releases your arms to secure you back in your usual location. He then leaves your room with the door closing behind him.'
  379. end
  380. broken += 1
  381. gs 'arousal', 'bj', 5, 'sub', 'bound'
  382. gs 'stat'
  383. act 'Continue':gt 'abduction', 'abdRoom'
  384. end
  385. if $ARGS[0] = 'abdBreak2FuckB1':
  386. *clr & cla
  387. menu_off = 1
  388. broken += 1
  389. gs 'cum_call', 'mouth', 'Master'
  390. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/brokenb1.jpg"></center>'
  391. 'Your master unchains you and leads you to a device.'
  392. 'You can see that it''s meant to restrain a person in a prone position with their head at the same height as someone''s crotch.'
  393. 'You want to please your master, so you lie down on it straight away. You dutifully await the attaching of the restraints.'
  394. 'After your master ties you up, he walks up to your head. Your already open mouth is then roughly fucked by his member.'
  395. 'When he''s about to cum, he pulls his dick out and points it towards your face. You welcome the flying sperm with open eyes and mouth with your tongue out.'
  396. gs 'arousal', 'bj', 20, 'sub', 'bound', 'rough'
  397. gs 'stat'
  398. act 'Continue':gt 'abduction', 'abdBreak2FuckB2'
  399. end
  400. if $ARGS[0] = 'abdBreak2FuckB2':
  401. *clr & cla
  402. menu_off = 1
  403. pain['asshole'] += 1
  404. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/brokenb2.jpg"></center>'
  405. 'Surprisingly, his dick is not wearing out. He moves behind you and starts to penetrate your ass.'
  406. 'You try to relax your anus as much as you can, so he enters you quite easily. Just a small reminder of pain goes through your muscles.'
  407. 'Fucking you furiously for some time, your master cums deep inside you.'
  408. if broken = 1:
  409. *nl
  410. '"Very good, slave. You are on the path to redeem yourself." Finished with you, he releases your arms to secure you back in your usual location. He then leaves your room with the door closing behind him.'
  411. end
  412. broken += 1
  413. gs 'cum_call', 'anus', 'Master'
  414. gs 'arousal', 'anal', 20, 'sub', 'bound'
  415. gs 'stat'
  416. act 'Continue':gt 'abduction', 'abdRoom'
  417. end
  418. if $ARGS[0] = 'abdSleep':
  419. *clr & cla
  420. menu_off = 1
  421. minut += 240
  422. pcs_sleep += 50
  423. gs 'stat'
  424. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/bed1.jpg"></center>'
  425. 'You have slept for several hours, but nightmares have awakened you.'
  426. act 'Continue':gt 'abduction', 'abdRoom'
  427. end
  428. if $ARGS[0] = 'abdEscape':
  429. *clr & cla
  430. menu_off = 1
  431. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/cellarwindow1.jpg"></center>'
  432. 'You are looking at the only window in the basement.'
  433. 'However, there is a lock on it to prevent your escape.'
  434. minut += 5
  435. gs 'stat'
  436. act 'Try to break the lock':gt 'abduction', 'abdEscapeWindow1'
  437. act 'Go back to your bed and re-attach your leash to the wall':gt 'abduction', 'abdRoom'
  438. end
  439. if $ARGS[0] = 'abdEscapeWindow1':
  440. *clr & cla
  441. menu_off = 1
  442. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/cellarwindow1.jpg"></center>'
  443. 'You try to loosen the screws locking the window in place.'
  444. minut += 10
  445. gs 'stat'
  446. breakChance = rand(1, 100)
  447. if breakChance <= 50:
  448. 'You hear someone slam a door nearby. Maybe it''s your master returning?!'
  449. 'You are so close to unscrewing the window! You decide to...'
  450. act 'Run back to your bed and reattach your leash to the wall':gt 'abduction', 'abdSomeoneComing'
  451. act 'Try to unscrew it desperately':gt 'abduction', 'abdEscapeWindow2'
  452. else
  453. 'No luck. The window is still screwed in very tight.'
  454. act 'Go back':gt 'abduction', 'abdFood'
  455. end
  456. end
  457. if $ARGS[0] = 'abdEscapeWindow2':
  458. *clr & cla
  459. menu_off = 1
  460. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/cellarwindow1.jpg"></center>'
  461. 'You continue in your attempts to break the window.'
  462. minut += 5
  463. gs 'stat'
  464. breakChance = rand(1,100)
  465. if breakChance <= 90:
  466. 'You desperately try to unscrew it, but you run out of time... and luck.'
  467. 'Your master comes into the basement and catches you running around unleashed. This won''t end well for you...'
  468. failedEscapeCount += 1
  469. act 'Panic':gt 'abduction', 'abdTorture'
  470. else
  471. 'You did it, and just in time! Before anyone can discover your actions, you manage to loosen the window and pull yourself through it.'
  472. 'As you land, you see some clothes hanging on a line. It looks like the clothes for 4 or 5 girls, but by luck one of the outfits is yours!'
  473. act 'Run away':gt 'abduction', 'abdEscapeWindow3'
  474. end
  475. end
  476. if $ARGS[0] = 'abdEscapeWindow3':
  477. *clr & cla
  478. menu_off = 1
  479. i = rand(1, 3)
  480. gs 'underwear', 'wear'
  481. gs 'underwear', 'dispose'
  482. gs 'clothing', 'wear_last_worn'
  483. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/midnowhere<<i>>.jpg"></center>'
  484. 'Pulling on your clothes as you run, you finally think you are far enough away and try to find your bearings.'
  485. 'Any underwear you had with you is lost, but that''s a small price to pay for your freedom.'
  486. 'You are in the middle of nowhere.'
  487. *nl
  488. 'Before you in the distance, you see a shimmer of something that could be water.'
  489. 'If you turn back, you can hear distant noise of what could be a highway.'
  490. 'On your left, you can see the dust and pollution of what could be a large city.'
  491. 'You can''t see anything to your right, but something is pulling you that way...'
  492. 'You decide to...'
  493. nroad = 12
  494. minut += 180
  495. if pcs_hydra >= 100:
  496. pcs_hydra -= 25
  497. else
  498. pcs_hydra -= 50
  499. end
  500. gs 'stat'
  501. painkiller = painkiller_bak
  502. prezik = prezik_bak
  503. vitamin = vitamin_bak
  504. kosmetica = kosmetica_bak
  505. lipbalm = lipbalm_bak
  506. tampon = tampon_bak
  507. shampoo = shampoo_bak
  508. stanok = stanok_bak
  509. deodorant = deodorant_bak
  510. act 'Turn and run the opposite direction':gt 'road'
  511. act 'Run left':gt 'city_industrial'
  512. act 'Run right':gt 'pav_commercial'
  513. act 'Run forward':gt 'city_lake', 'start'
  514. end
  515. if $ARGS[0] = 'abdFood':
  516. $loc = 'abduction'
  517. $locM = 'abduction'
  518. $loc_arg = 'abdFood'
  519. $locM_arg = 'abdFood'
  520. $menu_loc = 'abduction'
  521. $menu_arg = 'abdFood'
  522. menu_off = 0
  523. gs 'stat'
  524. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/basement2.jpg"></center>'
  525. 'There are some water bottles and dried food beneath your bed.'
  526. 'A half broken, dirty mirror provides some means to inspect your appearance.'
  527. 'In the corner is something remotely similar to a shower. It only has cold water though.'
  528. 'There''s enough space to do some basic <a href="exec:gt ''abduction'', ''abdexercise''">exercise</a>.'
  529. chainChance = rand(1,100)
  530. if chainChance <= 20 and (rapeCount > 5 or tortureCount > 5):
  531. 'You spot a loose link on your chain. You try to manipulate it, and you manage to free yourself from the wall.'
  532. '<a href="exec:gt ''abduction'', ''abdEscape''">Go to the window</a>'
  533. end
  534. act 'Eat dried food (0:10)':
  535. *clr & cla
  536. menu_off = 1
  537. minut += 10
  538. frost = 0
  539. pcs_health += 10
  540. pcs_mood += 10
  541. pcs_energy += 25
  542. if pcs_hydra >= 100:
  543. pcs_hydra -= 10
  544. else
  545. pcs_hydra -= 20
  546. end
  547. pcs_breath = 0
  548. fat += 4
  549. cumspclnt = 2
  550. gs 'cum_cleanup'
  551. gs 'stat'
  552. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/driedbread1.jpg"></center>'
  553. 'You eat the dried meat and bread. It causes your throat to become dry, so some water could come in handy.'
  554. act 'Get back':gt 'abduction', 'abdFood'
  555. end
  556. act 'Drink water (0:05)':
  557. *clr & cla
  558. menu_off = 1
  559. minut += 5
  560. frost = 1
  561. pcs_health += 10
  562. pcs_mood += 10
  563. if pcs_hydra >= 100:
  564. pcs_hydra += 50
  565. else
  566. pcs_hydra += 100
  567. end
  568. cumspclnt = 2
  569. gs 'cum_cleanup'
  570. gs 'stat'
  571. '<center><img <<$set_imgh>> src="images/shared/food/waterbottle1.jpg"></center>'
  572. 'You drank the whole bottle.'
  573. act 'Get back':gt 'abduction', 'abdFood'
  574. end
  575. if abdTools = 1:
  576. act 'Train with dildos':gt 'abduction', 'abdTrainDildos'
  577. if breastpump > 0 and bp_unbox >= 1: act 'Use breast pump': gt 'lact_bp', 'bp_milking'
  578. end
  579. if painkiller > 0:
  580. menu_off = 1
  581. $pluralS = 's'
  582. if painkiller = 1:$pluralS = ''
  583. 'You have <b><<painkiller>></b> painkiller<<$pluralS>>.'
  584. if pain['total'] > 0 and pain['killer'] = 0:
  585. act 'Take a painkiller':
  586. cla
  587. pain['killer'] += 1
  588. painkiller -= 1
  589. if pcs_hydra >= 100:
  590. pcs_hydra += 25
  591. else
  592. pcs_hydra += 50
  593. end
  594. gs 'stat'
  595. *nl
  596. 'You take a painkiller and gulp it down with a glass of water.'
  597. act 'Continue':gt 'abduction', 'abdFood'
  598. end
  599. end
  600. end
  601. act 'Look in the mirror': gt 'mirror', 'start'
  602. if pcs_hairbsh = 0: act 'Brush your hair': gt 'mirror', 'brush'
  603. act 'Take a cold shower (0:15)':
  604. *clr & cla
  605. menu_off = 1
  606. minut += 15
  607. pcs_horny += 1
  608. noShampoo = 1
  609. dynamic $showerdin
  610. gs 'stat'
  611. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/shower1.jpg"></center>'
  612. 'The shower is cold and you don''t have any shampoo, but at least you get clean again...'
  613. if deodorant_on = 1: gs 'sweat', 'remove_deo' & '<br>Your deodorant gets washed away in the shower.'
  614. act 'Get back':gt 'abduction', 'abdFood'
  615. end
  616. act 'Get back to your bed':gt 'abduction', 'abdRoom'
  617. end
  618. if $ARGS[0] = 'abdexercise':
  619. *clr & cla
  620. menu_off = 1
  621. gs 'exercise', 'tier2', 30, 'stren_exp'
  622. '<center><video autoplay loop src="images/pc/activities/exercises/push_nude.mp4"></video></center>'
  623. *nl
  624. 'You do push-ups for <<$timestring>> minutes, improving your strength.'
  625. randpushfact = rand(-5,5)
  626. if pcs_energy < 40: randpushfact -= rand(1,10)
  627. pushnum = (pcs_stren * pcs_sleep * pcs_health) / ( 1 * 67 * healthmax) + randpushfact
  628. if pushnum < 1: pushnum = rand(1,5)
  629. killvar 'randpushfact'
  630. '<br>You managed to do <<pushnum>> push-ups. Your previous record is <<pushrecord>>.'
  631. if pushrecord < pushnum:pushrecord = pushnum & 'This is a new record!'
  632. gs 'stat'
  633. act 'Continue':
  634. *clr & cla
  635. menu_off = 1
  636. gs 'exercise', 'tier2', 30, 'vital_exp'
  637. '<center><video autoplay loop src="images/pc/activities/exercises/abdominal_nude.mp4"></video></center>'
  638. *nl
  639. 'You do a series of abdominal exercises for <<$timestring>> minutes, improving your endurance.'
  640. gs 'stat'
  641. act 'Finish': gt 'abduction', 'abdFood'
  642. end
  643. end
  644. if $ARGS[0] = 'abdRape':
  645. *clr & cla
  646. menu_off = 1
  647. rapeCount += 1
  648. rapeType = rand(1,5)
  649. if broken < 10:pcs_mood = 5
  650. if rapeType = 1:
  651. pain['mouth'] += 3
  652. gs 'cum_call', 'mouth', 'Master'
  653. i = rand(1,4)
  654. gifornot = rand(1,100)
  655. if gifornot > 50:
  656. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/mouthgagblow<<i>>.jpg"></center>'
  657. else
  658. '<center><video autoplay loop src="images/locations/shared/abduction/sex/mouthgagblow1.mp4"></video></center>'
  659. end
  660. 'Your hands are tied. A metal ring, fastened by a leather gag, is inside your mouth, keeping it pried open.'
  661. 'You have to endure a very rough mouth fuck. He knows no limits and gags you as much as he wants. He does let you breathe from time to time, but for most of the experience you feel like passing out. Your saliva is all over his dick and drips onto your tits and stomach.'
  662. gs 'arousal', 'bj', 30, 'sub', 'bound', 'maso'
  663. gs 'stat'
  664. act 'Continue':gt 'abduction', 'abdRoom'
  665. elseif rapeType = 2 and pcs_vag > 0:
  666. pain['vaginal'] += 10
  667. gs 'cum_call', '', 'Master', 0
  668. i = rand(1,5)
  669. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/fucktiedpussy<<i>>.jpg"></center>'
  670. 'Your hands are tied, and you''re bent over the bed.'
  671. 'The guy starts to penetrate your pussy without warning. A sharp pain goes through your abdomen because your pussy is not wet enough to receive a dick.'
  672. gs 'arousal', 'vaginal', 30, 'sub', 'bound', 'maso'
  673. gs 'stat'
  674. act 'Continue':gt 'abduction', 'abdRoom'
  675. elseif rapeType = 3:
  676. pain['asshole'] += 10
  677. gs 'cum_call', 'anus', 'Master'
  678. gifornot = rand (1,100)
  679. if gifornot > 50:
  680. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/fucktiedanal'+rand(1,4)+'.jpg"></center>'
  681. else
  682. '<center><video autoplay loop src="images/locations/shared/abduction/sex/fucktiedanal1.mp4"></video></center>'
  683. end
  684. 'Your hands are tied, and you''re bent over the bed.'
  685. 'The guy starts to penetrate your ass without warning. A sharp pain goes through your anus as your ass is neither relaxed nor wet enough to receive a dick.'
  686. gs 'arousal', 'anal', 30, 'sub', 'bound', 'maso'
  687. gs 'stat'
  688. act 'Continue':gt 'abduction', 'abdRoom'
  689. elseif rapeType = 4:
  690. pain['asshole'] += 8
  691. pcs_ass += 1
  692. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/fistanal'+rand(1,5)+'.jpg"></center>'
  693. 'Your hands and feet are tied with your ass being high above your head. This is because you are hanging upside down.'
  694. 'The guy starts trying to push his thick fist inside your anus. At least he used a bit of lubricant...'
  695. 'When your sphincter fails to resist anymore, you hear a loud pop as his fist quickly penetrates your insides.'
  696. 'He doesn''t stop there and pushes his hand deep. You can feel your intestines expanding as he opens his fist inside you.'
  697. 'The pain is unbearable, but he doesn''t care.'
  698. gs 'arousal', 'anal_fist', 30, 'sub', 'bound', 'maso'
  699. gs 'stat'
  700. act 'Continue':gt 'abduction', 'abdRoom'
  701. elseif rapeType = 5 and pcs_vag > 0:
  702. pain['vaginal'] += 5
  703. pain['cervix'] += 10
  704. pcs_vag += 1
  705. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/fistvaginal'+rand(1,5)+'.jpg"></center>'
  706. 'Your hands and feet are tied with your ass raised higher than your head.'
  707. 'The guy starts pushing his thick fist deep inside your pussy. At least he used a bit of lubricant...'
  708. 'Suddenly, you feel his fingers touch your cervix. He''s doing it on purpose!'
  709. 'He''s pinching and pressing your cervix. You cry out loudly and try to shake him off, but you are bound. There''s no hope of success...'
  710. '"Do you like it, slave?" He stops pushing, but you can feel a finger still brushing up against your cervix. "Should we penetrate another hole girl?"'
  711. '"No! Please... stop... Just... stop..." you plead through tears.'
  712. gs 'arousal', 'vaginal_fist', 30, 'sub', 'bound', 'maso'
  713. gs 'stat'
  714. act 'Continue':gt 'abduction', 'abdRoom'
  715. else
  716. pcs_throat += 1
  717. pain['mouth'] += 5
  718. gs 'cum_call', 'mouth', 'Master'
  719. i = rand(1, 4)
  720. gifornot = rand (1, 100)
  721. if gifornot > 50:
  722. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/mouthgagblow<<i>>.jpg"></center>'
  723. else
  724. '<center><video autoplay loop src="images/locations/shared/abduction/sex/mouthgagblow1.mp4"></video></center>'
  725. end
  726. 'Your hands are tied. A metal ring, fastened by a leather gag, is inside your mouth, keeping it pried open.'
  727. 'You have to endure a very rough mouth fuck. He knows no limits and gags you as much as he wants. He does let you breathe from time to time, but for most of the experience you feel like passing out. Your saliva is all over his dick and drips onto your tits and stomach.'
  728. gs 'arousal', 'bj', 30, 'sub', 'bound', 'maso'
  729. gs 'stat'
  730. act 'Continue':gt 'abduction', 'abdRoom'
  731. end
  732. end
  733. if $ARGS[0] = 'abdTorture':
  734. tortureType = rand(1,4)
  735. tortureCount += 1
  736. gs 'stat'
  737. if tortureType = 1:
  738. gt 'abduction', 'abdTortureA1'
  739. elseif tortureType = 2 and pcs_vag > 0:
  740. gt 'abduction', 'abdTortureB1'
  741. elseif tortureType = 3:
  742. gt 'abduction', 'abdTortureC1'
  743. elseif tortureType = 4 and pcs_vag > 0:
  744. gt 'abduction', 'abdTortureD1'
  745. else
  746. gt 'abduction', 'abdTortureC1'
  747. end
  748. if broken < 10:
  749. pcs_mood = 5
  750. gs 'stat'
  751. end
  752. end
  753. if $ARGS[0] = 'abdTortureA1':
  754. *clr & cla
  755. menu_off = 1
  756. pain['feet'] += 5
  757. pain['hands'] += 5
  758. minut += 10
  759. gs 'stat'
  760. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturea1.jpg"></center>'
  761. 'You are taken from your bed and led to the far side of the basement. Suspicious looking rings and straps can be seen attached to the wall.'
  762. 'Your hands are secured with a rope high on the wall.'
  763. 'Your legs are unpleasantly lifted above your head and secured as well.'
  764. 'Now you are hanging by your hands with your pussy and ass available for any perverted usage.'
  765. act 'Continue':gt 'abduction', 'abdTortureA2'
  766. end
  767. if $ARGS[0] = 'abdTortureA2':
  768. *clr & cla
  769. pain['nipples'] += 5
  770. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturea2.jpg"></center>'
  771. 'Your tormentor secures a rope around your neck and starts to play with your idle nipples.'
  772. 'As your nipples harden, he firmly attaches the rope to them and tightens it around your neck.'
  773. '"Ouch! It hurts... please remove it!"'
  774. 'In response, the tormentor slaps a gag in your mouth and walks away, leaving you alone.'
  775. gs 'arousal', 'foreplay', 10, 'sub', 'bound', 'maso'
  776. gs 'stat'
  777. act 'Continue':gt 'abduction', 'abdTortureA3'
  778. end
  779. if $ARGS[0] = 'abdTortureA3':
  780. *clr & cla
  781. menu_off = 1
  782. pain['asshole'] += 5
  783. pcs_ass += 1
  784. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturea3.jpg"></center>'
  785. 'After a while, the tormentor comes back and brings a dildo that''s attached to a long stick.'
  786. '"Mmmphh!" is the only sound you are able to make in protest of what''s coming towards you.'
  787. 'Without any warning, he stuffs the dildo inside your ass. It goes so deep that you can feel it push against your intestines.'
  788. 'He secures the stick to the ground then leaves the room.'
  789. 'You swing on the rope to the left and right as you try to push it out of your ass. However, it is too deep inside of you, and the stick does not move.'
  790. gs 'arousal', 'anal_dildo', 30, 'sub', 'bound', 'maso', 'humiliation'
  791. gs 'stat'
  792. act 'Continue':gt 'abduction', 'abdTortureA4'
  793. end
  794. if $ARGS[0] = 'abdTortureA4':
  795. *clr & cla
  796. menu_off = 1
  797. pain['tummy'] += 5
  798. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturea4.jpg"></center>'
  799. 'After what seems like an eternity, the tormentor comes back again.'
  800. 'Pleased to find you with tears and saliva all over your tits and stomach, he unscrews the stick.'
  801. 'As a last sign of the torture, he pushes the stick even deeper inside you in a single stroke then swiftly takes it out.'
  802. 'You start to tremble a lot, but you know it is finally over.'
  803. gs 'arousal', 'foreplay', 10, 'sub', 'bound', 'maso', 'humiliation'
  804. gs 'stat'
  805. act 'Continue':gt 'abduction', 'abdRoom'
  806. end
  807. if $ARGS[0] = 'abdTortureB1':
  808. *clr & cla
  809. menu_off = 1
  810. minut += 10
  811. gs 'stat'
  812. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortureb1.jpg"></center>'
  813. 'You are forced to the ground to lay on your stomach.'
  814. 'First your hands are tied together and raised high in the air. You can feel your joints being bent to their limits. Any more bending and your shoulders would pop.'
  815. 'Your legs are then forced wide apart and secured on opposite sides. You cannot move an inch.'
  816. act 'Continue':gt 'abduction', 'abdTortureB2'
  817. end
  818. if $ARGS[0] = 'abdTortureB2':
  819. *clr & cla
  820. menu_off = 1
  821. pain['asscheeks'] += 10
  822. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortureb2.jpg"></center>'
  823. 'You hear your tormentor coming back towards you.'
  824. '"Uummmphh!" is the sound your gagged mouth makes as the cane suddenly strikes your ass.'
  825. 'You are given a thorough ass whipping.'
  826. gs 'arousal', 'foreplay', 10, 'sub', 'bound', 'maso', 'humiliation'
  827. gs 'stat'
  828. act 'Continue':gt 'abduction', 'abdTortureB3'
  829. end
  830. if $ARGS[0] = 'abdTortureB3':
  831. *clr & cla
  832. menu_off = 1
  833. pain['asshole'] += 2
  834. pain['vaginal'] += 2
  835. pcs_ass += 1
  836. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortureb3.jpg"></center>'
  837. 'As soon as the whipping stops, you feel a new source of pain in both your pussy and your ass - something is being pushed inside both of your holes.'
  838. 'You are given no time to adjust, and both holes are fucked viciously, fast and deep.'
  839. gs 'arousal', 'vaginal_dildo', 10, 'sub', 'bound', 'maso', 'humiliation'
  840. gs 'stat'
  841. act 'Continue':gt 'abduction', 'abdTortureB4'
  842. end
  843. if $ARGS[0] = 'abdTortureB4':
  844. *clr & cla
  845. menu_off = 1
  846. minut += 10
  847. gs 'stat'
  848. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortureb4.jpg"></center>'
  849. 'Finally, your pussy and anus are left alone. Whatever was inside of you has been removed.'
  850. act 'Continue':gt 'abduction', 'abdRoom'
  851. end
  852. if $ARGS[0] = 'abdTortureC1':
  853. *clr & cla
  854. menu_off = 1
  855. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturec1.jpg"></center>'
  856. 'Your tormentor looks angry. Your hands are tied behind your back and legs.'
  857. 'He attaches a rope to your feet - you are lifted like a pig to be cleaned!'
  858. 'After some minutes of just hanging, your tormentor comes at you with a leather whip.'
  859. 'He spins you around and whips whatever comes before him. Ass, back, belly, pussy, legs, tits. The whip hits your exposed flesh and leaves angry looking welts behind.'
  860. gs 'arousal', 'foreplay', 10, 'sub', 'bound', 'maso', 'humiliation'
  861. gs 'stat'
  862. act 'Continue':gt 'abduction', 'abdTortureC2'
  863. end
  864. if $ARGS[0] = 'abdTortureC2':
  865. *clr & cla
  866. menu_off = 1
  867. minut += 10
  868. pain['asscheeks'] += 60
  869. pain['back'] += 50
  870. pain['thighs'] += 25
  871. pain['chest'] += 25
  872. pain['breasts'] += 50
  873. pain['tummy'] += 25
  874. gs 'stat'
  875. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/torturec2.jpg"></center>'
  876. 'Twenty minutes of thorough whipping leaves your body trembling and severely bruised.'
  877. 'Your tender breasts are especially sore.'
  878. act 'Continue':gt 'abduction', 'abdRoom'
  879. end
  880. if $ARGS[0] = 'abdTortureD1':
  881. *clr & cla
  882. menu_off = 1
  883. minut += 10
  884. gs 'stat'
  885. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortured1.jpg"></center>'
  886. 'Your tormentor brings a crude rope...'
  887. 'You tremble as you wonder what he''s going to do with it... Will he spank you or is he tired of you and just wants to hang you?'
  888. 'You almost sigh in relief when he "just" ties you up.'
  889. act 'Continue':gt 'abduction', 'abdTortureD2'
  890. end
  891. if $ARGS[0] = 'abdTortureD2':
  892. *clr & cla
  893. menu_off = 1
  894. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortured2.jpg"></center>'
  895. 'You are forced down on your knees on top of some kind of weird bench. The ropes are fixed so you cannot move an inch.'
  896. 'Not being able to see what is going on behind you, you suddenly feel something cold touching your asshole.'
  897. 'With a single thrust, something is shoved really deep inside your anus.'
  898. 'Tears stream down your face and you cry out loudly...'
  899. gs 'arousal', 'anal_dildo', 10, 'sub', 'bound', 'maso', 'humiliation'
  900. gs 'stat'
  901. act 'Continue':gt 'abduction', 'abdTortureD3'
  902. end
  903. if $ARGS[0] = 'abdTortureD3':
  904. *clr & cla
  905. menu_off = 1
  906. pcs_throat += 1
  907. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortured3.jpg"></center>'
  908. 'Next is your tender pussy. He shoves the dildo in, not giving you any time to adjust.'
  909. 'Last comes your mouth. Finally, you can see what is being inserted into your every hole: dildos attached to long wooden sticks.'
  910. 'The sticks are fixed tightly to the device - if you move just a bit, any one of them gets shoved even deeper. It brings you even more discomfort and pain to your already abused body.'
  911. 'Your tormentor walks away to leave you in this state for what feels like an eternity.'
  912. gs 'arousal', 'vaginal_dildo', 60, 'sub', 'bound', 'maso', 'humiliation'
  913. gs 'stat'
  914. act 'Continue':gt 'abduction', 'abdTortureD4'
  915. end
  916. if $ARGS[0] = 'abdTortureD4':
  917. *clr & cla
  918. menu_off = 1
  919. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/tortured4.jpg"></center>'
  920. 'Finally he comes back.'
  921. 'You are unplugged, but your torture is far from over.'
  922. '"Suck me and this will be over. For now..."'
  923. 'You have no choice but to do what he orders.'
  924. gs 'arousal', 'bj', 60, 'sub', 'bound', 'maso', 'humiliation'
  925. gs 'stat'
  926. act 'Continue':gt 'abduction', 'abdTortureD5'
  927. end
  928. if $ARGS[0] = 'abdTortureD5':
  929. *clr & cla
  930. menu_off = 1
  931. pain['asshole'] += 5
  932. pain['vaginal'] += 5
  933. pcs_vag += 1
  934. pcs_ass += 1
  935. gs 'cum_call', 'mouth', 'Master'
  936. gs 'stat'
  937. '<center><video autoplay loop src="images/locations/shared/abduction/sex/tortured5.mp4"></video></center>'
  938. 'Even though your head is spinning and everything is aching inside you, you are able to make him cum in just a few minutes.'
  939. 'Being bound, he shows you no remorse and fucks you raw before cumming in your very sore throat.'
  940. gs 'arousal', 'vaginal', 20, 'sub', 'bound', 'maso', 'humiliation'
  941. gs 'arousal', 'anal', 20, 'sub', 'bound', 'maso', 'humiliation'
  942. gs 'arousal', 'bj', 20, 'sub', 'bound', 'maso', 'humiliation'
  943. gs 'stat'
  944. act 'Continue':gt 'abduction', 'abdRoom'
  945. end
  946. if $ARGS[0] = 'abdBeSold':
  947. menu_off = 1
  948. '"We have a buyer for you." your master says with a cruel smile.'
  949. act 'I do not want to be sold':gt 'abduction', 'abdConsiderSold'
  950. act 'I want to leave':gt 'abduction', 'abdSoldSauna'
  951. end
  952. if $ARGS[0] = 'abdConsiderSold':
  953. menu_off = 1
  954. '"Are you sure slave?" he asks, after which he says "you will stay here and continue to be used..."'
  955. act 'Yes, that''s what I want':gt 'abduction', 'abdNotSold'
  956. act 'On second thought, I want to leave this place':gt 'abduction', 'abdSoldSauna'
  957. end
  958. if $ARGS[0] = 'abdNotSold':
  959. menu_off = 1
  960. '"Very well. We will see each other again soon." your master says.'
  961. act 'Continue':gt 'abduction', 'abdRoom'
  962. end
  963. if $ARGS[0] = 'abdSoldSauna':
  964. menu_off = 1
  965. '"A nice lady from an established business." he smiles.'
  966. 'You are blindfolded and led away to a car.'
  967. 'After some time, you are led through doors and finally the blindfold is removed. You are in a backroom of a brothel.'
  968. '"The madame of the brothel stands before you. "I paid 8000 <b>₽</b> for you bitch. Don''t make me regret this."'
  969. '"Yes, madame." you reply.'
  970. '"I''m not a bad person." she continues. "If you earn me at least five times more than what I paid, I may let you go."'
  971. 'With this faint sign of hope, she leaves you alone.'
  972. workDolg = 40000
  973. painkiller = painkiller_bak
  974. prezik = prezik_bak
  975. vitamin = vitamin_bak
  976. kosmetica = kosmetica_bak
  977. lipbalm = lipbalm_bak
  978. tampon = tampon_bak
  979. shampoo = shampoo_bak
  980. stanok = stanok_bak
  981. deodorant = deodorant_bak
  982. act 'Continue':gt 'city_sauna', 'saunaroom'
  983. end
  984. if $ARGS[0] = 'abdFailedCustomer':
  985. *clr & cla
  986. menu_off = 1
  987. abdCustomerFailCount += 1
  988. minut += 5
  989. gs 'stat'
  990. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailed.mp4"></video></center>'
  991. 'Angrily, your master leads you back to the basement.'
  992. act 'Continue':gt 'abduction', 'abdFailedCustomer1'
  993. end
  994. if $ARGS[0] = 'abdFailedCustomer1':
  995. *clr & cla
  996. menu_off = 1
  997. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailed1.mp4"></video></center>'
  998. 'Your master looks very upset.'
  999. 'First, he takes some ropes and ties you up. Your breasts start to turn purple from the lack of blood circulation because of how tightly fastened they are.'
  1000. gs 'arousal', 'foreplay', 15, 'sub', 'bound', 'maso', 'humiliation'
  1001. gs 'stat'
  1002. act 'Continue':gt 'abduction', 'abdFailedCustomer2'
  1003. end
  1004. if $ARGS[0] = 'abdFailedCustomer2':
  1005. *clr & cla
  1006. menu_off = 1
  1007. pain['asshole'] += 2
  1008. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailed2.mp4"></video></center>'
  1009. 'He then forces a considerable plug into your anus with little warning. Being tied up, you cannot resist in any way.'
  1010. gs 'arousal', 'anal_dildo', 5, 'sub', 'bound', 'maso', 'humiliation'
  1011. gs 'stat'
  1012. act 'Continue':gt 'abduction', 'abdFailedCustomer3'
  1013. end
  1014. if $ARGS[0] = 'abdFailedCustomer3':
  1015. *clr & cla
  1016. menu_off = 1
  1017. pain['mouth'] += 5
  1018. pain['throat'] += 10
  1019. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailed3.mp4"></video></center>'
  1020. 'Continuing, he blindfolds you and attaches a ring gag, which stops you from closing your mouth. Now completely helpless, you hear him walking away, leaving you to wonder what he has planned next.'
  1021. 'After some time of relative quiet, you hear someone coming. In a matter of seconds, someone grabs your head. He pushes his warm cock into your mouth and down your throat, making it impossible to breathe.'
  1022. 'You panic and freak out, but he doesn''t let go until you are on the verge of passing out.'
  1023. 'Only then does he stop, not letting you escape into unconsciousness.'
  1024. pcs_mood = 5
  1025. gs 'arousal', 'bj', 15, 'sub', 'bound', 'maso', 'humiliation'
  1026. gs 'stat'
  1027. endRand = rand(1,3)
  1028. if endRand = 1:
  1029. act 'Continue':gt 'abduction', 'abdFailedCustomerElectro1'
  1030. elseif endRand = 2:
  1031. act 'Continue':gt 'abduction', 'abdFailedCustomerHook1'
  1032. elseif endRand = 3:
  1033. act 'Continue':gt 'abduction', 'abdFailedCustomerWhip1'
  1034. end
  1035. end
  1036. if $ARGS[0] = 'abdFailedCustomerElectro1':
  1037. *clr & cla
  1038. menu_off = 1
  1039. pain['pubic'] += 20
  1040. pain['nipples'] += 20
  1041. pain['breasts'] += 20
  1042. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedelectro1.mp4"></video></center>'
  1043. 'Your restraints are removed, but you are led to a wall to be chained anew to a different device.'
  1044. 'This time, you can see everything - but you wish you couldn''t.'
  1045. 'Electrodes are taped to your nipples, clitoris, and vagina.'
  1046. 'Your master takes a few steps back and pushes a button on a remote. In that moment, an electric shock goes through your whole body, causing you to shake.'
  1047. 'You moan loudly and beg for him to stop.'
  1048. gs 'arousal', 'foreplay', 30, 'sub', 'bound', 'maso', 'humiliation'
  1049. gs 'stat'
  1050. act 'Continue':gt 'abduction', 'abdFailedCustomerElectro2'
  1051. end
  1052. if $ARGS[0] = 'abdFailedCustomerElectro2':
  1053. *clr & cla
  1054. menu_off = 1
  1055. pain['asshole'] += 20
  1056. pain['tummy'] += 20
  1057. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedelectro2.mp4"></video></center>'
  1058. 'Your legs are pulled into the air and restrained to a wall. You hang by your hands with both of your holes fully at their disposal.'
  1059. 'The first plug is violently taken out with a loud "SCHLOP".'
  1060. 'However, your anus isn''t left empty for long as in a few moments a new plug is inserted. Fear grips you as you see the wires hanging out of it.'
  1061. 'The remote button is pushed again, and this time you can feel it all inside your intestines and anus.'
  1062. 'The sensation is very strange. It''s as if your belly was full of popping popcorn.'
  1063. gs 'arousal', 'anal_dildo', 30, 'sub', 'bound', 'maso', 'humiliation'
  1064. gs 'stat'
  1065. act 'Continue':gt 'abduction', 'abdFailedCustomerElectro3'
  1066. end
  1067. if $ARGS[0] = 'abdFailedCustomerElectro3':
  1068. *clr & cla
  1069. menu_off = 1
  1070. minut += 240
  1071. pain['feet'] += 10
  1072. pain['hands'] += 10
  1073. pain['back'] += 10
  1074. pcs_mood = 5
  1075. gs 'stat'
  1076. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhorefailedelectro3.jpg"></center>'
  1077. 'Finally, your torment is at an end.'
  1078. '"Remember this lesson slave. If you disappoint a customer again, a more severe punishment may be forced upon you."'
  1079. '"If you are found to be more trouble than you are worth, one of our more perverse customers will pay us well for the opportunity to torture you to death."'
  1080. 'You just nod that you understand and remain silent.'
  1081. *nl
  1082. 'Your master leaves without another word - and you are left hanging on the wall.'
  1083. 'You are tired, everything hurts, and there seems to be no sign of when you will be removed from this terrible bondage, if at all.'
  1084. act 'Continue':gt 'abduction', 'abdFailedCustomerChainedBack'
  1085. end
  1086. if $ARGS[0] = 'abdFailedCustomerHook1':
  1087. *clr & cla
  1088. menu_off = 1
  1089. pain['asshole'] += 5
  1090. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedhook1.mp4"></video></center>'
  1091. 'You are put on all fours and chained. Your ass is high in the air, showing both your holes to anyone standing behind you.'
  1092. 'Somebody you don''t see comes up from behind to remove the buttplug with a loud "SCHLOP" and immediately after... very violently... shoves something cold inside your anus.'
  1093. 'You cry in both pain and surprise.'
  1094. gs 'arousal', 'anal_dildo', 10, 'sub', 'bound', 'maso', 'humiliation'
  1095. gs 'stat'
  1096. act 'Continue':gt 'abduction', 'abdFailedCustomerHook2'
  1097. end
  1098. if $ARGS[0] = 'abdFailedCustomerHook2':
  1099. *clr & cla
  1100. menu_off = 1
  1101. pain['labia'] += 20
  1102. pain['clitoris'] += 20
  1103. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedhook2.mp4"></video></center>'
  1104. 'Trying to look behind you, you see your master bring something in his hands.'
  1105. 'He puts it up against your pussy and suddenly it starts to vibrate.'
  1106. 'The intensity is too much for you, and instead of bringing you pleasure, it feels like a devious mix of intense pain and orgasmic pulses.'
  1107. 'After a while, you piss yourself while experiencing something like a very painful orgasm.'
  1108. $orgasm_or = 'yes'
  1109. gs 'arousal', 'vaginal_vibe', 30, 'sub', 'bound', 'maso', 'humiliation'
  1110. gs 'stat'
  1111. act 'Continue':gt 'abduction', 'abdFailedCustomerHook3'
  1112. end
  1113. if $ARGS[0] = 'abdFailedCustomerHook3':
  1114. *clr & cla
  1115. menu_off = 1
  1116. pain['vaginal'] += 10
  1117. pain['cervix'] += 20
  1118. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedhook3.mp4"></video></center>'
  1119. 'Your pussy is very sensitive after the vibrator treatment, and your master knows that all too well.'
  1120. 'He slams his dick deep inside you to hit your cervix. It seems to you that he is doing it on purpose.'
  1121. 'You try to beg for mercy, but he just doesn''t care. He wants you to suffer - this is your punishment...'
  1122. gs 'arousal', 'vaginal', 20, 'sub', 'bound', 'maso', 'humiliation', 'rough'
  1123. gs 'arousal', 'end'
  1124. gs 'stat'
  1125. act 'Continue':gt 'abduction', 'abdFailedCustomerHook4'
  1126. end
  1127. if $ARGS[0] = 'abdFailedCustomerHook4':
  1128. *clr & cla
  1129. menu_off = 1
  1130. minut += 240
  1131. pain['asshole'] += 30
  1132. pcs_ass += 1
  1133. pcs_mood = 5
  1134. gs 'stat'
  1135. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorefailedhook4.mp4"></video></center>'
  1136. 'Finally, you faint from all the abuse.'
  1137. 'You wake up alone in the room, but your position has been changed while you were unconscious.'
  1138. 'You are bound on some kind of a stool, hands tied together, and most importantly, your ass is lifted in the air and hanging by the hook.'
  1139. *nl
  1140. 'You start to realize the pain of hanging by your asshole, so you try to push your legs up to move your ass even higher.'
  1141. 'However, you can only remain in that position for a little while before you get tired and relax your legs. The pain quickly returns to your hook elevated asshole.'
  1142. 'Nobody is nearby, but you already know all too well that no one will take pity on you anyway...'
  1143. 'You just have to wait hoping this part of your punishment will end soon.'
  1144. act 'Wait':gt 'abduction', 'abdFailedCustomerChainedBack'
  1145. end
  1146. if $ARGS[0] = 'abdFailedCustomerWhip1':
  1147. *clr & cla
  1148. menu_off = 1
  1149. pain['labia'] += 5
  1150. pain['clitoris'] += 5
  1151. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorewhip1.mp4"></video></center>'
  1152. 'Your master removes your bondage and in anger pushes you on the ground before spreading your legs.'
  1153. '"You fucking whore! You''re going to learn how to be more fucking obedient!"'
  1154. 'He starts to spank your pussy with his big hand.'
  1155. gs 'arousal', 'foreplay', 10, 'sub', 'bound', 'maso', 'humiliation'
  1156. gs 'stat'
  1157. act 'Continue':gt 'abduction', 'abdFailedCustomerWhip2'
  1158. end
  1159. if $ARGS[0] = 'abdFailedCustomerWhip2':
  1160. *clr & cla
  1161. menu_off = 1
  1162. pain['labia'] += 10
  1163. pain['clitoris'] += 10
  1164. pain['asscheeks'] += 20
  1165. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorewhip2.mp4"></video></center>'
  1166. 'After a while, he cools down, but your pussy is already red and stinging.'
  1167. 'He grabs you by your hair and leads you to another device. You have to lie down on your shoulders and put your ass high in the air.'
  1168. 'He affixes you into this uncomfortable position with some straps.'
  1169. *nl
  1170. 'Content with how helpless and at his disposal you are, he grabs a rubber baton.'
  1171. 'He hits you hard, targeting your exposed labia, causing intense pain to shoot through your body.'
  1172. 'From time to time, he alternates, by giving your asscheeks an even harder hit.'
  1173. gs 'arousal', 'foreplay', 20, 'sub', 'bound', 'maso', 'humiliation'
  1174. gs 'stat'
  1175. act 'Continue':gt 'abduction', 'abdFailedCustomerWhip3'
  1176. end
  1177. if $ARGS[0] = 'abdFailedCustomerWhip3':
  1178. *clr & cla
  1179. menu_off = 1
  1180. pain['labia'] += 10
  1181. pain['clitoris'] += 10
  1182. pain['asshole'] += 10
  1183. pcs_ass += 1
  1184. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorewhip3.mp4"></video></center>'
  1185. 'As if the baton wasn''t enough, your master reaches for a long dildo attached to a stick.'
  1186. 'With one stroke he penetrates your dry ass and fixes the stick to the wall. The stick is not wooden... it is metal and very heavy. It''s weight is enough to push your guts aside as it presses against your intestinal walls.'
  1187. *nl
  1188. 'He then picks up a different weapon - a cat-o-nine whip that''s made of leather.'
  1189. 'His target is the same - your now raw and heavily stinging labia and clitoris.'
  1190. gs 'arousal', 'anal', 20, 'sub', 'bound', 'maso', 'humiliation', 'rough'
  1191. gs 'stat'
  1192. act 'Continue':gt 'abduction', 'abdFailedCustomerWhip4'
  1193. end
  1194. if $ARGS[0] = 'abdFailedCustomerWhip4':
  1195. *clr & cla
  1196. menu_off = 1
  1197. pain['labia'] += 20
  1198. pain['clitoris'] += 20
  1199. pain['asshole'] += 20
  1200. pcs_mood = 5
  1201. pcs_ass += 1
  1202. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhorewhip4.mp4"></video></center>'
  1203. 'After this even rougher punishment, you are on the brink of fainting.'
  1204. 'Your master brings another device on a stick - a vibrator with a large head.'
  1205. 'He buries the head deep between your labia while touching your clitoris directly, your position ideal for this.'
  1206. *nl
  1207. 'When the device is turned on, you realize it must be on the highest setting. It almost makes you orgasm instantly.'
  1208. 'Your master leaves, and you are left alone with this device turned on, the anal dildo still pushing deep into your ass as well. Everything aches from this inhuman position.'
  1209. 'You pass in and out of consciousness, every now and then having strong orgasms mixed with a lot of pain. You tremble helplessly.'
  1210. 'The only sounds in the room are your moans and the humming of the vibrator.'
  1211. gs 'arousal', 'vaginal_vibe', 240, 'sub', 'bound', 'maso', 'humiliation'
  1212. gs 'stat'
  1213. act 'Endure':gt 'abduction', 'abdFailedCustomerChainedBack'
  1214. end
  1215. if $ARGS[0] = 'abdFailedCustomerChainedBack':
  1216. menu_off = 1
  1217. minut += 5
  1218. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/chainedback.jpg"></center>'
  1219. 'After what seems like an eternity, you''re unbound and returned to your usual place - chained to the wall.'
  1220. act 'Continue':gt 'abduction', 'abdRoom'
  1221. end
  1222. if $ARGS[0] = 'abdTrainDildos':
  1223. menu_off = 1
  1224. dildoSmall = 10
  1225. dildoRegular = 20
  1226. dildoBig = 30
  1227. dildoHorse = 35
  1228. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhoredildos1.jpg"></center>'
  1229. 'You take the dildos from the ground and clean them up a bit in the shower.'
  1230. 'There are four of them: small, regular, big, and horse sized.'
  1231. act 'Train your ass':gt 'abduction', 'abdTrainDildosAnalGate'
  1232. act 'Train your mouth':gt 'abduction', 'abdTrainDildosMouthGate'
  1233. if pcs_vag > 0:
  1234. act 'Train your pussy':gt 'abduction', 'abdTrainDildosVaginaGate'
  1235. end
  1236. act 'Go back':gt 'abduction', 'abdRoom'
  1237. end
  1238. if $ARGS[0] = 'abdTrainDildosVaginaGate':
  1239. menu_off = 1
  1240. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhoredildos1.jpg"></center>'
  1241. act 'Pick the small dildo':gt 'abduction', 'abdTrainDildosSmall'
  1242. act 'Pick the regular dildo':gt 'abduction', 'abdTrainDildosRegular'
  1243. act 'Pick the big dildo':gt 'abduction', 'abdTrainDildosBig'
  1244. act 'Pick the horse sized dildo':gt 'abduction', 'abdTrainDildosHorse'
  1245. act 'Go back':gt 'abduction', 'abdTrainDildos'
  1246. end
  1247. if $ARGS[0] = 'abdTrainDildosAnalGate':
  1248. menu_off = 1
  1249. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhoredildos1.jpg"></center>'
  1250. act 'Pick the small dildo':gt 'abduction', 'abdTrainDildosAnalSmall'
  1251. act 'Pick the regular dildo':gt 'abduction', 'abdTrainDildosAnalRegular'
  1252. act 'Pick the big dildo':gt 'abduction', 'abdTrainDildosAnalBig'
  1253. act 'Pick the horse sized dildo':gt 'abduction', 'abdTrainDildosAnalHorse'
  1254. act 'Go back':gt 'abduction', 'abdTrainDildos'
  1255. end
  1256. if $ARGS[0] = 'abdTrainDildosMouthGate':
  1257. menu_off = 1
  1258. '<center><img <<$set_imgh>> src="images/locations/shared/abduction/sex/slavewhoredildos1.jpg"></center>'
  1259. act 'Pick the small dildo':gt 'abduction', 'abdTrainDildosMouthSmall'
  1260. act 'Pick the regular dildo':gt 'abduction', 'abdTrainDildosMouthRegular'
  1261. act 'Pick the big dildo':gt 'abduction', 'abdTrainDildosMouthBig'
  1262. act 'Pick the horse sized dildo':gt 'abduction', 'abdTrainDildosMouthHorse'
  1263. act 'Go back':gt 'abduction', 'abdTrainDildos'
  1264. end
  1265. if $ARGS[0] = 'abdTrainDildosSmall':
  1266. menu_off = 1
  1267. if pcs_vag > dildoSmall:
  1268. 'You feel that your pussy can accommodate this dildo easily.'
  1269. else
  1270. 'You feel that this dildo will stretch your pussy, making it a bit deeper and wider.'
  1271. end
  1272. act 'Use it':gt 'abduction', 'abdTrainDildosSmallUse'
  1273. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosVaginaGate'
  1274. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1275. end
  1276. if $ARGS[0] = 'abdTrainDildosSmallUse':
  1277. menu_off = 1
  1278. dick = 10
  1279. if pcs_vag > dildoSmall:
  1280. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildossmall.mp4"></video></center>'
  1281. 'You start fucking the dildo with ease. Your pussy swallows it whole without a single problem.'
  1282. gs 'arousal', 'vaginal_dildo', 60
  1283. else
  1284. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildossmallhurt.mp4"></video></center>'
  1285. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1286. 'It hurts, but you can feel that some progress was made.'
  1287. pain['vaginal'] += 5
  1288. pcs_vag += 1
  1289. gs 'stat'
  1290. gs 'arousal', 'vaginal_dildo', 60, 'rough'
  1291. end
  1292. act 'Continue':gt 'abduction', 'abdTrainDildosSmall'
  1293. end
  1294. if $ARGS[0] = 'abdTrainDildosRegular':
  1295. menu_off = 1
  1296. if pcs_vag >= dildoRegular:
  1297. 'You feel that your pussy can accommodate this dildo easily.'
  1298. act 'Use it':gt 'abduction', 'abdTrainDildosRegularUse'
  1299. elseif pcs_vag <= dildoRegular and pcs_vag > dildoSmall:
  1300. 'You feel that this dildo will stretch your pussy, making it a bit deeper and wider.'
  1301. act 'Use it':gt 'abduction', 'abdTrainDildosRegularUse'
  1302. else
  1303. 'You can clearly see that this dildo will tear your pussy apart if it''s inserted all the way in.'
  1304. end
  1305. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosVaginaGate'
  1306. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1307. end
  1308. if $ARGS[0] = 'abdTrainDildosRegularUse':
  1309. menu_off = 1
  1310. dick = 20
  1311. if pcs_vag > dildoRegular:
  1312. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosregular.mp4"></video></center>'
  1313. 'You start fucking the dildo with ease. Your pussy swallows it whole without any problem.'
  1314. gs 'arousal', 'vaginal_dildo', 60
  1315. else
  1316. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosregularhurt.mp4"></video></center>'
  1317. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1318. 'It hurts, but you can feel that some progress was made.'
  1319. pain['vaginal'] += 5
  1320. pcs_vag += 1
  1321. gs 'stat'
  1322. gs 'arousal', 'vaginal_dildo', 60, 'rough'
  1323. end
  1324. act 'Continue':gt 'abduction', 'abdTrainDildosRegular'
  1325. end
  1326. if $ARGS[0] = 'abdTrainDildosBig':
  1327. menu_off = 1
  1328. if pcs_vag >= dildoBig:
  1329. 'You feel that your pussy can accommodate this dildo easily.'
  1330. act 'Use it':gt 'abduction', 'abdTrainDildosBigUse'
  1331. elseif pcs_vag <= dildoBig and pcs_vag > dildoRegular:
  1332. 'You feel that this dildo will stretch your pussy, making it a bit deeper and wider.'
  1333. act 'Use it':gt 'abduction', 'abdTrainDildosBigUse'
  1334. else
  1335. 'You can clearly see that this dildo will tear your pussy apart if it''s inserted all the way in.'
  1336. end
  1337. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosVaginaGate'
  1338. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1339. end
  1340. if $ARGS[0] = 'abdTrainDildosBigUse':
  1341. menu_off = 1
  1342. dick = 30
  1343. if pcs_vag > dildoBig:
  1344. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosbig.mp4"></video></center>'
  1345. 'You start fucking the dildo with ease. Your pussy swallows it whole without any problem.'
  1346. gs 'arousal', 'vaginal_dildo', 60
  1347. else
  1348. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosbighurt.mp4"></video></center>'
  1349. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1350. 'It hurts, but you can feel that some progress was made.'
  1351. pain['vaginal'] += 5
  1352. pcs_vag += 1
  1353. gs 'stat'
  1354. gs 'arousal', 'vaginal_dildo', 60, 'rough'
  1355. end
  1356. act 'Continue':gt 'abduction', 'abdTrainDildosBig'
  1357. end
  1358. if $ARGS[0] = 'abdTrainDildosHorse':
  1359. menu_off = 1
  1360. if pcs_vag >= dildoHorse:
  1361. 'You feel that your pussy can accommodate this dildo easily.'
  1362. act 'Use it':gt 'abduction', 'abdTrainDildosHorseUse'
  1363. elseif pcs_vag <= dildoHorse and pcs_vag > dildoBig:
  1364. 'You feel that this dildo will stretch your pussy, making it a bit deeper and wider.'
  1365. act 'Use it':gt 'abduction', 'abdTrainDildosHorseUse'
  1366. else
  1367. 'You can clearly see that this dildo will tear your pussy apart if it''s inserted all the way in.'
  1368. end
  1369. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosVaginaGate'
  1370. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1371. end
  1372. if $ARGS[0] = 'abdTrainDildosHorseUse':
  1373. menu_off = 1
  1374. dick = 35
  1375. if pcs_vag > dildoHorse:
  1376. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildoshorse.mp4"></video></center>'
  1377. 'You start fucking the dildo with ease. Your pussy swallows it whole without any problem.'
  1378. gs 'arousal', 'vaginal_dildo', 60
  1379. else
  1380. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildoshorsehurt.mp4"></video></center>'
  1381. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1382. 'It hurts, but you can feel that some progress was made.'
  1383. pain['vaginal'] += 5
  1384. pcs_vag += 1
  1385. gs 'stat'
  1386. gs 'arousal', 'vaginal_dildo', 60, 'rough'
  1387. end
  1388. act 'Continue':gt 'abduction', 'abdTrainDildosHorse'
  1389. end
  1390. if $ARGS[0] = 'abdTrainDildosAnalSmall':
  1391. menu_off = 1
  1392. if pcs_ass > dildoSmall:
  1393. 'You feel that your anus can accommodate this dildo easily.'
  1394. else
  1395. 'You feel that this dildo will stretch your anus, making it a bit deeper and wider.'
  1396. end
  1397. act 'Use it':gt 'abduction', 'abdTrainDildosAnalSmallUse'
  1398. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosAnalGate'
  1399. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1400. end
  1401. if $ARGS[0] = 'abdTrainDildosAnalSmallUse':
  1402. menu_off = 1
  1403. dick = 10
  1404. if pcs_ass > dildoSmall:
  1405. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalsmall.mp4"></video></center>'
  1406. 'You start fucking the dildo with ease as your anus swallows it whole without any problem.'
  1407. gs 'arousal', 'anal_dildo', 60
  1408. else
  1409. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalsmallhurt.mp4"></video></center>'
  1410. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1411. 'It hurts, but you can feel that some progress was made.'
  1412. pain['asshole'] += 5
  1413. pcs_ass += 1
  1414. gs 'stat'
  1415. gs 'arousal', 'anal_dildo', 60, 'rough'
  1416. end
  1417. act 'Continue':gt 'abduction', 'abdTrainDildosAnalSmall'
  1418. end
  1419. if $ARGS[0] = 'abdTrainDildosAnalRegular':
  1420. menu_off = 1
  1421. if pcs_ass >= dildoRegular:
  1422. 'You feel that your anus can accommodate this dildo easily.'
  1423. act 'Use it':gt 'abduction', 'abdTrainDildosAnalRegularUse'
  1424. elseif pcs_ass <= dildoRegular and pcs_ass > dildoSmall:
  1425. 'You feel that this dildo will stretch your anus, making it a bit deeper and wider.'
  1426. act 'Use it':gt 'abduction', 'abdTrainDildosAnalRegularUse'
  1427. else
  1428. 'You can clearly see that this dildo will tear your anus apart if it''s inserted all the way in.'
  1429. end
  1430. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosAnalGate'
  1431. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1432. end
  1433. if $ARGS[0] = 'abdTrainDildosAnalRegularUse':
  1434. menu_off = 1
  1435. dick = 20
  1436. if pcs_ass > dildoRegular:
  1437. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalregular.mp4"></video></center>'
  1438. 'You start fucking the dildo with ease as your anus swallows it whole without any problem.'
  1439. gs 'arousal', 'anal_dildo', 60
  1440. else
  1441. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalregularhurt.mp4"></video></center>'
  1442. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1443. 'It hurts, but you can feel that some progress was made.'
  1444. pain['asshole'] += 5
  1445. pcs_ass += 1
  1446. gs 'stat'
  1447. gs 'arousal', 'anal_dildo', 60, 'rough'
  1448. end
  1449. act 'Continue':gt 'abduction', 'abdTrainDildosAnalRegular'
  1450. end
  1451. if $ARGS[0] = 'abdTrainDildosAnalBig':
  1452. menu_off = 1
  1453. if pcs_ass >= dildoBig:
  1454. 'You feel that your anus can accommodate this dildo easily.'
  1455. act 'Use it':gt 'abduction', 'abdTrainDildosAnalBigUse'
  1456. elseif pcs_ass <= dildoBig and pcs_ass > dildoRegular:
  1457. 'You feel that this dildo will stretch your anus, making it a bit deeper and wider.'
  1458. act 'Use it':gt 'abduction', 'abdTrainDildosAnalBigUse'
  1459. else
  1460. 'You can clearly see that this dildo will tear your anus apart if it''s inserted all the way in.'
  1461. end
  1462. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosAnalGate'
  1463. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1464. end
  1465. if $ARGS[0] = 'abdTrainDildosAnalBigUse':
  1466. menu_off = 1
  1467. dick = 30
  1468. if pcs_ass > dildoBig:
  1469. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalbig.mp4"></video></center>'
  1470. 'You start fucking the dildo with ease as your anus swallows it whole without any problem.'
  1471. gs 'arousal', 'anal_dildo', 60
  1472. else
  1473. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalbighurt.mp4"></video></center>'
  1474. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1475. 'It hurts, but you can feel that some progress was made.'
  1476. pain['asshole'] += 5
  1477. pcs_ass += 1
  1478. gs 'stat'
  1479. gs 'arousal', 'anal_dildo', 60, 'rough'
  1480. end
  1481. act 'Continue':gt 'abduction', 'abdTrainDildosAnalBig'
  1482. end
  1483. if $ARGS[0] = 'abdTrainDildosAnalHorse':
  1484. menu_off = 1
  1485. if pcs_ass >= dildoHorse:
  1486. 'You feel that your anus can accommodate this dildo easily.'
  1487. act 'Use it':gt 'abduction', 'abdTrainDildosAnalHorseUse'
  1488. elseif pcs_ass <= dildoHorse and pcs_ass > dildoBig:
  1489. 'You feel that this dildo will stretch your anus making it a bit deeper and wider.'
  1490. act 'Use it':gt 'abduction', 'abdTrainDildosAnalHorseUse'
  1491. else
  1492. 'You can clearly see that this dildo will tear your anus apart if it''s inserted all the way in.'
  1493. end
  1494. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosAnalGate'
  1495. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1496. end
  1497. if $ARGS[0] = 'abdTrainDildosAnalHorseUse':
  1498. menu_off = 1
  1499. dick = 35
  1500. if pcs_ass > dildoBig:
  1501. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalhorse.mp4"></video></center>'
  1502. 'You start fucking the dildo with ease as your anus swallows it whole without any problem.'
  1503. gs 'arousal', 'anal_dildo', 60
  1504. else
  1505. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosanalhorsehurt.mp4"></video></center>'
  1506. 'You start to fuck yourself with this dildo, knowing it is bigger than what you can handle.'
  1507. 'It hurts, but you can feel that some progress was made.'
  1508. pain['asshole'] += 5
  1509. pcs_ass += 1
  1510. gs 'stat'
  1511. gs 'arousal', 'anal_dildo', 60, 'rough'
  1512. end
  1513. act 'Continue':gt 'abduction', 'abdTrainDildosAnalHorse'
  1514. end
  1515. if $ARGS[0] = 'abdTrainDildosMouthSmall':
  1516. menu_off = 1
  1517. if pcs_throat > dildoSmall:
  1518. 'You feel that your throat can accommodate this dildo easily.'
  1519. else
  1520. 'You feel that this dildo will stretch your throat, making it a bit deeper.'
  1521. end
  1522. act 'Use it':gt 'abduction', 'abdTrainDildosMouthSmallUse'
  1523. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosMouthGate'
  1524. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1525. end
  1526. if $ARGS[0] = 'abdTrainDildosMouthSmallUse':
  1527. menu_off = 1
  1528. dick = 10
  1529. if pcs_throat > dildoSmall:
  1530. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthsmall.mp4"></video></center>'
  1531. 'You start sucking the dildo with ease as your throat swallows it whole without any problem.'
  1532. gs 'arousal', 'deepthroat', 60
  1533. else
  1534. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthsmallhurt.mp4"></video></center>'
  1535. 'You start to suck the dildo, knowing it is bigger than what you can handle and pushing it as deep as possible while trying not to suffocate.'
  1536. 'It hurts, but you can feel that some progress was made.'
  1537. pain['throat'] += 5
  1538. pcs_throat += 1
  1539. gs 'stat'
  1540. gs 'arousal', 'deepthroat', 60, 'rough'
  1541. end
  1542. act 'Continue':gt 'abduction', 'abdTrainDildosMouthSmall'
  1543. end
  1544. if $ARGS[0] = 'abdTrainDildosMouthRegular':
  1545. menu_off = 1
  1546. if pcs_throat >= dildoRegular:
  1547. 'You feel that your throat can accommodate this dildo easily.'
  1548. act 'Use it':gt 'abduction', 'abdTrainDildosMouthRegularUse'
  1549. elseif pcs_throat <= dildoRegular and pcs_throat > dildoSmall:
  1550. 'You feel that this dildo will stretch your throat, making it a bit deeper.'
  1551. act 'Use it':gt 'abduction', 'abdTrainDildosMouthRegularUse'
  1552. else
  1553. 'You can clearly see that this dildo will tear your throat apart if it''s inserted all the way in.'
  1554. end
  1555. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosMouthGate'
  1556. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1557. end
  1558. if $ARGS[0] = 'abdTrainDildosMouthRegularUse':
  1559. menu_off = 1
  1560. dick = 20
  1561. if pcs_throat > dildoRegular:
  1562. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthregular.mp4"></video></center>'
  1563. 'You start sucking the dildo with ease as your throat swallows it whole without any problem.'
  1564. gs 'arousal', 'deepthroat', 60
  1565. else
  1566. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthregularhurt.mp4"></video></center>'
  1567. 'You start to suck the dildo, knowing it is bigger than what you can handle and pushing it as deep as possible while trying not to suffocate.'
  1568. 'It hurts but you can feel that some progress was made.'
  1569. pain['throat'] += 5
  1570. pcs_throat += 1
  1571. gs 'stat'
  1572. gs 'arousal', 'deepthroat', 60, 'rough'
  1573. end
  1574. act 'Continue':gt 'abduction', 'abdTrainDildosMouthRegular'
  1575. end
  1576. if $ARGS[0] = 'abdTrainDildosMouthBig':
  1577. menu_off = 1
  1578. if pcs_throat >= dildoBig:
  1579. 'You feel that your throat can accommodate this dildo easily.'
  1580. act 'Use it':gt 'abduction', 'abdTrainDildosMouthBigUse'
  1581. elseif pcs_throat <= dildoBig and pcs_throat > dildoRegular:
  1582. 'You feel that this dildo will stretch your throat, making it a bit deeper.'
  1583. act 'Use it':gt 'abduction', 'abdTrainDildosMouthBigUse'
  1584. else
  1585. 'You can clearly see that this dildo will tear your throat apart if it''s inserted all the way in.'
  1586. end
  1587. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosMouthGate'
  1588. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1589. end
  1590. if $ARGS[0] = 'abdTrainDildosMouthBigUse':
  1591. menu_off = 1
  1592. dick = 30
  1593. if pcs_throat > dildoBig:
  1594. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthbig.mp4"></video></center>'
  1595. 'You start sucking the dildo with ease as your throat swallows it whole without any problem.'
  1596. gs 'arousal', 'deepthroat', 60
  1597. else
  1598. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthbighurt.mp4"></video></center>'
  1599. 'You start to suck the dildo, knowing it is bigger than what you can handle and pushing it as deep as possible while trying not to suffocate.'
  1600. 'It hurts, but you can feel that some progress was made.'
  1601. pain['throat'] += 5
  1602. pcs_throat += 1
  1603. gs 'stat'
  1604. gs 'arousal', 'deepthroat', 60, 'rough'
  1605. end
  1606. act 'Continue':gt 'abduction', 'abdTrainDildosMouthBig'
  1607. end
  1608. if $ARGS[0] = 'abdTrainDildosMouthHorse':
  1609. menu_off = 1
  1610. if pcs_throat >= dildoHorse:
  1611. 'You feel that your throat can accommodate this dildo easily.'
  1612. act 'Use it':gt 'abduction', 'abdTrainDildosMouthHorseUse'
  1613. elseif pcs_throat <= dildoHorse and pcs_throat > dildoBig:
  1614. 'You feel that this dildo will stretch your throat, making it a bit deeper.'
  1615. act 'Use it':gt 'abduction', 'abdTrainDildosMouthHorseUse'
  1616. else
  1617. 'You can clearly see that this dildo will tear your throat apart if it''s inserted all the way in.'
  1618. end
  1619. act 'Choose different dildo':gt 'abduction', 'abdTrainDildosMouthGate'
  1620. act 'Go back to your bed':gt 'abduction', 'abdRoom'
  1621. end
  1622. if $ARGS[0] = 'abdTrainDildosMouthHorseUse':
  1623. menu_off = 1
  1624. dick = dildoHorse
  1625. if pcs_throat > dildoHorse:
  1626. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthhorse.mp4"></video></center>'
  1627. 'You start sucking the dildo with ease as your throat swallows it whole without any problem.'
  1628. gs 'stat'
  1629. gs 'arousal', 'deepthroat', 60
  1630. else
  1631. '<center><video autoplay loop src="images/locations/shared/abduction/sex/slavewhoredildosmouthhorsehurt.mp4"></video></center>'
  1632. 'You start to suck the dildo, knowing it is bigger than what you can handle and pushing it as deep as possible while trying not to suffocate.'
  1633. 'It hurts, but you can feel that some progress was made.'
  1634. pain['throat'] += 5
  1635. pcs_throat += 1
  1636. gs 'stat'
  1637. gs 'arousal', 'deepthroat', 60, 'rough'
  1638. end
  1639. act 'Continue':gt 'abduction', 'abdTrainDildosMouthHorse'
  1640. end
  1641. --- abduction ---------------------------------