selfplay.tw 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309
  1. :: selfplay[event]
  2. <<set $selfplayEvent = $selfplayEvent ?? {}>>
  3. <<if $location.tags.includes('bedroomNpc') or $location.tags.includes('bedroom')>>
  4. <<image "shared/sex/mast/start.jpg">>
  5. <<else>>
  6. <<image "shared/sex/mast/start.jpg">>
  7. <</if>>
  8. <<gs 'selfplay_options'>>
  9. <<if $selfplayEvent.usedDildo>>
  10. <<set _dildoData = $inventory.metadata($selfplayEvent.usedDildo)>>
  11. <p>You are using a <<=_dildoData.length>>&nbsp;cm long dildo.</p>
  12. <</if>>
  13. :: selfplay_options[include]
  14. <<if $pc.horny > 0>>
  15. <<act 'Caress your clitoris'>>
  16. <<gt 'selfplay_caress_clit'>>
  17. <</act>>
  18. <</if>>
  19. <<if $selfplayEvent.usedDildo>>
  20. <<set _dildoData = $inventory.metadata($selfplayEvent.usedDildo)>>
  21. <<act `'Use '+_dildoData.label+' on your pussy'`>>
  22. <<gt 'selfplay_dildo_pussy'>>
  23. <</act>>
  24. <<act `'Stop using '+_dildoData.label`>>
  25. <<set $selfplayEvent.usedDildo = null>>
  26. <<gt 'selfplay'>>
  27. <</act>>
  28. <<else>>
  29. <<set _availablDildos = $inventory.itemsInContainerByMetadata({type:'dildo'})>>
  30. <<for _availablDildo, _count range _availablDildos>>
  31. <<set _dildoData = $inventory.metadata(_availablDildo)>>
  32. <<act `'Start using '+_dildoData.label` undefined `{capture:['_availablDildo']}`>>
  33. <<set $selfplayEvent.usedDildo = _availablDildo>>
  34. <<gt 'selfplay'>>
  35. <</act>>
  36. <</for>>
  37. <</if>>
  38. <<act 'Finish'>>
  39. <<gt $location>>
  40. <</act>>
  41. :: selfplay_caress_clit[event]
  42. <<set $selfplaytime += 5>>
  43. <!--<<gs 'selfplay' 'sis_prov'>>
  44. <<if $loc == 'vanrPar'>>
  45. <<image "shared/sex/mast/klitvann.jpg">>
  46. <<else>>-->
  47. <<video "shared/sex/mast/klit.mp4">>
  48. <!--<</if>>-->
  49. <<if getvar("$pc.mood") >= 20>>
  50. <<set $pc.horny += rand(5, 10)>>
  51. You put your hand down between your legs and gently rub your fingers over your groin. Running your fingers between your pussy lips, you scout out your clitoris and lightly run your finger over it repeatedly. The feeling you get out of this is great, and you feel a pleasant warmth spreading in your lower area.
  52. <<else>>
  53. <<set $pc.horny += rand(0, 1)>>
  54. You caress your clit with your fingers. It feels nice, but you're in such a bad mood that you're too distracted to really enjoy it.
  55. <</if>>
  56. <!--<<set $orgasm_txt = 'Suddenly, you rub your clit just right and your whole body starts to shiver in orgasm. The intensity of the orgasm nearly makes you scream, but you bite down on your lip and do your best to stifle down the moans so no one hears you.'>>-->
  57. <<arouse 'clit_finger' 5 `['masturbate']`>>
  58. <<gs 'selfplay_options'>>
  59. <!--<<set $time.minutes -= 15>>
  60. <<$AnyaMsg>>
  61. <<actCLA 'Stop touching yourself'>>
  62. <<gt 'selfplay' 'stop'>>
  63. <</actCLA>>
  64. <<if $org_temp == $orgasm>>
  65. <<gs 'selfplay' 'fingering'>>
  66. <</if>>
  67. -->
  68. :: selfplay_dildo_pussy[event]
  69. <<set _insertionEffect = func('sexFunctions','insertionEffect',{toyId:$selfplayEvent.usedDildo})>>
  70. <<if $pc.thinksIsVirgin and _insertionEffect.breaksHymen>>
  71. <p>Are you sure? Doing so will most likely break your hymen.</p>
  72. <<actCLA 'Yes, do it'>>
  73. <<gs 'selfplay_dildo_pussy_execute'>>
  74. <</actCLA>>
  75. <<actCLA 'On second thoughts, no'>>
  76. <<gt 'selfplay'>>
  77. <</actCLA>>
  78. <<else>>
  79. <<gs 'selfplay_dildo_pussy_execute'>>
  80. <</if>>
  81. :: selfplay_dildo_pussy_execute[include]
  82. <<set $selfplaytime += 15>>
  83. /*<<gs 'selfplay' 'sis_prov'>>
  84. <<if getvar("$husband") > 0 and getvar("$husbandrink") != 10 and $loc == 'bedr'>>
  85. <<gt 'husbsex' 'husb_mastr_vtor'>>
  86. <</if>>
  87. <!-- !!if $loc = 'bedrPar':'<<image `'shared/sex/mast/dildo.jpg'`>>'-->
  88. <<if $loc == 'vanrPar'>>
  89. <<image "shared/sex/mast/dildovann.jpg">>
  90. <<else>>*/
  91. <<image "shared/sex/mast/dildo.jpg">>
  92. /*<</if>>*/
  93. <<gs 'sex_dildo_vagina' 15 $selfplayEvent.usedDildo `['masturbate']`>>
  94. /*<<$AnyaMsg>>
  95. <<actCLA 'Stop using the dildo'>>
  96. <<gt 'selfplay' 'start'>>
  97. <</actCLA>>*/
  98. <<actCLA 'Continue'>>
  99. <<gt 'selfplay'>>
  100. <</actCLA>>
  101. :: selfplay_old
  102. <<if $location_var[$here][0] == 'start'>>
  103. <<if getvar("$mastrOnce") == 0>>
  104. <<set $mastrOnce = 1>>
  105. <<set $org_temp = $orgasm>>
  106. <<if $pc.pcs_inhib < 30>>
  107. <<run $pc.skillExperienceGain('inhibition',rand(1,3))>>
  108. <</if>>
  109. <</if>>
  110. <<if getvar("$sisboytrio") > 0 and getvar("$sis_watch") == 0 and $loc == 'bedrPar'>>
  111. <<set $sis_watch = 1>>
  112. <<if getvar("$locat['Anya_inroom']") == 1>>
  113. <<set $sis_watch = 2>>
  114. <</if>>
  115. <</if>>
  116. <!-- !!then the calculation invasion-->
  117. <<if $loc == 'vanrPar'>>
  118. <<if getvar("$selfplaytime") >= 60>>
  119. <</if>>
  120. <</if>>
  121. <<gs 'selfplay' 'sis_prov'>>
  122. <!-- ! This keeps resetting your dildo choices and makes it impossible to masturbate with them. Sicaa-->
  123. <!-- !if dildo + middildo + largedildo + bigdildo + extradildo + superdildo + maddildo ! 0:-->
  124. <!-- ! dildonumber = 0-->
  125. <!-- !end-->
  126. <<if $pc.horny > 0 and $pc.agape < 3>>
  127. <<gs 'selfplay' 'anal_fingering'>>
  128. <</if>>
  129. <<if $pc.horny > 10>>
  130. <<if getvar("$dildo") >= 1 or getvar("$middildo") == 1 or getvar("$largedildo") == 1 or getvar("$bigdildo") == 1 or getvar("$extradildo") == 1 or getvar("$superdildo") == 1 or getvar("$maddildo") == 1>>
  131. <<if getvar("$dildonumber") > 0>>
  132. <!-- Boy Ddildonumber -->
  133. <<if $pc.vgape <= 0>>
  134. <</if>>
  135. <<if $pc.agape <= 0>>
  136. <<actCLA 'Use the dildo on your ass'>>
  137. <<set $selfplaytime += 15>>
  138. <<gs 'selfplay' 'sis_prov'>>
  139. <!-- !!if $loc = 'bedrPar':'<<image `'shared/sex/mast/dildoanal.jpg'`>>'-->
  140. <<if $loc == 'vanrPar'>>
  141. <<image "shared/sex/mast/dildovann.jpg">>
  142. <<else>>
  143. <<image "shared/sex/mast/dildoanal.jpg">>
  144. <</if>>
  145. <<gs 'dinSex2' 'd_analsex_dildo' 15 'masturbate'>>
  146. <<$AnyaMsg>>
  147. <</actCLA>>
  148. <</if>>
  149. <</if>>
  150. <</if>>
  151. <</if>>
  152. <<if $pc.horny > 0>>
  153. <<gs 'selfplay' 'fingering'>>
  154. <</if>>
  155. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  156. <<gs 'selfplay' 'van_vtor'>>
  157. <</if>>
  158. <<if $loc == 'gadsarai'>>
  159. <<run $npcs.inc('A66','horny',1)>>
  160. Bandit the dog is watching you curiously.
  161. <</if>>
  162. <</if>>
  163. <!-- !! Bathroom Dildo Info-->
  164. <!-- !! bathtub_suction_dildo - dildo that is applied on the low wall of a bathtub-->
  165. <!-- !! bath_shower_dildo - dildo that is applied onto the wall of a bathtub that also has a shower-->
  166. <!-- !! glass_shower_dildo - dildo applied to glass wall of a shower with no tub-->
  167. <<if $location_var[$here][0] == 'suction_dildo'>>
  168. <<set _suction_dildo_help = State.getVar('$'+$loc+'_bathtub_dildo')>>
  169. <<if _suction_dildo_help != 1 and $suction_dildo > 0>>
  170. You can stick your suction dildo to the <<link "bath tub">><<gs "selfplay" "bathtub_suction_dildo_apply">><<gt $location>><</link>> to play with.
  171. <<elseif _suction_dildo_help == 1>>
  172. Your <<link "suction dildo">><<gs 'selfplay' 'bath_suction_dildo'>><</link>> is stuck to the bath tub.
  173. <</if>>
  174. <<if getvar("$suction_dildo") > 0 and State.getVar('$'+$loc+'_bath_shower_dildo') != 1 and State.getVar('$'+$loc+'_glass_shower_dildo') != 1>>
  175. You can also stick a suction dildo inside <<link "the shower">><<gs "selfplay" "shower_suction_dildo_apply">><</link>>.
  176. <<elseif State.getVar('$'+$loc+'_bath_shower_dildo') == 1 or State.getVar('$'+$loc+'_glass_shower_dildo') == 1>>
  177. Your suction dildo is <<link "inside the shower">><<gt 'selfplay' 'shower_suction_dildo'>><</link>>.
  178. <</if>>
  179. <</if>>
  180. <<if $location_var[$here][0] == 'bathtub_suction_dildo_apply'>>
  181. <<run State.setVar("$"+$loc+'_bathtub_dildo',1)>>
  182. <<run State.setVar("$"+$loc+'_suction_dildo', State.getVar("$"+$loc+'_suction_dildo') + 1)>>
  183. <<set $suction_dildo -= 1>>
  184. <</if>>
  185. <<if $location_var[$here][0] == 'bathtub_suction_dildo_remove'>>
  186. <<run State.setVar("$"+$loc+'_bathtub_dildo',0)>>
  187. <<run State.setVar("$"+$loc+'_suction_dildo', State.getVar("$"+$loc+'_suction_dildo') - 1)>>
  188. <<set $suction_dildo += 1>>
  189. <</if>>
  190. <<if $location_var[$here][0] == 'shower_suction_dildo_apply'>>
  191. <<run State.setVar("$"+$loc+'_suction_dildo', State.getVar("$"+$loc+'_suction_dildo') + 1)>>
  192. <<if $bathtype == 'bathtub shower'>>
  193. <<run State.setVar("$"+$loc+'_bath_shower_dildo',1)>>
  194. <<elseif $bathtype == "glass shower" or $bathtype == "glass shower" and $tub>>
  195. <<run State.setVar("$"+$loc+'_glass_shower_dildo',1)>>
  196. <</if>>
  197. <<set $suction_dildo -= 1>>
  198. <</if>>
  199. <<if $location_var[$here][0] == 'shower_suction_dildo_remove'>>
  200. <<run State.setVar("$"+$loc+'_suction_dildo', State.getVar("$"+$loc+'_suction_dildo') - 1)>>
  201. <<if $bathtype == 'bathtub shower'>>
  202. <<run State.setVar("$"+$loc+'_bath_shower_dildo',0)>>
  203. <<elseif $bathtype == 'glass shower' or $bathtype == 'glass shower' and $tub>>
  204. <<run State.setVar("$"+$loc+'_glass_shower_dildo',0)>>
  205. <</if>>
  206. <<set $suction_dildo += 1>>
  207. <</if>>
  208. <<if $location_var[$here][0] == 'bathtub_dildo_check'>>
  209. <<if State.getVar('$'+$loc+'_bathtub_dildo') == 1>>
  210. <<actCLA 'Ride your bathtub dildo'>>
  211. <<gt 'selfplay' 'bath_bathtub_suction_dildo_ride'>>
  212. <</actCLA>>
  213. <</if>>
  214. <</if>>
  215. <<if $location_var[$here][0] == 'shower_dildo_check'>>
  216. <<if State.getVar('$'+$loc+'_bathtub_dildo') == 1>>
  217. <<actCLA 'Ride your bathtub dildo'>>
  218. <<gt 'selfplay' 'shower_bathtub_suction_dildo_ride'>>
  219. <</actCLA>>
  220. <</if>>
  221. <<if State.getVar('$'+$loc+'_glass_shower_dildo') == 1>>
  222. <<actCLA 'Ride your wall mounted dildo'>>
  223. <<gt 'selfplay' 'glass_shower_suction_dildo_fuck'>>
  224. <</actCLA>>
  225. <<elseif State.getVar('$'+$loc+'_bath_shower_dildo') == 1>>
  226. <<actCLA 'Ride your wall mounted dildo'>>
  227. <<gt 'selfplay' 'shower_bathtub_wall_dildo_fuck'>>
  228. <</actCLA>>
  229. <</if>>
  230. <</if>>
  231. <<if $location_var[$here][0] == 'bath_suction_dildo'>>
  232. <<image "shared/home/bathroom/bathtub_dildo.jpg">>
  233. Your suction dildo is currently stuck onto the bathtub.
  234. <<actCLA 'Leave it there'>>
  235. <<gt $location>>
  236. <</actCLA>>
  237. <<actCLA 'Take it off'>>
  238. <<gs 'selfplay' 'bathtub_suction_dildo_remove'>> <<gt $location>>
  239. <</actCLA>>
  240. <<actCLA 'Ride it'>>
  241. <<gt 'selfplay' 'bath_suction_dildo_ride'>>
  242. <</actCLA>>
  243. <</if>>
  244. <<if $location_var[$here][0] == 'shower_suction_dildo'>>
  245. <<image "shared/home/bathroom/shower_dildo.jpg">>
  246. Your suction dildo is currently stuck on the wall of the shower.
  247. <<actCLA 'Leave it there'>>
  248. <<gt $location>>
  249. <</actCLA>>
  250. <<actCLA 'Take it off'>>
  251. <<gs 'selfplay' 'shower_suction_dildo_remove'>> <<gt $location>>
  252. <</actCLA>>
  253. <</if>>
  254. <!-- !! for using a dildo suctioned to the BATHTUB when not bathing-->
  255. <<if $location_var[$here][0] == 'bath_suction_dildo_ride'>>
  256. <<set $pc.horny += 20>>
  257. <!-- Boy D2 -->
  258. <<video "shared/home/bathroom/bath_dildo.mp4">>
  259. <<if getvar("$dildo_timer") == 0>>
  260. <<set $dildo_timer = 1>>
  261. <<set $dildo_start_minute = $time.minutes>>
  262. <<set $dildo_start_hour = $time.hour>>
  263. <</if>>
  264. <<if $pc.pcs_vag == 0>>
  265. You wince in pain as you sit down on your dildo and it tears through your hymen. After giving yourself a minute to adjust, you tentatively bounce up and down on it, until you start to enjoy yourself.
  266. <<elseif $dildo_start_minute == $time.minutes and $dildo_start_hour == $time.hour>>
  267. You spend 5 minutes bouncing up and down on the dildo mounted on your bathtub wall and having a good time.
  268. <<else>>
  269. You spend 5 more minutes happily bouncing up and down on your bathtub mounted dildo.
  270. <</if>>
  271. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Gasping, quivering, and clenching, you ride out your orgasm while impaled on your bathtub dildo.'>>
  272. <<if $pc.horny >= 90>>
  273. <<set $orgasm_or = 'yes'>>
  274. <</if>>
  275. <<arouse 'vaginal_dildo' 5 >>
  276. <<actCLA 'Keep masturbating'>>
  277. <<gt 'selfplay' 'bath_suction_dildo_ride'>>
  278. <</actCLA>>
  279. <<actCLA 'Finish masturbating'>>
  280. <<set $dildo_timer = 0>>
  281. <<arousalEnd>>
  282. <<gt $location>>
  283. <</actCLA>>
  284. <<actCLA 'Finish masturbating and unmount your dildo'>>
  285. <<set $dildo_timer = 0>>
  286. <<arousalEnd>>
  287. <<gs 'selfplay' 'bathtub_suction_dildo_remove'>>
  288. <<gt $location>>
  289. <</actCLA>>
  290. <</if>>
  291. <!-- !! this is riding a dildo mounted on the low wall of a bath tub during a SHOWER-->
  292. <<if $location_var[$here][0] == 'shower_bathtub_suction_dildo_ride'>>
  293. <<set $vaginal_slip = 10>>
  294. <<set $pc.horny += 20>>
  295. <!-- Boy D2 -->
  296. <<video "shared/home/bathroom/shower_bath_dildo1.mp4">>
  297. <<if getvar("$dildo_timer") == 0>>
  298. <<set $dildo_timer = 1>>
  299. <<set $dildo_start_minute = $time.minutes>>
  300. <<set $dildo_start_hour = $time.hour>>
  301. <</if>>
  302. <<if $pc.pcs_vag == 0>>
  303. Leaving the shower running, you move the curtain aside and ease down onto your bathtub mounted rubber cock.
  304. <p>You wince in pain as it tears through your hymen and slip on the wet tub floor, gasping aloud when you suddenly find yourself ass-to-tub and the entire thing shoved up your pussy.</p>
  305. <i>Ow! Ow! Ow! Ow! I did not mean to take the full length of that thing right away!</i>
  306. Biting hard on your lip, you give yourself a minute to adjust and let your walls stretch out. Eventually you feel a little braver and you tentatively bounce up and down on it. One bounce becomes two, two becomes twelve, and suddenly you are jumping up and down on it with reckless abandon, very much enjoying your big rubber cock.
  307. <<elseif $dildo_start_minute == $time.minutes and $dildo_start_hour == $time.hour>>
  308. Leaving the shower running, you move the curtain aside and ease down onto your bathtub mounted rubber cock.
  309. <<if $loc == 'vanrPar'>>
  310. <i>Haahhh~! Hhhh~! Mmmm~! Unnnh~!</i>
  311. <<if getvar("$locat['Fam_inGad']") == 1>>
  312. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and the fact that your family is gone for the weekend.
  313. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Gasping, quivering, and clenching, you cry out loudly and ride out your orgasm while your voice echos back at you off the walls.'>>
  314. <<else>>
  315. You bounce up and down on your dildo, allowing yourself to sofly moan in pleasure, fairly certain that the sound of the shower ought to cover up most of your voice. Maybe it's just the steam but you feel like you're enjoying yourself a lot more than you might otherwise.
  316. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Gasping, quivering, and clenching, you ride out your orgasm while impaled on your bathtub dildo doing your best not to allow your voice escape and let your family know what you`ve been up to.'>>
  317. <</if>>
  318. <<else>>
  319. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  320. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and making sure anyone on the other side of the wall knows you're enjoying yourself too.
  321. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. You cry out loudly in climax, caught in the euphoric bliss of release, before slowly winding down.'>>
  322. <</if>>
  323. <<else>>
  324. <<if $loc == 'vanrPar'>>
  325. <i>Hnnn~! Hnnnnhhh~! Nnnnn~! Mmmmm~!</i>
  326. You continue bouncing up and down on your dildo, unwilling to finish your shower while you're still enjoying yourself.
  327. <<else>>
  328. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  329. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and making sure anyone on the other side of the wall knows you're enjoying yourself too.
  330. <</if>>
  331. <</if>>
  332. <<if $pc.horny >= 90>>
  333. <<set $orgasm_or = 'yes'>>
  334. <</if>>
  335. <<arouse 'vaginal_dildo' 5 >>
  336. <<actCLA 'Keep masturbating'>>
  337. <<gt 'selfplay' 'shower_bathtub_suction_dildo_ride'>>
  338. <</actCLA>>
  339. <<actCLA 'Finish masturbating and dry off'>>
  340. <<set $dildo_timer = 0>>
  341. <<arousalEnd>>
  342. <<set $mirror_steam = $time.hour>>
  343. <<gt $location>>
  344. <</actCLA>>
  345. <<actCLA 'Finish masturbating, unmount your dildo, and get out and dry off'>>
  346. <<set $dildo_timer = 0>>
  347. <<gs 'selfplay' 'bathtub_suction_dildo_remove'>>
  348. <<arousalEnd>>
  349. <<set $mirror_steam = $time.hour>>
  350. <<gt $location>>
  351. <</actCLA>>
  352. <</if>>
  353. <!-- !! this is riding a dildo mounted on the low wall of a bath tub during a BATH-->
  354. <<if $location_var[$here][0] == 'bath_bathtub_suction_dildo_ride'>>
  355. <<set $vaginal_slip = 10>>
  356. <<set $pc.horny += 20>>
  357. <!-- Boy D2 -->
  358. <<video "shared/home/bathroom/shower_bath_dildo2.mp4">>
  359. <<if getvar("$dildo_timer") == 0>>
  360. <<set $dildo_timer = 1>>
  361. <<set $dildo_start_minute = $time.minutes>>
  362. <<set $dildo_start_hour = $time.hour>>
  363. <</if>>
  364. <<if $pc.pcs_vag == 0>>
  365. Pulling yourself up out of the bath, you point your ass towards your suction mounted dildo and ease your pussy onto it.
  366. <p>You wince in pain as it tears through your hymen and you slip, the bathwater sloshing around from your sudden movement. Next thing you know, you're gasping aloud when you suddenly find yourself ass-to-tub and the entire dildo shoved up your pussy to the hilt.</p>
  367. <i>Ow! Ow! Ow! Ow! I did not mean to take the full length of that thing right away!</i>
  368. Biting hard on your lip, you give yourself a minute to adjust and let your walls stretch out. Eventually you feel a little braver and you tentatively bounce up and down on it. One bounce becomes two, two becomes twelve, and suddenly you are jumping up and down on it with reckless abandon, creating mini waves in the bathwater and very much enjoying your big rubber cock.
  369. <<elseif $dildo_start_minute == $time.minutes and $dildo_start_hour == $time.hour>>
  370. Pulling yourself out of the bath, you decide it's time for a different kind of relaxation and ease down onto your bathtub mounted rubber cock.
  371. <<if $loc == 'vanrPar'>>
  372. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  373. <<if getvar("$locat['Fam_inGad']") == 1>>
  374. You bounce up and down on your dildo, creating sloshes in the bathwater with your motion and moaning loudly, taking advantage of the fact your family is gone for the weekend.
  375. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Legs shaking and splashing bathwater everywhere, you ride out your orgasm while impaled on your dildo, crying out in a loud voice that echos off the bathroom walls.'>>
  376. <<else>>
  377. <i>Haahhh~! Hhhh~! Mmmm~! Unnnh~!</i>
  378. You bounce up and down on your dildo, creating ripples in the bathwater with your motion. In a very tiny voice, you let out small moans, doing your best but unable to completely hold it.
  379. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Legs shaking and splashing bathwater everywhere, you ride out your orgasm while impaled on your bathtub dildo taking strained breaths to prevent your voice escaping and let your family know what you`ve been up to.'>>
  380. <</if>>
  381. <<else>>
  382. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  383. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and making sure anyone on the other side of the wall knows you're enjoying yourself too.
  384. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. You cry out loudly in climax, caught in the euphoric bliss of release, before it slowly winds down.'>>
  385. <</if>>
  386. <<else>>
  387. <<if $loc == 'vanrPar'>>
  388. <<if getvar("$locat['Fam_inGad']") == 1>>
  389. <i>Ahh~! Aaahhhh~! Ahhhh~! Aaaaahhhh~!</i>
  390. You continue bouncing up and down on your dildo, unwilling to finish your shower while you're still enjoying yourself. Maybe it's just the steam in the room but your body feels like it's on fire right now and you can't help but cry out loudly, so happy your family is gone for the weekend.
  391. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Legs shaking and splashing bathwater everywhere, you groan loudly and ride out your orgasm while impaled on your dildo.'>>
  392. <<else>>
  393. <i>Hnnn~! Hnnnnhhh~! Nnnnn~! Mmmmm~!</i>
  394. You continue bouncing up and down on your dildo, unwilling to finish your shower while you're still enjoying yourself. Maybe it's just the steam in the room but your body feels like it's on fire right now and it's so difficult to not let your voice escape and travel into the hallway.
  395. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam yourself all the way down onto your dildo and climax hard all over it. Your walls squeeze tight and you can feel the entire shape of the rubber cock inside you. Legs shaking and splashing bathwater everywhere, you ride out your orgasm while impaled on your dildo taking strained breaths to prevent your voice escaping and let your family know what you`ve been up to.'>>
  396. <</if>>
  397. <<else>>
  398. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  399. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and making sure anyone on the other side of the wall knows you're enjoying yourself too.
  400. <</if>>
  401. <</if>>
  402. <<if $pc.horny >= 90>>
  403. <<set $orgasm_or = 'yes'>>
  404. <</if>>
  405. <<arouse 'vaginal_dildo' 5 >>
  406. <<actCLA 'Keep masturbating'>>
  407. <<gt 'selfplay' 'bath_bathtub_suction_dildo_ride'>>
  408. <</actCLA>>
  409. <<actCLA 'Finish masturbating and dry off'>>
  410. <<set $dildo_timer = 0>>
  411. <<arousalEnd>>
  412. <<set $mirror_steam = $time.hour>>
  413. <<gt $location>>
  414. <</actCLA>>
  415. <<actCLA 'Finish masturbating, unmount your dildo, and get out and dry off'>>
  416. <<set $dildo_timer = 0>>
  417. <<gs 'selfplay' 'bathtub_suction_dildo_remove'>>
  418. <<arousalEnd>>
  419. <<set $mirror_steam = $time.hour>>
  420. <<gt $location>>
  421. <</actCLA>>
  422. <</if>>
  423. <!-- !! this is using a dildo mounted on WALL the shower in a bathtub during a SHOWER-->
  424. <<if $location_var[$here][0] == 'shower_bathtub_wall_dildo_fuck'>>
  425. <<set $vaginal_slip = 10>>
  426. <<set $pc.mood += 1>>
  427. <<set $pc.horny += 20>>
  428. <!-- Boy D2 -->
  429. <<video "shared/home/bathroom/shower_dildo2.mp4">>
  430. <<set $orgasm_txt = 'You can`t take it anymore and throw yourself as far back onto the dildo as you can, impaling yourself to the hilt on it. Spraying your clit with the showerhead, you don`t stop even when your orgasm makes you a quivering mess, standing up on your tip toes as pleasure rocks your entire body.'>>
  431. <<if getvar("$dildo_timer") == 0>>
  432. <<set $dildo_timer = 1>>
  433. <<set $dildo_start_minute = $time.minutes>>
  434. <<set $dildo_start_hour = $time.hour>>
  435. <</if>>
  436. <<if $pc.pcs_vag == 0>>
  437. Leaving the shower running, you bend over, pointing your bottom towards your wall mounted dildo. You figure it's time that you test this thing out.
  438. Lining it up with your pussy, you slowly push yourself back onto it, feeling it stretch you and penetrate you until you feel it bumping against your hymen. After taking a deep breath, you force your ass backward, immediately letting out a whimper of pain when you feel it tear through your maidenhood.
  439. Biting hard on your lip, you give yourself a minute to adjust and let your walls stretch out. Eventually you feel a little braver and you tentatively slide off of it and then push back on again. With big long strokes, you pull all the way off and then push slowly back on until your filled and you feel your ass touching the wall. Soon it starts to feel good, and you pick up the pace. And then you grab the shower head and start spraying your clit with it while you slam yourself back on forth on your rubber cock.
  440. <i>Ohhhhhh yeahhhhhh... I could get used to this...</i>
  441. <<elseif $dildo_start_minute == $time.minutes and $dildo_start_hour == $time.hour>>
  442. <<if $loc == 'vanrPar'>>
  443. Using the wall of the tub as leverage, you breathe hard as you push your ass back and forth on the dildo mounted on the wall. Hot water from the shower rains down and steam fills the air and you to play tag with the bathtub wall, repeatedly tapping it with the back of your ass while your pussy gets stuffed with rubber.
  444. <<if getvar("$locat['Fam_inGad']") == 1>>
  445. <b>thump</b><b>thump</b><b>thump</b><b>thump
  446. <i>Ahh~! Aaahhhh~! Ahhhh~! Aaaaahhhh~!</i>
  447. The echos of your moans and your ass bounce off the shower walls as you happily take advantage of the fact your family is away for the weekend.
  448. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam your ass all the way to the wall and climax hard all over your dildo. Your walls squeeze tight and you can perfectly feel the shape of the entire rubber cock inside you. Legs shaking and knees trying not to buckle, you ride out your orgasm while impaled on your shower dildo, screaming out an orgasm that can probably be heard from your room.'>>
  449. <<else>>
  450. <i>Haahhh~! Hhhh~! Mmmm~! Unnnh~!</i>
  451. Though whimpers and gasps escape your lips, you do your best to keep your voice under control so your family doesn''t catch you masturbating in the shower.
  452. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam your ass all the way to the wall and climax hard all over your dildo. Your walls squeeze tight and you can perfectly feel the shape of the entire rubber cock inside you. Legs shaking and knees trying not to buckle, you ride out your orgasm while impaled on your shower dildo, taking gasping breaths instead of screaming and letting your family know what you`ve been up to.'>>
  453. <</if>>
  454. <<else>>
  455. <b>thump</b><b>thump</b><b>thump</b><b>thump
  456. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  457. Your cries of pleasure echo off the walls of the bathroom as you slap your ass back and forth against the shower wall, thorougly enjoying the dildo that's pumping in and out of you right now.
  458. <<set $orgasm_txt = 'Pleasure and heat build between your legs until finally you slam your ass all the way to the wall and climax hard all over your dildo. Your walls squeeze tight and you can perfectly feel the shape of the entire rubber cock inside you. You cry out loudly in climax, legs shaking and knees trying not to buckle, as you ride out your orgasm caught in euphoric bliss.'>>
  459. <</if>>
  460. <<else>>
  461. <<if $loc == 'vanrPar'>>
  462. <<if getvar("$locat['Fam_inGad']") == 1>>
  463. <b>thump</b><b>thump</b><b>thump</b><b>thump
  464. <i>Ahh~! Aaahhhh~! Ahhhh~! Aaaaahhhh~!</i>
  465. The shower keeps raining down on you just as you keep fucking your wall mounted dildo, making squelching noises as you occassionally slide it up and down with the force of your thrusts. Loud gasps escape your lips and you are so happy your family isn''t here right now.
  466. <<else>>
  467. <i>Hnnn~! Hnnnnhhh~! Nnnnn~! Mmmmm~!</i>
  468. You're not done yet. The shower keeps raining down on you just as you keep fucking your wall mounted dildo, making squelching noises as you occassionally slide it up and down with the force of your thrusts. Maybe it's just the steam in the room but your body feels like its on fire right now and it's so difficult to not let your voice escape and travel into the hallway.
  469. <</if>>
  470. <<else>>
  471. <i><b>thump</b></i> <i><b>thump</b></i> <i><b>thump</b></i> <i><b>thump</b></i>
  472. <i>Haahhh~! Hhhh~! Unnnh~! Unnnh~! Ahhh~!</i>
  473. Your cries of pleasure echo off the walls of the bathroom as you ride your dildo, thoroughly enjoying yourself and making sure anyone on the other side of the wall knows you're enjoying yourself too.
  474. <</if>>
  475. <</if>>
  476. <<if $pc.horny >= 90>>
  477. <<set $orgasm_or = 'yes'>>
  478. <</if>>
  479. <<arouse 'vaginal_dildo' 5 >>
  480. <<actCLA 'Keep masturbating'>>
  481. <<gt 'selfplay' 'shower_bathtub_wall_dildo_fuck'>>
  482. <</actCLA>>
  483. <<actCLA 'Finish masturbating and dry off'>>
  484. <<set $dildo_timer = 0>>
  485. <<set $mirror_steam = $time.hour>>
  486. <<arousalEnd>>
  487. <<gt $location>>
  488. <</actCLA>>
  489. <<actCLA 'Finish masturbating, unmount your dildo, and get out and dry off'>>
  490. <<set $dildo_timer = 0>>
  491. <<gs 'selfplay' 'shower_suction_dildo_remove'>>
  492. <<set $mirror_steam = $time.hour>>
  493. <<arousalEnd>>
  494. <<gt $location>>
  495. <</actCLA>>
  496. <</if>>
  497. <!-- !! this is for using a dildo mounted of the glass WALL of a SHOWER with no tub-->
  498. <<if $location_var[$here][0] == 'glass_shower_suction_dildo_fuck'>>
  499. <<set $pc.mood += 1>>
  500. <<set $pc.horny += 20>>
  501. <<set $vaginal_slip = 10>>
  502. <!-- Boy D2 -->
  503. <<video "shared/home/bathroom/shower_dildo1.mp4">>
  504. <<set $orgasm_txt = 'You can`t take it anymore and throw yourself as far back onto the dildo as you can, impaling yourself to the hilt on it. Spraying your clit with the showerhead, you don`t stop even when your orgasm makes you a quivering mess, standing up on your tip toes as pleasure rocks your entire body.'>>
  505. <<if getvar("$dildo_timer") == 0>>
  506. <<set $dildo_timer = 1>>
  507. <<set $dildo_start_minute = $time.minutes>>
  508. <<set $dildo_start_hour = $time.hour>>
  509. <</if>>
  510. <<if $pc.pcs_vag == 0>>
  511. Moving your bottom over towards your wall mounted dildo, you figure it's time that you test this thing out.
  512. Lining it up with your pussy, you slowly push yourself back onto it, feeling it stretch you and penetrate you until you feel it bumping against your hymen. After taking a deep breath, you force your ass backward, immediately letting out a whimper of pain when you feel it tear through your maidenhood.
  513. Biting hard on your lip, you give yourself a minute to adjust and let your walls stretch out. Eventually you feel a little braver and you tentatively slide off of it and then push back on again. With big long strokes, you pull all the way off and then push slowly back on until your filled and you feel your ass touching the wall. Soon it starts to feel good, and you pick up the pace. And then you grab the shower head and start spraying your clit with it while you slam yourself back on forth on your rubber cock.
  514. <i>Ohhhhhh yeahhhhhh... I could get used to this...</i>
  515. <<elseif $dildo_start_minute == $time.minutes and $dildo_start_hour == $time.hour>>
  516. <p>"Haahhh~!" <i>thump</i> "Hhhh~!" <i>thump</i> "Unnnh~!" <i>thump</i> "Unnnh~!" <i>thump</i> "Ahhh~!"</p>
  517. Cries of pleasure echo inside the shower, as you repeatedly slam yourself back against your wall mounted dildo. Your ass makes a thumping sound every time you drive yourself to the base of the dildo and the only other sound is the white noise of the shower head spraying against your clit.
  518. <<else>>
  519. <p>"Anngh~!" <i><b>thump</b></i> "Hnnngh~!" <i><b>thump</b></i> "Unnngh~!" <i><b>thump</b></i> "Mmmnngh~!" <i><b>thump</b></i> "Ahhh~!!</i></p>
  520. The thump of your ass against the wall is even louder now, but your voice too. In the far back of your mind, you vaguely wonder how awkward it might be if you have to explain to the landlord you shattered the shower by fucking a rubber cock you suctioned to it.
  521. <</if>>
  522. <<if $pc.horny >= 90>>
  523. <<set $orgasm_or = 'yes'>>
  524. <</if>>
  525. <<arouse 'vaginal_dildo' 5 `['masturbate']`>>
  526. <<actCLA 'Keep masturbating'>>
  527. <<gt 'selfplay' 'glass_shower_suction_dildo_fuck'>>
  528. <</actCLA>>
  529. <<actCLA 'Finish masturbating and dry off'>>
  530. <<set $dildo_timer = 0>>
  531. <<set $mirror_steam = $time.hour>>
  532. <<arousalEnd>>
  533. <<gt $location>>
  534. <</actCLA>>
  535. <<actCLA 'Finish masturbating, unmount your dildo, and get out and dry off'>>
  536. <<set $dildo_timer = 0>>
  537. <<gs 'selfplay' 'shower_suction_dildo_remove'>>
  538. <<set $mirror_steam = $time.hour>>
  539. <<arousalEnd>>
  540. <<gt $location>>
  541. <</actCLA>>
  542. <</if>>
  543. <<if $location_var[$here][0] == 'sis_prov'>>
  544. <<set $AnyaMsg = ''>>
  545. <<if $loc == 'bedrPar'>>
  546. <<gs 'family_schedule'>>
  547. <<if getvar("$locat['Anya_Gad']") == 0>>
  548. <<if getvar("$locat['Anya_inroom']") == 0 and getvar("$proverkasisterhere") == 0>>
  549. <<set $proverkasisterhere = 1>>
  550. <</if>>
  551. <<if getvar("$locat['Anya_inroom']") == 1>>
  552. <<if getvar("$sisboytrio") > 0 and getvar("$sis_watch") == 1>>
  553. <<set $sis_watch = 2>>
  554. <<set $AnyaMsg = 'Anya smiles as she enters the room and waves at you to carry on.'>>
  555. <<else>>
  556. <<if getvar("$proverkasisterhere") == 2 and RAND(1,3) == 3>>
  557. <<set $SisterKnowMastr += 1>>
  558. <<set $AnyaMsg = '<font color="red"><b>Anya saw you masturbate.</b></font>'>>
  559. <</if>>
  560. <<if getvar("$proverkasisterhere") == 1>>
  561. <<set $proverkasisterhere = 2>>
  562. <<set $AnyaMsg = '<font color="red"><b>You hear footsteps approaching your room.</b></font>'>>
  563. <</if>>
  564. <</if>>
  565. <</if>>
  566. <</if>>
  567. <</if>>
  568. <</if>>
  569. <!-- ! WD: Masturbating at night only has 10% chance to be discovered-->
  570. <<if $location_var[$here][0] == 'van_vtor'>>
  571. <<if getvar("$locat['Fam_inGad']") == 0 and (hour >= 6 or Rand(1, 10) == 1)>>
  572. <<set $pc.horny -= 50>>
  573. <<set $pc.mood -= 10>>
  574. <p>You hear shouting from outside the bathroom: "$pc.name_nick! Are you drowning in there or something? What's taking so long? Get out of there!"</p>
  575. <<actCLA 'Get out of the bath and dry yourself off'>>
  576. <<gt 'selfplay' 'stop'>>
  577. <</actCLA>>
  578. $exit
  579. <<else>>
  580. <<set $selfplaytime -= 15>>
  581. <</if>>
  582. <</if>>
  583. <<if $location_var[$here][0] == 'fingering'>>
  584. <<actCLA 'Put a finger inside your vagina'>>
  585. <<set $selfplaytime += 2>>
  586. <<gs 'selfplay' 'sis_prov'>>
  587. <<image "shared/sex/mast/finger.jpg">>
  588. <<if $pc.pcs_vag == 0 and getvar("$mesec") <= 0>>
  589. You let your fingers dart over your soft and wet pussy lips, before gradually attempting to slide your finger into your pussy. You feel your hymen stretch a little as you slide first one and then a second finger inside.
  590. <<arouse 'vaginal_finger' 2 `['masturbate']`>>
  591. <<gs 'selfplay' 'fingering2'>>
  592. <<elseif $pc.pcs_vag > 0>>
  593. You slide one finger into your vagina, and then another.
  594. <<if $pc.pcs_vag < 5>>
  595. <<set $pc.horny += rand(2, 5)>>
  596. You feel your pussy clasping around your fingers very tightly.
  597. <<elseif $pc.pcs_vag < 10>>
  598. <<set $pc.horny += rand(5, 10)>>
  599. You feel your slippery pussy walls around your fingers. It feels nice and tight.
  600. <<else>>
  601. <<set $pc.horny += rand(2, 5)>>
  602. Having your fingers in your pussy feels nice, but it doesn''t feel very tight. You feel like you can take more.
  603. <</if>>
  604. <<$AnyaMsg>>
  605. <<arouse 'vaginal_finger' 5 `['masturbate']`>>
  606. <<if $org_temp == $orgasm>>
  607. <<gs 'selfplay' 'fingering2'>>
  608. <</if>>
  609. <<elseif getvar("$mesec") > 0>>
  610. <<set $pc.mood -= 5>>
  611. Your vagina has some dried up blood from your period on it. You attempt to shove your finger in, but then are kind of grossed out by the idea and reconsider.
  612. <</if>>
  613. <<actCLA 'Stop touching yourself'>>
  614. <<gt 'selfplay' 'stop'>>
  615. <</actCLA>>
  616. <</actCLA>>
  617. <</if>>
  618. <<if $location_var[$here][0] == 'fingering2'>>
  619. <<actCLA 'Fuck your fingers'>>
  620. <<set $selfplaytime += 10>>
  621. <<gs 'selfplay' 'sis_prov'>>
  622. <<image "shared/sex/mast/finger.jpg">>
  623. <<if $location_var[$here][1] == 1>>
  624. You continue fucking yourself with your fingers, massaging and squeezing your breasts.
  625. <<else>>
  626. You start moving your fingers in and out, softly pinching your nipples as you play with yourself.
  627. <</if>>
  628. <<if $pc.pcs_vag <= 12>>
  629. Your pussy walls are stretched nicely from the finger fucking, and you feel a pleasant warmth spread in your lower body.
  630. <</if>>
  631. <<if $pc.pcs_vag > 12>>
  632. Your pussy is quite loose, and you have to work hard to get much enjoyment out of it.
  633. <</if>>
  634. <<$AnyaMsg>>
  635. <<arouse 'vaginal_finger' 10 `['masturbate']`>>
  636. <<if $org_temp == $orgasm>>
  637. <<gs 'selfplay' 'fingering2' 1>>
  638. <<if $pc.pcs_vag > 0>>
  639. <<gs 'selfplay' 'fingering3'>>
  640. <</if>>
  641. <</if>>
  642. <<actCLA 'Stop touching yourself'>>
  643. <<gt 'selfplay' 'stop'>>
  644. <</actCLA>>
  645. <</actCLA>>
  646. <</if>>
  647. <<if $location_var[$here][0] == 'fingering3'>>
  648. <<actCLA 'Thrust all of your fingers into your vagina'>>
  649. <<set $selfplaytime += 2>>
  650. <<gs 'selfplay' 'sis_prov'>>
  651. <<image "shared/sex/mast/hand.jpg">>
  652. You shove all your fingers inside your pussy.
  653. <<if $pc.pcs_vag < 10>>
  654. <<if $pc.vgape == 2>>
  655. <<set $pc.vgape = 3>>
  656. <</if>>
  657. <<if $pc.vgape == 1>>
  658. <<set $pc.vgape = 2>>
  659. <</if>>
  660. <<if $pc.vgape == 0>>
  661. <<set $pc.vgape = 1>>
  662. <</if>>
  663. <<set $pc.horny -= 10>>
  664. <<set $pc.mood -= 10>>
  665. You shove all your fingers inside your tight pussy, and feel it stretch out way more than it should. It's rather painful.
  666. <<elseif $pc.pcs_vag < 15>>
  667. <<set $pc.horny += rand(1, 3)>>
  668. You shove all your fingers inside your tight pussy, feeling your pussy grip them tightly. It doesn''t hurt, but doesn''t feel very good either.
  669. <<elseif $pc.pcs_vag < 20>>
  670. <<set $pc.horny += rand(3, 6)>>
  671. You shove all your fingers inside your tight pussy, feeling your pussy grip them tightly.
  672. <<else>>
  673. <<set $pc.horny += rand(6, 12)>>
  674. You stick all of your fingers in your pussy, and feel how your vagina envelops them nicely. You get a pleasant feeling of fullness.
  675. <</if>>
  676. <<if $pc.pcs_vag < 15>>
  677. <<setn $vaginaTemp += 1>>
  678. <</if>>
  679. <<$AnyaMsg>>
  680. <<arouse 'vaginal_finger' 2 `['masturbate']`>>
  681. <<if $org_temp == $orgasm>>
  682. <<gs 'selfplay' 'fingering4'>>
  683. <</if>>
  684. <<actCLA 'Stop touching yourself'>>
  685. <<gt 'selfplay' 'stop'>>
  686. <</actCLA>>
  687. <</actCLA>>
  688. <</if>>
  689. <<if $location_var[$here][0] == 'fingering4'>>
  690. <<actCLA 'Fuck yourself with your fingers'>>
  691. <<set $selfplaytime += 10>>
  692. <<gs 'selfplay' 'sis_prov'>>
  693. <<if $pc.pcs_vag < 10>>
  694. <<if $pc.vgape == 2>>
  695. <<set $pc.vgape = 3>>
  696. <</if>>
  697. <<if $pc.vgape == 1>>
  698. <<set $pc.vgape = 2>>
  699. <</if>>
  700. <<if $pc.vgape == 0>>
  701. <<set $pc.vgape = 1>>
  702. <</if>>
  703. <<set $pc.horny -= 10>>
  704. <<set $pc.mood -= 10>>
  705. <</if>>
  706. <<image "shared/sex/mast/hand.jpg">>
  707. <<if $location_var[$here][1] == 1>>
  708. You continue to move your hand, thrusting your fingers into your pussy again and again.
  709. <<else>>
  710. You start to slowly move your hand, thrusting your fingers into your pussy again and again.
  711. <</if>>
  712. <<if $pc.pcs_vag <= 15>>
  713. <<setn $pc.horny -= 10>> <<setn $pc.mood -= 10>>
  714. <</if>>
  715. <<if $pc.pcs_vag > 10>>
  716. <<set $pc.horny += rand(10, 20)>>
  717. <</if>>
  718. <<if $pc.pcs_vag < 20>>
  719. <<setn $vaginaTemp += 1>>
  720. <</if>>
  721. <<$AnyaMsg>>
  722. <<arouse 'vaginal_finger' 10 `['masturbate']`>>
  723. <<if $org_temp == $orgasm>>
  724. <<gs 'selfplay' 'fingering4' 1>>
  725. <<if $pc.pcs_vag > 10>>
  726. <<gs 'selfplay' 'self_fisting_1'>>
  727. <</if>>
  728. <</if>>
  729. <<actCLA 'Stop touching yourself'>>
  730. <<gt 'selfplay' 'stop'>>
  731. <</actCLA>>
  732. <</actCLA>>
  733. <</if>>
  734. <<if $location_var[$here][0] == 'self_fisting_1'>>
  735. <<actCLA 'Thrust your whole hand into your vagina'>>
  736. <<set $selfplaytime += 2>>
  737. <<gs 'selfplay' 'sis_prov'>>
  738. <<image "shared/sex/mast/self_fisting.jpg">>
  739. <<if $pc.pcs_vag < 15>>
  740. <<if $pc.vgape == 2>>
  741. <<set $pc.vgape = 3>>
  742. <</if>>
  743. <<if $pc.vgape == 1>>
  744. <<set $pc.vgape = 2>>
  745. <</if>>
  746. <<if $pc.vgape == 0>>
  747. <<set $pc.vgape = 1>>
  748. <</if>>
  749. <<set $pc.horny -= 10>>
  750. <<set $pc.mood -= 10>>
  751. You shove your whole hand inside your tight pussy, and feel it stretch out way more than it should. It's rather painful.
  752. <<elseif $pc.pcs_vag < 20>>
  753. <<set $pc.horny += rand(1, 3)>>
  754. You shove your whole hand inside your tight pussy, feeling your pussy grip it tightly. It doesn''t hurt, but doesn''t feel very good either.
  755. <<elseif $pc.pcs_vag < 25>>
  756. <<set $pc.horny += rand(3, 6)>>
  757. You shove your whole hand inside your tight pussy, feeling your pussy grip it tightly.
  758. <<else>>
  759. <<set $pc.horny += rand(6, 12)>>
  760. You stick your whole hand in your pussy, and feel how your vagina envelops it nicely. You get a pleasant feeling of fullness.
  761. <</if>>
  762. <<if $pc.pcs_vag < 20>>
  763. <<setn $vaginaTemp += 1>>
  764. <</if>>
  765. <<arouse 'self_fisting' 2 `['masturbate']`>>
  766. <<$AnyaMsg>>
  767. <<if $org_temp == $orgasm>>
  768. <<gs 'selfplay' 'self_fisting_2'>>
  769. <</if>>
  770. <<actCLA 'Stop fisting yourself'>>
  771. <<gt 'selfplay' 'stop'>>
  772. <</actCLA>>
  773. <</actCLA>>
  774. <</if>>
  775. <<if $location_var[$here][0] == 'self_fisting_2'>>
  776. <<actCLA 'Fuck your fist'>>
  777. <<set $selfplaytime += 10>>
  778. <<gs 'selfplay' 'sis_prov'>>
  779. <<if $pc.pcs_vag < 15>>
  780. <<if $pc.vgape == 2>>
  781. <<set $pc.vgape = 3>>
  782. <</if>>
  783. <<if $pc.vgape == 1>>
  784. <<set $pc.vgape = 2>>
  785. <</if>>
  786. <<if $pc.vgape == 0>>
  787. <<set $pc.vgape = 1>>
  788. <</if>>
  789. <<set $pc.horny -= 10>>
  790. <<set $pc.mood -= 10>>
  791. <</if>>
  792. <<image "shared/sex/mast/self_fisting.jpg">>
  793. <<if $location_var[$here][1] == 1>>
  794. You continue to move your arm, thrusting your hand into your pussy again and again.
  795. <<else>>
  796. You start to slowly move your arm, thrusting your hand into your pussy again and again.
  797. <</if>>
  798. <<if $pc.pcs_vag <= 20>>
  799. <<setn $pc.horny -= 10>> <<setn $pc.mood -= 10>>
  800. <</if>>
  801. <<if $pc.pcs_vag > 15>>
  802. <<set $pc.horny += rand(10, 20)>>
  803. <</if>>
  804. <<if $pc.pcs_vag < 25>>
  805. <<setn $vaginaTemp += 1>>
  806. <</if>>
  807. <<$AnyaMsg>>
  808. <<arouse 'self_fisting' 10 `['masturbate']`>>
  809. <<if $org_temp == $orgasm>>
  810. <<gs 'selfplay' 'self_fisting_2' 1>>
  811. <</if>>
  812. <<actCLA 'Stop touching yourself'>>
  813. <<gt 'selfplay' 'stop'>>
  814. <</actCLA>>
  815. <</actCLA>>
  816. <</if>>
  817. <<if $location_var[$here][0] == 'anal_fingering'>>
  818. <<actCLA 'Put a finger in your ass'>>
  819. <<set $selfplaytime += 5>>
  820. <<gs 'selfplay' 'sis_prov'>>
  821. <!-- !!if $loc = 'bedrPar':'<<video "shared/sex/mast/klit.mp4">>'-->
  822. <!-- !!if $loc = 'vanrPar':'<<image `'shared/sex/mast/klitvann.jpg'`>>'-->
  823. <<image "shared/sex/mast/1.jpg">>
  824. <<arouse 'anal_finger' 5 `['masturbate']`>>
  825. <<if $pc.pcs_ass >= 5>>
  826. You press a finger against your asshole and push it in. It slides in quite easily.
  827. <<else>>
  828. <<set $pc.pcs_ass += 1>>
  829. You press a finger against your tight asshole and push it in. Your anus is squeezing your finger tightly.
  830. <</if>>
  831. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  832. <<gs 'selfplay' 'van_vtor'>>
  833. <</if>>
  834. <<$AnyaMsg>>
  835. <<actCLA 'Stop touching yourself'>>
  836. <<gt $location>>
  837. <</actCLA>>
  838. <<if $org_temp == $orgasm>>
  839. <<actCLA 'Add a second finger'>>
  840. <<gt 'selfplay' 'anal_fingering2'>>
  841. <</actCLA>>
  842. <</if>>
  843. <</actCLA>>
  844. <</if>>
  845. <<if $location_var[$here][0] == 'anal_fingering2'>>
  846. <<set $selfplaytime += 5>>
  847. <<gs 'selfplay' 'sis_prov'>>
  848. <<image "shared/sex/mast/2.jpg">>
  849. <<if $pc.pcs_ass >= 10>>
  850. You relax and squeeze a second finger in, alongside the first. It slides in fairly easily.
  851. <<if $pc.agape > 0>>
  852. <<if $pc.agape == 2>>
  853. <<set $pc.agape = 3>>
  854. <</if>>
  855. <<if $pc.agape == 1>>
  856. <<set $pc.agape = 2>>
  857. <</if>>
  858. <<set $pc.horny -= 50>>
  859. <<if $pc.pcs_ass > 1>>
  860. <<setn $pc.pcs_ass -= 1>>
  861. <</if>>
  862. Pushing a second finger into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  863. <</if>>
  864. <<elseif $pc.pcs_ass >= 5 and $pc.pcs_ass < 10>>
  865. <<set $analplay += 1>>
  866. You slide a second finger into your asshole. You can feel your anus squeezing your fingers tightly.
  867. <<if $pc.agape > 0>>
  868. <<if $pc.agape == 2>>
  869. <<set $pc.agape = 3>>
  870. <</if>>
  871. <<if $pc.agape == 1>>
  872. <<set $pc.agape = 2>>
  873. <</if>>
  874. <<set $pc.horny -= 50>>
  875. <<set $pc.pcs_ass += 1>>
  876. Pushing a second finger into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  877. <</if>>
  878. <<else>>
  879. <<set $pc.pcs_ass += 1>>
  880. <<if $pc.agape == 2>>
  881. <<set $pc.agape = 3>>
  882. <</if>>
  883. <<if $pc.agape == 1>>
  884. <<set $pc.agape = 2>>
  885. <</if>>
  886. <<if $pc.agape == 0>>
  887. <<set $pc.agape = 1>>
  888. <</if>>
  889. <<set $pc.horny -= 50>>
  890. When you slide in the second finger, you feel a sharp pain in your anus. You may have tried too much, too fast.
  891. <</if>>
  892. <<$AnyaMsg>>
  893. <<arouse 'anal_finger' 5 `['masturbate']`>>
  894. <<actCLA 'Stop touching yourself'>>
  895. <<gt 'selfplay' 'stop'>>
  896. <</actCLA>>
  897. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  898. <<gs 'selfplay' 'van_vtor'>>
  899. <</if>>
  900. <<if $org_temp == $orgasm and $pc.agape < 3>>
  901. <<if $pc.pcs_ass < 25>>
  902. <<actCLA 'Keep fucking your ass with two fingers'>>
  903. <<gt 'selfplay' 'anal_fingering2a'>>
  904. <</actCLA>>
  905. <</if>>
  906. <<actCLA 'Thrust three fingers in'>>
  907. <<gt 'selfplay' 'anal_fingering3'>>
  908. <</actCLA>>
  909. <</if>>
  910. <</if>>
  911. <<if $location_var[$here][0] == 'anal_fingering2a'>>
  912. <<set $selfplaytime += 5>>
  913. <<gs 'selfplay' 'sis_prov'>>
  914. <<image "shared/sex/mast/2.jpg">>
  915. <<if $pc.pcs_ass >= 10>>
  916. You relax and squeeze a second finger in, alongside the first. It slides in fairly easily.
  917. <<if $pc.agape > 0>>
  918. <<if $pc.agape == 2>>
  919. <<set $pc.agape = 3>>
  920. <</if>>
  921. <<if $pc.agape == 1>>
  922. <<set $pc.agape = 2>>
  923. <</if>>
  924. <<set $pc.horny -= 50>>
  925. <<if $pc.pcs_ass > 1>>
  926. <<setn $pc.pcs_ass -= 1>>
  927. <</if>>
  928. Fucking your already sore asshole with two fingers was a bad idea. It hurts a lot and you feel like you damaged it further.
  929. <</if>>
  930. <<elseif $pc.pcs_ass >= 5 and $pc.pcs_ass < 10>>
  931. <<set $analplay += 1>>
  932. You slide a second finger into your asshole. You can feel your anus squeezing your fingers tightly.
  933. <<if $pc.agape > 0>>
  934. <<if $pc.agape == 2>>
  935. <<set $pc.agape = 3>>
  936. <</if>>
  937. <<if $pc.agape == 1>>
  938. <<set $pc.agape = 2>>
  939. <</if>>
  940. <<set $pc.horny -= 50>>
  941. <<set $pc.pcs_ass += 1>>
  942. Fucking your already sore asshole with two fingers was a bad idea. It hurts a lot and you feel like you damaged it further.
  943. <</if>>
  944. <<else>>
  945. <<set $pc.pcs_ass += 1>>
  946. <<if $pc.agape == 2>>
  947. <<set $pc.agape = 3>>
  948. <</if>>
  949. <<if $pc.agape == 1>>
  950. <<set $pc.agape = 2>>
  951. <</if>>
  952. <<if $pc.agape == 0>>
  953. <<set $pc.agape = 1>>
  954. <</if>>
  955. <<set $pc.horny -= 50>>
  956. As you continue to fuck your ass, it hurts even more. It might be time to stop.
  957. <</if>>
  958. <<$AnyaMsg>>
  959. <<actCLA 'Stop touching yourself'>>
  960. <<gt 'selfplay' 'stop'>>
  961. <</actCLA>>
  962. <<arouse 'anal_finger' 5 `['masturbate']`>>
  963. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  964. <<gs 'selfplay' 'van_vtor'>>
  965. <</if>>
  966. <<if $org_temp == $orgasm and $pc.agape < 3>>
  967. <<if $pc.pcs_ass < 25>>
  968. <<actCLA 'Keep fucking your ass with two fingers'>>
  969. <<gt 'selfplay' 'anal_fingering2a'>>
  970. <</actCLA>>
  971. <</if>>
  972. <<actCLA 'Thrust three fingers in'>>
  973. <<gt 'selfplay' 'anal_fingering3'>>
  974. <</actCLA>>
  975. <</if>>
  976. <</if>>
  977. <<if $location_var[$here][0] == 'anal_fingering3'>>
  978. <<set $selfplaytime += 5>>
  979. <<gs 'selfplay' 'sis_prov'>>
  980. <<image "shared/sex/mast/3.jpg">>
  981. <<if $pc.pcs_ass >= 15>>
  982. Your asshole is fairly loose, and you manage to slide three fingers in without much effort.
  983. <<if $pc.agape > 0>>
  984. <<if $pc.agape == 2>>
  985. <<set $pc.agape = 3>>
  986. <</if>>
  987. <<if $pc.agape == 1>>
  988. <<set $pc.agape = 2>>
  989. <</if>>
  990. <<set $pc.horny -= 50>>
  991. <<if $pc.pcs_ass > 1>>
  992. <<setn $pc.pcs_ass += 1>>
  993. <</if>>
  994. Pushing three fingers into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  995. <</if>>
  996. <<elseif $pc.pcs_ass >= 10 and $pc.pcs_ass < 15>>
  997. <<set $analplay += 1>>
  998. You slide three fingers into your asshole. You can feel your anus squeezing your fingers tightly.
  999. <<if $pc.agape > 0>>
  1000. <<if $pc.agape == 2>>
  1001. <<set $pc.agape = 3>>
  1002. <</if>>
  1003. <<if $pc.agape == 1>>
  1004. <<set $pc.agape = 2>>
  1005. <</if>>
  1006. <<set $pc.horny -= 50>>
  1007. <<set $pc.pcs_ass += 1>>
  1008. Pushing three fingers into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  1009. <</if>>
  1010. <<else>>
  1011. <<set $pc.pcs_ass += 1>>
  1012. <<if $pc.agape == 2>>
  1013. <<set $pc.agape = 3>>
  1014. <</if>>
  1015. <<if $pc.agape == 1>>
  1016. <<set $pc.agape = 2>>
  1017. <</if>>
  1018. <<if $pc.agape == 0>>
  1019. <<set $pc.agape = 1>>
  1020. <</if>>
  1021. <<set $pc.horny -= 50>>
  1022. When you slide in three fingers, you feel a sharp pain in your anus. You may have tried too much, too fast.
  1023. <</if>>
  1024. <<arouse 'anal_finger' 5 `['masturbate']`>>
  1025. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  1026. <<gs 'selfplay' 'van_vtor'>>
  1027. <</if>>
  1028. <<$AnyaMsg>>
  1029. <<actCLA 'Stop touching yourself'>>
  1030. <<gt 'selfplay' 'stop'>>
  1031. <</actCLA>>
  1032. <<if $org_temp == $orgasm and $pc.agape < 3>>
  1033. <<actCLA 'Push four fingers into your asshole'>>
  1034. <<gt 'selfplay' 'anal_fingering4'>>
  1035. <</actCLA>>
  1036. <</if>>
  1037. <</if>>
  1038. <<if $location_var[$here][0] == 'anal_fingering4'>>
  1039. <<set $selfplaytime += 5>>
  1040. <<gs 'selfplay' 'sis_prov'>>
  1041. <<image "shared/sex/mast/4.jpg">>
  1042. <<if $pc.pcs_ass >= 20>>
  1043. Your asshole is very loose, and you manage to push four fingers into it.
  1044. <<if $pc.agape > 0>>
  1045. <<if $pc.agape == 2>>
  1046. <<set $pc.agape = 3>>
  1047. <</if>>
  1048. <<if $pc.agape == 1>>
  1049. <<set $pc.agape = 2>>
  1050. <</if>>
  1051. <<set $pc.horny -= 50>>
  1052. <<if $pc.pcs_ass > 1>>
  1053. <<setn $pc.pcs_ass -= 1>>
  1054. <</if>>
  1055. Pushing four fingers into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  1056. <</if>>
  1057. <<elseif $pc.pcs_ass >= 15 and $pc.pcs_ass < 20>>
  1058. <<set $analplay += 1>>
  1059. You manage to push four fingers into your asshole. You can feel your anus squeezing your fingers tightly.
  1060. <<if $pc.agape > 0>>
  1061. <<if $pc.agape == 2>>
  1062. <<set $pc.agape = 3>>
  1063. <</if>>
  1064. <<if $pc.agape == 1>>
  1065. <<set $pc.agape = 2>>
  1066. <</if>>
  1067. <<set $pc.horny -= 50>>
  1068. <<set $pc.pcs_ass += 1>>
  1069. Pushing four fingers into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  1070. <</if>>
  1071. <<else>>
  1072. <<set $pc.pcs_ass += 1>>
  1073. <<if $pc.agape == 2>>
  1074. <<set $pc.agape = 3>>
  1075. <</if>>
  1076. <<if $pc.agape == 1>>
  1077. <<set $pc.agape = 2>>
  1078. <</if>>
  1079. <<if $pc.agape == 0>>
  1080. <<set $pc.agape = 1>>
  1081. <</if>>
  1082. <<set $pc.horny -= 50>>
  1083. When you slide in four fingers, you feel a sharp pain in your anus. You may have tried too much, too fast.
  1084. <</if>>
  1085. <<arouse 'anal_finger' 5 `['masturbate']`>>
  1086. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  1087. <<gs 'selfplay' 'van_vtor'>>
  1088. <</if>>
  1089. <<$AnyaMsg>>
  1090. <<actCLA 'Stop touching yourself'>>
  1091. <<gt 'selfplay' 'stop'>>
  1092. <</actCLA>>
  1093. <<if $org_temp == $orgasm and $pc.agape < 3>>
  1094. <<actCLA 'Put your whole hand in'>>
  1095. <<gt 'selfplay' 'anal_fisting'>>
  1096. <</actCLA>>
  1097. <</if>>
  1098. <</if>>
  1099. <<if $location_var[$here][0] == 'anal_fisting'>>
  1100. <<set $SelfFisting += 1>>
  1101. <<set $selfplaytime += 5>>
  1102. <<gs 'selfplay' 'sis_prov'>>
  1103. <<image "shared/sex/mast/5.jpg">>
  1104. <<if $pc.pcs_ass >= 25>>
  1105. Slowly but surely, you manage to get your entire hand into your ass.
  1106. <<if $pc.agape > 0>>
  1107. <<if $pc.agape == 2>>
  1108. <<set $pc.agape = 3>>
  1109. <</if>>
  1110. <<if $pc.agape == 1>>
  1111. <<set $pc.agape = 2>>
  1112. <</if>>
  1113. <<set $pc.horny -= 50>>
  1114. <<if $pc.pcs_ass > 1>>
  1115. <<setn $pc.pcs_ass -= 1>>
  1116. <</if>>
  1117. Pushing your whole hand into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  1118. <</if>>
  1119. <<elseif $pc.pcs_ass >= 20 and $pc.pcs_ass < 25>>
  1120. <<set $analplay += 1>>
  1121. It takes a lot of effort, but over the course of several minutes you manage to work your whole hand into your ass. You feel your anus squeeze your wrist tightly.
  1122. <<if $pc.agape > 0>>
  1123. <<if $pc.agape == 2>>
  1124. <<set $pc.agape = 3>>
  1125. <</if>>
  1126. <<if $pc.agape == 1>>
  1127. <<set $pc.agape = 2>>
  1128. <</if>>
  1129. <<set $pc.horny -= 50>>
  1130. <<set $pc.pcs_ass += 1>>
  1131. Pushing your whole hand into your already sore asshole was a bad idea. It hurts a lot and you feel like you damaged it further.
  1132. <</if>>
  1133. <<else>>
  1134. <<set $pc.pcs_ass += 1>>
  1135. <<if $pc.agape == 2>>
  1136. <<set $pc.agape = 3>>
  1137. <</if>>
  1138. <<if $pc.agape == 1>>
  1139. <<set $pc.agape = 2>>
  1140. <</if>>
  1141. <<if $pc.agape == 0>>
  1142. <<set $pc.agape = 1>>
  1143. <</if>>
  1144. <<set $pc.horny -= 50>>
  1145. When you push your hand into your asshole, you feel a sharp pain in your anus. You may have tried too much, too fast.
  1146. <</if>>
  1147. <<arouse 'anal_fist' 5 `['masturbate']`>>
  1148. <<if $loc == 'vanrPar' and getvar("$selfplaytime") >= 60>>
  1149. <<gs 'selfplay' 'van_vtor'>>
  1150. <</if>>
  1151. <<$AnyaMsg>>
  1152. <<actCLA 'Stop touching yourself'>>
  1153. <<gt 'selfplay' 'stop'>>
  1154. <</actCLA>>
  1155. <<if $org_temp == $orgasm and $pc.agape < 3>>
  1156. <<actCLA 'Keep fisting yourself'>>
  1157. <<gt 'selfplay' 'anal_fisting2'>>
  1158. <</actCLA>>
  1159. <</if>>
  1160. <</if>>
  1161. <<if $location_var[$here][0] == 'anal_fisting2'>>
  1162. <<set $SelfFisting += 1>>
  1163. <<set $selfplaytime += 5>>
  1164. <<gs 'selfplay' 'sis_prov'>>
  1165. <<image "shared/sex/mast/5.jpg">>
  1166. <<arouse 'anal_fist' 5 `['masturbate']`>>
  1167. <<arouse 'anal_fist' -15 `['masturbate']`>>
  1168. There is still a lot of resistance but you are able to move your fist backwards and forwards with it still in your butt. the feeling of being stretched so much and the rubbing inside your ass is blissful.
  1169. <<if $pc.agape > 0>>
  1170. <<if $pc.agape == 2>>
  1171. <<set $pc.agape = 3>>
  1172. <</if>>
  1173. <<if $pc.agape == 1>>
  1174. <<set $pc.agape = 2>>
  1175. <</if>>
  1176. <<if $pc.pcs_ass > 1>>
  1177. <<setn $pc.pcs_ass -= 1>>
  1178. <</if>>
  1179. <</if>>
  1180. <<actCLA 'Stop touching yourself'>>
  1181. <<gt 'selfplay' 'stop'>>
  1182. <</actCLA>>
  1183. <<actCLA 'Keep fisting yourself'>>
  1184. <<gt 'selfplay' 'anal_fisting2'>>
  1185. <</actCLA>>
  1186. <</if>>
  1187. <<if $location_var[$here][0] == 'stop'>>
  1188. <<set $analplay = 0>>
  1189. <<set $selfplaytime = 0>>
  1190. <<set $mastrOnce = 0>>
  1191. <<set $proverkasisterhere = 0>>
  1192. <<if $vaginaTemp > $pc.pcs_vag * 2>>
  1193. <<setn $pc.pcs_vag += 1>> <<set $vaginaTemp = 0>>
  1194. <</if>>
  1195. <<arousalEnd>>
  1196. <<gt $location>>
  1197. <</if>>
  1198. :: d_self_ass_fingering_macro[widget]
  1199. <<widget 'd_self_ass_fingering'>>
  1200. <</widget>>