kompMFCanal.qsrc 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. # kompMFCanal
  2. *clr & cla
  3. gs 'stat'
  4. 'One of the visitors asks: "Do you have a vibrator or dildo? I want to see your ass stuffed..."'
  5. if vibrator = 1 or dildo = 1 or (middildo = 1 and pcs_ass >= 10) or (largedildo = 1 and pcs_ass >= 15) or (bigdildo = 1 and pcs_ass >= 20) or (extradildo = 1 and pcs_ass >= 25) or (superdildo = 1 and pcs_ass >= 30) or (maddildo = 1 and pcs_ass >= 35):
  6. act 'Play with a toy':
  7. *clr & cla
  8. gs 'stat'
  9. if vibrator = 1:
  10. act 'Use your vibrator':
  11. *clr & cla
  12. mfcclients = 0
  13. webpopular += rand(hotcat/2 -2,hotcat/2)
  14. if webpopular < 15:
  15. tokens += rand(25,50)
  16. elseif webpopular >= 15 and webpopular < 35:
  17. tokens += rand(50,100)
  18. elseif webpopular >= 35 and webpopular < 75:
  19. tokens += rand(50,150)
  20. elseif webpopular >= 75:
  21. tokens += rand(100,200)
  22. end
  23. minut += 5
  24. dildohand = 10
  25. if pcs_ass > 10:
  26. pcs_horny += rand(10,20)
  27. else
  28. pcs_ass += 1
  29. pcs_horny += rand(10,20)
  30. end
  31. gs 'stat'
  32. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore23.jpg"></center>'
  33. if pcs_ass > 10:
  34. 'You turn on the vibrator and make a show of fucking your ass with it, hoping to please the customer despite it not being what he initially asked for.'
  35. if pcs_horny >= 100:
  36. orgasm += 1
  37. mfccum += 1
  38. pcs_horny = 0
  39. pcs_mood = 100
  40. 'The vibration is so powerful, you orgasm without even touching your vagina! Your chat loves it...'
  41. else
  42. 'When you put the vibrator aside after a few minutes of fun, you notice you received several donations during your little show.'
  43. end
  44. else
  45. 'You spit on the vibrator a few times and bring it to your anus, before turning it on. You gently stick it up your ass and ride it for a while, enjoying the stimulation it gives you.'
  46. 'When you put the vibrator aside after a few minutes of fun, you notice you received several donations during your little show.'
  47. end
  48. act'Continue':gt 'komp','waitclients'
  49. end
  50. end
  51. if dildo = 1:
  52. act 'Use your small dildo':
  53. *clr & cla
  54. mfcclients = 0
  55. webpopular += rand(hotcat/2 -2,hotcat/2)
  56. if webpopular < 15:
  57. tokens += rand(20,30)
  58. elseif webpopular >= 15 and webpopular < 35:
  59. tokens += rand(30,50)
  60. elseif webpopular >= 35 and webpopular < 75:
  61. tokens += rand(30,100)
  62. elseif webpopular >= 75:
  63. tokens += rand(50,100)
  64. end
  65. minut += 5
  66. dildohand = 10
  67. if pcs_ass > 10:
  68. pcs_horny += rand(5,15)
  69. else
  70. pcs_horny -= rand(5,15)
  71. pcs_ass += 1
  72. end
  73. gs 'stat'
  74. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore24.jpg"></center>'
  75. if pcs_ass > 10:
  76. 'You take the 10cm long dildo, and slip it inside your ass with one firm motion. It''s not very big, and feels quite enjoyable inside your ass.'
  77. if pcs_horny >= 100:
  78. orgasm += 1
  79. mfccum += 1
  80. pcs_horny = 0
  81. pcs_mood = 100
  82. 'The dildo feels so good, you can''t help but masturbate and orgasm when you rub your clit with one hand while you thrust the dildo inside your ass with the other. Your chat loves it, making all sorts of comments about how slutty you are...'
  83. else
  84. 'When you put the dildo aside after a few minutes of fun, you notice you received several donations during your little show.'
  85. end
  86. else
  87. 'You take the 10cm long dildo, and slip it inside your ass with one firm motion. It''s not very big, but is still fairly big for you. Ouch!'
  88. 'When you put the dildo aside after a few minutes, you notice you received several donations during your little show.'
  89. end
  90. act'Continue':gt 'komp','waitclients'
  91. end
  92. end
  93. if middildo = 1 and pcs_ass >= 10:
  94. act 'Use your medium dildo':
  95. *clr & cla
  96. mfcclients = 0
  97. webpopular += rand(hotcat/2 -2,hotcat/2)
  98. if webpopular < 15:
  99. tokens += rand(25,35)
  100. elseif webpopular >= 15 and webpopular < 35:
  101. tokens += rand(25,100)
  102. elseif webpopular >= 35 and webpopular < 75:
  103. tokens += rand(25,150)
  104. elseif webpopular >= 75:
  105. tokens += rand(100,150)
  106. end
  107. minut += 5
  108. dildohand = 15
  109. if pcs_ass > 15:
  110. pcs_horny += rand(5,15)
  111. else
  112. pcs_horny -= rand(5,15)
  113. pcs_ass += 1
  114. end
  115. gs 'stat'
  116. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore25.jpg"></center>'
  117. if pcs_ass > 15:
  118. 'You take the 15cm long dildo, and put it on the floor so you can ride it. After you slip it inside your ass with one firm motion, you hump it enthusiastically, making a nice show of it stretching your anus in the process.'
  119. if pcs_horny >= 100:
  120. orgasm += 1
  121. mfccum += 1
  122. pcs_horny = 0
  123. pcs_mood = 100
  124. 'The dildo feels so good, you can''t help but masturbate and orgasm when you rub your clit with one hand while you ride the dildo. Your chat loves it, making all sorts of comments about how slutty you are...'
  125. else
  126. 'When you put the dildo aside after a few minutes of fun, you notice you received everal donations during your little show.'
  127. end
  128. else
  129. 'You take the 15cm long dildo, and put it on the floor so you can ride it. After you slip it inside your ass you hump it carefully, making a nice show of it stretching your anus in the process. It kinda hurts.'
  130. 'When you put the dildo aside after a few minutes, you notice you received several donations during your little show.'
  131. end
  132. act'Further':gt 'komp','waitclients'
  133. end
  134. end
  135. if largedildo = 1 and pcs_ass >= 15:
  136. act 'Use your large dildo':
  137. *clr & cla
  138. mfcclients = 0
  139. webpopular += rand(hotcat/2 -2,hotcat/2)
  140. if webpopular < 15:
  141. tokens += rand(40,55)
  142. elseif webpopular >= 15 and webpopular < 35:
  143. tokens += rand(40,100)
  144. elseif webpopular >= 35 and webpopular < 75:
  145. tokens += rand(100,150)
  146. elseif webpopular >= 75:
  147. tokens += rand(100,200)
  148. end
  149. minut += 5
  150. dildohand = 20
  151. if pcs_ass > 20:
  152. pcs_horny += rand(5,15)
  153. else
  154. pcs_horny -= rand(5,15)
  155. pcs_ass += 1
  156. agape = 1
  157. end
  158. gs 'stat'
  159. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore26.jpg"></center>'
  160. if pcs_ass > 20:
  161. 'You take the 20cm long dildo, and put it on the floor so you can ride it. After you slip it inside your ass with one firm motion, you hump it enthusiastically. You''re used to this size and make a nice show of it stretching your anus in the process.'
  162. if pcs_horny >= 100:
  163. orgasm += 1
  164. mfccum += 1
  165. pcs_horny = 0
  166. pcs_mood = 100
  167. 'The dildo feels so good, you can''t help but masturbate and orgasm when you rub your clit with one hand while you ride the dildo. Your chat loves it, making all sorts of comments about how slutty you are...'
  168. else
  169. 'When you put the dildo aside after a few minutes of fun, you notice you received several donations during your little show.'
  170. end
  171. else
  172. 'You take the 20cm long dildo, and put it on the floor so you can ride it. After you slip it inside your ass carefully, you begin to hump it. It''s too big to really be enjoyable, but the visitors demand a show and you do your best to show how it stretches your anus in the process.'
  173. 'When you put the dildo aside after a few minutes of fun, you notice you received several donations during your little show.'
  174. end
  175. act'Continue':gt 'komp','waitclients'
  176. end
  177. end
  178. if bigdildo = 1 and pcs_ass >= 20:
  179. act 'Use your very large dildo':
  180. *clr & cla
  181. mfcclients = 0
  182. webpopular += rand(hotcat/2 -2,hotcat/2)
  183. if webpopular < 15:
  184. tokens += rand(50,60)
  185. elseif webpopular >= 15 and webpopular < 35:
  186. tokens += rand(50,100)
  187. elseif webpopular >= 35 and webpopular < 75:
  188. tokens += rand(100,200)
  189. elseif webpopular >= 75:
  190. tokens += rand(100,300)
  191. end
  192. minut += 5
  193. dildohand = 25
  194. if pcs_ass > 25:
  195. pcs_horny += rand(10,20)
  196. else
  197. pcs_horny -= rand(10,20)
  198. pcs_ass += 1
  199. agape = 1
  200. end
  201. gs 'stat'
  202. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore27.jpg"></center>'
  203. if pcs_ass > 25:
  204. 'You relax on your bed and lift your pelvis for easier access. You don''t bother to lubricate the dildo first and just guide it to your anus, knowing you''re loose enough back there to be okay without. Your viewers seem very impressed by this, and compliment your sluttiness while they watch the dildo slowly being swallowed by your hungry anus.'
  205. if pcs_horny >= 100:
  206. orgasm += 1
  207. mfccum += 1
  208. pcs_horny = 0
  209. pcs_mood = 100
  210. 'The sensation of fullness you''re getting from the dildo is too much! You frantically rub your pussy while you squeeze your sphincter tightly around the large dildo in your ass, and reach an orgasm in no time.'
  211. else
  212. 'When you put the dildo aside after a few minutes of fun, you notice you received several donations during your little show.'
  213. end
  214. else
  215. 'You relax on your bed and lift your pelvis for easier access. After coating the dildo liberally with your saliva and rubbing some onto your anus too, you carefully shove the dildo inside you one bit at a time.'
  216. 'Once its whole length is inside you, you take a break and catch your breath. Damn, that thing is big! You wiggle your ass a little and carefully move the dildo a bit inside your rectum, but then decide you fulfilled the client''s request and quickly let it slide out again. Ow...'
  217. end
  218. act'Continue':gt 'komp','waitclients'
  219. end
  220. end
  221. if extradildo = 1 and pcs_ass >= 25:
  222. act 'Use your 30cm dildo':
  223. *clr & cla
  224. mfcclients = 0
  225. webpopular += rand(hotcat/2 -2,hotcat/2)
  226. if webpopular < 15:
  227. tokens += rand(50,75)
  228. elseif webpopular >= 15 and webpopular < 35:
  229. tokens += rand(50,150)
  230. elseif webpopular >= 35 and webpopular < 75:
  231. tokens += rand(100,300)
  232. elseif webpopular >= 75:
  233. tokens += rand(300,500)
  234. end
  235. minut += 5
  236. dildohand = 30
  237. if pcs_ass > 30:
  238. pcs_horny += rand(15,20)
  239. else
  240. pcs_horny -= rand(15,20)
  241. pcs_ass += 1
  242. agape = 1
  243. end
  244. gs 'stat'
  245. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore28.jpg"></center>'
  246. if pcs_ass > 30:
  247. 'You lie down on your back and throw your legs behind your head. Knowing you can take its size comfortably, you skewer yourself with the dildo. You moan eagerly while you fuck your ass with it for a while, giving your clients a nice show.'
  248. if pcs_horny >= 100:
  249. orgasm += 1
  250. mfccum += 1
  251. pcs_horny = 0
  252. pcs_mood = 100
  253. 'The frictions so close to your pussy make it so your free hand is immediately drawn to your clitoris, and you can''t stop from rubbing yourself to a thunderous orgasm. Your sphincter contracted lewdly around the dildo while you were cumming, which your audience enjoys greatly.'
  254. else
  255. 'A few minutes later your muscles begin to ache and you decide to stop. You give the camera a weak smile, hoping you fulfilled your visitor''s request.'
  256. end
  257. else
  258. 'You lie down on your back and throw your legs behind your head. You realize your ass isn''t quite used to taking anything this large in it and go slowly, carefully thrusting the dildo up your ass.'
  259. 'Even with lubrication it hurts, and a few minutes in you have to stop. Your client enjoyed your show regardless, and donated some tokens as promised.'
  260. end
  261. act'Continue':gt 'komp','waitclients'
  262. end
  263. end
  264. if superdildo = 1 and pcs_ass >= 30:
  265. act 'Use your humongous 35cm dildo':
  266. *clr & cla
  267. mfcclients = 0
  268. webpopular += rand(hotcat/2 -2,hotcat/2)
  269. if webpopular < 15:
  270. tokens += rand(75,100)
  271. elseif webpopular >= 15 and webpopular < 35:
  272. tokens += rand(100,300)
  273. elseif webpopular >= 35 and webpopular < 75:
  274. tokens += rand(100,500)
  275. elseif webpopular >= 75:
  276. tokens += rand(300,500)
  277. end
  278. minut += 5
  279. dildohand = 35
  280. if pcs_ass > 35:
  281. pcs_horny += rand(20,25)
  282. else
  283. pcs_horny -= rand(20,25)
  284. pcs_ass += 1
  285. agape = 1
  286. end
  287. gs 'stat'
  288. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore29.jpg"></center>'
  289. if pcs_ass > 35:
  290. 'You roll to your side, looking at the enormous dildo for a second before you decide to shove it inside you. You''re used to taking things this large up your ass, and moan softly while you thrust the dildo in and out of you.'
  291. if pcs_horny >= 100:
  292. orgasm += 1
  293. mfccum += 1
  294. pcs_horny = 0
  295. pcs_mood = 100
  296. 'In the process you cum violently.'
  297. else
  298. 'Even though it feels nice, you are not quite horny enough to reach orgasm this way.'
  299. end
  300. else
  301. 'You roll to your side, looking at the enormous dildo for a second before you decide to shove it inside you. It''s too big, and even with a liberal coat of lubrication you barely manage to shove the head inside you.'
  302. 'It hurt a lot, but the client appreciated your struggle anyway and gives you some tokens.'
  303. end
  304. act'Continue':gt 'komp','waitclients'
  305. end
  306. end
  307. if maddildo = 1 and pcs_ass >= 35:
  308. act 'Use your enormous 40cm dildo':
  309. *clr & cla
  310. mfcclients = 0
  311. webpopular += rand(hotcat/2 -2,hotcat/2)
  312. if webpopular < 15:
  313. tokens += rand(100,150)
  314. elseif webpopular >= 15 and webpopular < 35:
  315. tokens += rand(100,300)
  316. elseif webpopular >= 35 and webpopular < 75:
  317. tokens += rand(300,500)
  318. elseif webpopular >= 75:
  319. tokens += rand(500,750)
  320. end
  321. minut += 5
  322. dildohand = 40
  323. if pcs_ass > 40:
  324. pcs_horny += rand(25,30)
  325. else
  326. pcs_horny -= rand(25,30)
  327. pcs_ass += 1
  328. agape = 1
  329. end
  330. gs 'stat'
  331. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore30.jpg"></center>'
  332. if pcs_ass > 40:
  333. 'You take your largest dildo and put it on the floor, and then spit on your fingers a few times and rub it across your sphincter habitually. Taking things up the ass is nothing new to you, and you slowly let yourself sink down on the humongous dildo with a satisfied sigh. Your chat loves it, calling you their anal queen.'
  334. if pcs_horny >= 100:
  335. orgasm += 1
  336. mfccum += 1
  337. pcs_horny = 0
  338. pcs_mood = 100
  339. 'You''re so excited that you can''t stop yourself from masturbating, and quickly rub an orgasm out.'
  340. else
  341. 'The rubber phallus stretches your anal ring nicely, and makes your vagina poke out lewdly with every thrust. The knowledge that you''re still a virgin makes your customers all the hornier, knowing that a sweet virgin girl such as yourself is taking such a huge dildo up her ass at the same time...'
  342. end
  343. else
  344. 'You take out your biggest dildo and put it on the floor, giving it a doubtful look. Is that really going to fit inside you?'
  345. 'You spit on your fingers several times, apologizing to the camera while you try to produce some more lubrication for yourself.'
  346. 'When you rub the head against your sphincter, you''re even more doubtful. This is not going to be a pleasant experience. Nevertheless, the customers demand it, so...'
  347. 'Despite your best efforts, you don''t manage to get much more than the head in. A few tears roll down your cheek while you desperately try to ignore the pain. When you give up, you see you got a fair few donations... apparently your viewers enjoy watching you suffer!'
  348. end
  349. act'Continue':gt 'komp','waitclients'
  350. end
  351. end
  352. end
  353. end
  354. act 'Decide to improvise':
  355. *clr & cla
  356. mfcclients = 0
  357. webpopular += rand(hotcat/2 -2,hotcat/2)
  358. minut += 5
  359. pcs_horny += rand(10,15)
  360. if webpopular < 15:
  361. tokens += rand(25,50)
  362. elseif webpopular >= 15 and webpopular < 35:
  363. tokens += rand(25,75)
  364. elseif webpopular >= 35 and webpopular < 75:
  365. tokens += rand(50,100)
  366. elseif webpopular >= 75:
  367. tokens += rand(100,150)
  368. end
  369. pcs_ass += 1
  370. gs 'stat'
  371. if pcs_ass < 10:
  372. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore49.jpg"></center>'
  373. 'You quickly look around you, trying to find something you can stick up your ass to make the viewer happy. Ah, your hair brush!'
  374. 'Even though the handle doesn''t look particularly big, you''re still careful as you spit on the handle a few times before guiding it to your ass, slowly pushing it inside you.'
  375. if pcs_horny >= 100:
  376. orgasm += 1
  377. mfccum += 1
  378. pcs_horny = 0
  379. pcs_mood = 100
  380. 'To your shame you have to admit, this feels great! If you keep this up, you might not be able to ever look at your hair brush again without getting aroused...'
  381. 'Mere seconds later, you''re unable to resist the urge any longer and eagerly rub your clit while you fuck yourself with your brush, moaning loudly into the microphone when you orgasm. Who knew using a hair brush could be so much fun!?'
  382. else
  383. 'Fucking yourself with the brush feels nice, but you knew from the start you weren''t going to orgasm like this. After a while, when you feel you earned all the donations you''re going to get out of this, you put the hair brush away with a smile and get back to chatting with your viewers.'
  384. end
  385. act'Continue':gt 'komp','waitclients'
  386. elseif pcs_ass >= 10 and pcs_ass < 15:
  387. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore50.jpg"></center>'
  388. 'You quickly look around you, trying to find something you can stick up your ass to make the viewer happy. How about those sharpies?'
  389. '"How many do you think I can take, guys?" you smile at the camera, while you show a fistful of sharpies to the camera. "Bonus points to who gets it right!"'
  390. 'You''re not that experienced with taking things up your ass yet, but can''t help but laugh at the visitors typing: "ALL OF THEM!!!11"'
  391. 'Even though you give it your best shot, you have to yield at 3. For now... this could be fun as a recurring challenge!'
  392. if pcs_horny >= 100:
  393. orgasm += 1
  394. mfccum += 1
  395. pcs_horny = 0
  396. pcs_mood = 100
  397. 'You were already quite horny, and the extra sensation of your anus being stretched by those sharpies puts you over the edge. You rub your clit without even really realizing it, and gasp in surprise when an orgasm suddenly hits you!'
  398. 'Your ass squeezes out the sharpies one by one from the spasms, while the chat is singing your praises. They all love a girl that can orgasm from anal sex...'
  399. else
  400. 'The sharpies stretch your anus nicely, but you''re not horny enough to orgasm from this. You make an effort of trying to add a fourth in front of the camera, but take them out and return to your seat once you think you won''t get any more donations.'
  401. end
  402. act'Continue':gt 'komp','waitclients'
  403. elseif pcs_ass >= 15 and pcs_ass < 25:
  404. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore51.jpg"></center>'
  405. 'You quickly look around you, trying to find something you can stick up your ass to make the viewer happy. How about that remote?'
  406. 'The remote feels a bit uncomfortable, with its angular shape and sharp edges, but you still manage to get nearly half of it inside your ass.'
  407. if pcs_horny >= 100:
  408. orgasm += 1
  409. mfccum += 1
  410. pcs_horny = 0
  411. pcs_mood = 100
  412. 'You were already quite horny, and the extra sensation of your anus being stretched by the remote puts you over the edge. You rub your clit without even really realizing it, and gasp in surprise when an orgasm suddenly hits you!'
  413. 'Your ass clasps tightly around the emote, while the chat is singing your praises. They all love a girl that can orgasm from anal sex...'
  414. else
  415. 'The remote stretches your anus nicely, but you''re not horny enough to orgasm from this. You make an effort of fucking yourself with it in front of the camera, but take it out and return to your seat once you think you won''t get any more donations.'
  416. end
  417. act'Continue':gt 'komp','waitclients'
  418. elseif pcs_ass >= 25 and pcs_ass < 35:
  419. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore52.jpg"></center>'
  420. 'You quickly look around you, trying to find something you can stick up your ass to make the viewer happy. Then you ponder: "How about the phone in the hallway?"'
  421. 'The horn doesn''t go in very easily, with the earpiece being the widest part of the whole thing! However, you eventually manage to work it past your sphincter and let out a happy sigh. Is there anything you won''t do for your viewers?'
  422. if pcs_horny >= 100:
  423. orgasm += 1
  424. mfccum += 1
  425. pcs_horny = 0
  426. pcs_mood = 100
  427. 'Just when the bulbous part of the horn penetrates you, your body suddenly trembles intensely and you orgasm without even touching your clit! Wow, that was intense...'
  428. else
  429. 'The phone stretches your anus nicely, but you''re not horny enough to orgasm from this. You make an effort of fucking yourself with it in front of the camera, but take it out and return to your seat once you think you won''t get any more donations. You smile to yourself, hoping you''ll remember to clean it before you make a phone call...'
  430. end
  431. act'Continue':gt 'komp','waitclients'
  432. elseif pcs_ass >= 35:
  433. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore53.jpg"></center>'
  434. 'You quickly look around you, trying to find something you can stick up your ass to make the viewer happy. What would your fans want to see inside your ass today... how about that spray can of hairspray?'
  435. 'With a lewd smile on your face you pretend to stroke the can for a moment, while you tell your viewers: "Pretend that this is your cock, right now..."'
  436. 'Then you guide it to your anus and penetrate yourself with it, moaning lewdly while you thrust it in deeper and deeper.'
  437. if pcs_horny >= 100:
  438. orgasm += 1
  439. mfccum += 1
  440. pcs_horny = 0
  441. pcs_mood = 100
  442. 'You masturbate furiously while you slowly fuck yourself with the canister, much to the enthusiasm of your chat. They''re all encouraging you by now, and cheer amongst themselves when they see you orgasm on their screens. Several of them donate some tokens to you.'
  443. else
  444. 'You masturbate furiously while you slowly fuck yourself with the canister, much to the enthusiasm of your chat. They''re all encouraging you by now, and cheer amongst themselves when they see you fake an orgasm on their screens. Several of them donate some tokens to you. You didn''t actually orgasm, but you know what your viewers want to see!'
  445. end
  446. act'Continue':gt 'komp','waitclients'
  447. end
  448. end
  449. act 'Use your fingers instead':
  450. 'You frown at the camera and apologize: "I''m sorry, but no. I don''t have anything like that..."'
  451. 'The visitor replies: ":( :( :(. OK, maybe you use hand or fingers then yes?"'
  452. *clr & cla
  453. mfcclients = 0
  454. webpopular += rand(hotcat/2 -2,hotcat/2)
  455. minut += 5
  456. pcs_horny += rand(10,15)
  457. if webpopular < 15:
  458. tokens += rand(25,50)
  459. elseif webpopular >= 15 and webpopular < 35:
  460. tokens += rand(25,75)
  461. elseif webpopular >= 35 and webpopular < 75:
  462. tokens += rand(50,100)
  463. elseif webpopular >= 75:
  464. tokens += rand(100,150)
  465. end
  466. pcs_ass += 1
  467. gs 'stat'
  468. if pcs_ass < 10:
  469. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore32.jpg"></center>'
  470. 'Without saying a word you turn your ass to the camera, and lick your finger before slowly working it past your tight sphincter. When your entire finger is inside you, you slowly begin to fuck your ass with it.'
  471. if pcs_horny >= 100:
  472. orgasm += 1
  473. mfccum += 1
  474. pcs_horny = 0
  475. pcs_mood = 100
  476. 'You''re carried away so much by the sudden sensations, you''re almost forgetting there''s a camera pointed at you! Your free hand quickly finds its way to your clit and rubs it eagerly, making your orgasm in front of your <<camclients>> viewers.'
  477. else
  478. 'Your client can tell you''re not very experienced having things up your ass, and enjoys you fingering yourself. He quickly donates some tokens as promised, and you thrust your finger in a few more times before returning to your chair.'
  479. end
  480. elseif pcs_ass >= 10 and pcs_ass < 15:
  481. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore45.jpg"></center>'
  482. 'Without saying a word you turn your ass to the camera, and lick your fingers before slowly working one in past your tight sphincter. Then you add a second! With the two fingers inside you, you slowly begin to move your hand back and forth, slowly fucking your ass with them.'
  483. if pcs_horny >= 100:
  484. orgasm += 1
  485. mfccum += 1
  486. pcs_horny = 0
  487. pcs_mood = 100
  488. 'You''re carried away so much by the sudden sensations, you''re almost forgetting there''s a camera pointed at you! Your free hand quickly finds its way to your clit and rubs it eagerly, making your orgasm in front of your <<camclients>> viewers.'
  489. else
  490. 'Your client can tell you''re not very experienced having things up your ass yet, and enjoys you fingering yourself. He quickly donates some tokens as promised, and you thrust your fingers in a few more times before returning to your chair with a tinge of regret. That actually felt nice, but there''s money to be made...'
  491. end
  492. elseif pcs_ass >= 15 and pcs_ass < 25:
  493. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore46.jpg"></center>'
  494. 'Without saying a word you turn your ass to the camera, and lick your fingers before slowly working one in past your tight sphincter. Then you add a second! And a third! With the three fingers firmly inside you, you slowly begin to move your hand back and forth, slowly fucking your ass with them.'
  495. if pcs_horny >= 100:
  496. orgasm += 1
  497. mfccum += 1
  498. pcs_horny = 0
  499. pcs_mood = 100
  500. 'You''re carried away so much by the sudden sensations, you''re almost forgetting there''s a camera pointed at you! Your free hand quickly finds its way to your clit and rubs it eagerly, making your orgasm in front of your <<camclients>> viewers.'
  501. else
  502. 'Your client enjoys you fingering yourself, eager to have finally found a girl that isn''t too squeamish to take some fingers in her ass without crying about it. He quickly donates some tokens as promised, and you thrust your fingers in a few more times before returning to your chair with a tinge of regret. That actually felt nice, but there''s money to be made...'
  503. end
  504. elseif pcs_ass >= 25 and pcs_ass < 35:
  505. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore47.jpg"></center>'
  506. 'Without saying a word you turn your ass to the camera, and lick your fingers before slowly working one in past your tight sphincter. Then you add a second! And a third! And even a fourth!'
  507. 'With four fingers firmly inside you, you slowly begin to move your hand back and forth, slowly fucking your ass with them. It''s only a matter of time before your whole hand will fit in now, they''re going to love that!'
  508. if pcs_horny >= 100:
  509. orgasm += 1
  510. mfccum += 1
  511. pcs_horny = 0
  512. pcs_mood = 100
  513. 'You''re carried away so much by the sudden sensations, you''re almost forgetting there''s a camera pointed at you! Your free hand quickly finds its way to your clit and rubs it eagerly, making your orgasm in front of your <<camclients>> viewers.'
  514. else
  515. 'Your client enjoys you fingering yourself, eager to have finally found a girl that isn''t too squeamish to take some fingers in her ass without crying about it. He quickly donates some tokens as promised, and you thrust your fingers in a few more times before returning to your chair with a tinge of regret. That actually felt nice, but there''s money to be made...'
  516. end
  517. elseif pcs_ass >= 35:
  518. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore48.jpg"></center>'
  519. 'Without saying a word you turn your ass to the camera, and lick your fingers before slowly working one in past your tight sphincter. Then you add a second! And a third! And even a fourth! The chat explodes when you work your thumb in too, and even manage to go in a bit further. That''s right... you''re practically fisting yourself, in front of an audience!'
  520. if pcs_horny >= 100:
  521. orgasm += 1
  522. mfccum += 1
  523. pcs_horny = 0
  524. pcs_mood = 100
  525. 'You''re carried away so much by the sudden sensations, you''re almost forgetting there''s a camera pointed at you! Your free hand quickly finds its way to your clit and rubs it eagerly, making your orgasm in front of your <<camclients>> viewers.'
  526. else
  527. 'Your viewers are absolutely ecstatic, and are extremely impressed with the ease at which you take large objects (such as your hand) in your ass. A few of them donate some tokens, hoping you''ll use their money to buy the biggest dildo you can find.'
  528. end
  529. end
  530. act'Continue':gt 'komp','waitclients'
  531. end
  532. act 'Refuse':
  533. *clr & cla
  534. webpopular -= 1
  535. gt 'komp','waitclients'
  536. end
  537. --- kompMFCanal ---------------------------------