Komp.qsrc 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. # komp
  2. if $ARGS[0] = 'start':
  3. *clr & cla
  4. elektro += 5
  5. gs 'stat'
  6. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  7. 'Your computer boots up, and soon you''re looking at your operating system''s main screen.'
  8. act 'Play Solitaire (0:20)':gt 'komp', 'pasians'
  9. if GameCD > 0:act 'Play Disopl':gt 'KGDstart'
  10. if GameCD2 > 0:act 'Play Sunset Dead':gt 'KGZstart'
  11. if GameCD3 > 0:act 'Play Albido':gt 'FSstart'
  12. !!act 'SunReview of the Dead':gt 'KGZstart'
  13. if student > 0 and kursovik < 100:'You should probably do some of your <a href="exec:gt ''komp'',''kursak''">coursework</a>.'
  14. if $loc = 'shulga_room' or $loc = 'anushapt' or $loc = 'artemhome':
  15. internet_store = internet
  16. internet = 100000
  17. act 'Browse the internet':gt 'komp', 'brows'
  18. elseif $loc = 'dachain':
  19. internet = 0
  20. else
  21. 'You have <<internet>> hours of prepaid internet access remaining.'
  22. if internet > 0: act 'Browse the internet':gt 'komp', 'brows'
  23. end
  24. act 'Shut your computer down': gt 'komp', 'fin'
  25. end
  26. if $ARGS[0] = 'brows':
  27. *clr & cla
  28. gs 'stat'
  29. act 'Close the browser':
  30. if $loc = 'shulga_room' or $loc = 'anushapt':
  31. internet = internet_store
  32. killvar 'internet_store'
  33. end
  34. gt 'komp','start'
  35. end
  36. if internet <= 0:
  37. '<center><b>Browser</b></center>'
  38. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
  39. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  40. if camwhore = 1 and $loc ! 'shulga_room' and $loc ! 'anushapt':
  41. 'Since MyFreeCams will cover the cost, you can still log on to do a cam show.'
  42. act 'Go to MyFreeCams.org':gt 'komp', 'mfc'
  43. end
  44. else
  45. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  46. 'You go to your favourite start page, while you try to decide on what you want to see right now.'
  47. 'A blinking banner for a <a href="exec:gt ''komp'',''agent''">Kirsanova Real Estate Agency</a> keeps popping up in the corner.'
  48. if home_owned[1] = 2 and husband = 0:act 'Rent your apartment out':gt 'komp', 'sale'
  49. if $loc ! 'anushapt': act 'Search for porn (1:00)':gt 'komp', 'porno'
  50. act 'Browse a dating website (1:00)':gt 'komp', 'znak'
  51. if hour < 20 and hour > 7:
  52. if $clothingworntype = 'nude':
  53. 'You need to be dressed before searching jobs.'
  54. else
  55. act 'Look for a job online':gt 'komp', 'rabota'
  56. end
  57. end
  58. act 'Search for cable TV services (1:00)':gt 'komp', 'kabtv'
  59. act 'Play an online game':gt 'KGstart'
  60. if fuckornot = 3: act 'Visit ''Fuckable or not'' site': $view_location = 'komp' & gt 'komp', 'fuckornot'
  61. if hotornot = 3: act 'Visit ''Hot or not'' site': $view_location = 'komp' & gt 'komp', 'hotornot'
  62. if bankAccount > 0: act 'Visit your bank, maybe to purchase more online time': gt 'komp', 'bank'
  63. if shantfoto > 0:act 'Find the girl you took photos of in the park on "Assbook"':gt 'komp', 'foto'
  64. if gor_dorm = 7:act 'Read letter from Eugene':gt 'etoexhib', 'pos91'
  65. if camwhore = 1 and $loc ! 'shulga_room' and $loc ! 'anushapt':act 'Go to MyFreeCams.org':gt 'komp', 'mfc'
  66. if (storyline = 1 and SchoolAtestat = 0) or student > 0:act 'Spend time studying':gt 'komp', 'study'
  67. if sucpcinfo = 0 and succubxp > 0: act 'Research the strange feelings you''ve been having': gt 'succubus', 'kompresearch'
  68. end
  69. end
  70. if $ARGS[0] = 'sale':
  71. *clr & cla
  72. minut += 60
  73. elektro += 3
  74. internet -= 1
  75. gs 'stat'
  76. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  77. 'You go to a popular website where people can post advertisements for free. You could post an advertisement here.'
  78. if obkvsdam >= 1 and home_owned[1] = 2: 'You placed an advertisement to rent out your apartment. You should probably check every once in a while to see if anyone responded.'
  79. if obkvsdam = 0 and home_owned[1] = 2:
  80. act 'Rent out your city residential apartment':obkvsdam = 1 & gt 'komp', 'sale'
  81. elseif obkvsdam > 0:
  82. act 'Check if you got any replies':
  83. cla
  84. if obkvsdam = 1:
  85. 'No one has responded to your offer to rent out your apartment just yet.'
  86. elseif obkvsdam > 1:
  87. if obkvsdam = 2:predsumm = 16000
  88. if obkvsdam = 3:predsumm = 17000
  89. if obkvsdam = 4:predsumm = 18000
  90. if obkvsdam = 5:predsumm = 19000
  91. 'Someone wants to stay in your apartment for a month! They''re offering you <<predsumm>> <b>₽</b> in cash.'
  92. act 'Accept the offer':
  93. sdaday = day
  94. sdamonth = month + 1
  95. if sdamonth > 12:sdamonth = 1
  96. if sdaday > monthsEnd[sdamonth]:sdaday = monthsEnd[sdamonth]
  97. home_owned[1] = 3
  98. karta += predsumm
  99. gt 'komp', 'start'
  100. end
  101. end
  102. act 'Leave this website':gt 'komp', 'brows'
  103. end
  104. end
  105. act 'Leave this website':gt 'komp', 'brows'
  106. end
  107. if $ARGS[0] = 'porno':
  108. *clr & cla
  109. gs 'stat'
  110. if internet <= 0:
  111. '<center><b>Browser</b></center>'
  112. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
  113. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  114. act '<B>Close the browser</B>':gt 'komp','start'
  115. elseif sisterHere > 0 and sisboytrio = 0 and $loc = 'bedrPar':
  116. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  117. 'You shouldn''t watch porn with your sister in the room, she would notice for sure!'
  118. act 'Leave this website':gt 'komp', 'brows'
  119. else
  120. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  121. 'You go to a porn site and browse for a few minutes, trying to find a hot video.'
  122. act 'Watch porn':
  123. *clr & cla
  124. elektro += 3
  125. pcs_mood += rand(10, 20)
  126. internet -= 1
  127. gs 'stat'
  128. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/porno.jpg"></center>'
  129. 'You find a video you think you''d enjoy, and spend some time watching it. Wow, that girl is so lucky...'
  130. gs 'arousal', 'porn', 60
  131. gs 'stat'
  132. act 'The video ends...':gt 'komp', 'porno'
  133. end
  134. if pcs_horny >= 50:act 'Masturbate (0:15)':gt 'komp', 'masturbate'
  135. act 'Leave this website':gt 'komp', 'brows'
  136. end
  137. end
  138. if $ARGS[0] = 'masturbate':
  139. *clr & cla
  140. internet -= 1
  141. elektro += 1
  142. gs 'sweat', 'add', 10
  143. if divanmastr = 0:
  144. divanmastr = 1
  145. stat['mast'] += 1
  146. if pcs_inhib < 30:inhib_exp += rand(1,3)
  147. end
  148. gs 'stat'
  149. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/kompmas.jpg"></center>'
  150. 'You get comfortable in front of your computer and with one hand begin to fondle your breasts, while you click on a link to something really dirty.'
  151. 'You let go of the mouse and start rubbing your pussy, imagining you''re the woman in the video. The fantasy and your touching are getting you all hot and bothered.'
  152. gs 'arousal', 'masturbate', 15
  153. gs 'stat'
  154. if pcs_horny >= 100:
  155. $orgasm_or = 'yes'
  156. $orgasm_txt = 'Suddenly your muscles tighten and you cum powerfully, while you stifle your moans so your neighbours won''t find out. Afterwards, you have goosebumps all over your skin. That was just what you needed!'
  157. gs 'arousal', 'masturbate', -1
  158. gs 'stat'
  159. end
  160. act 'Stop masturbating':divanmastr = 0 & gt 'komp', 'porno'
  161. gs 'arousal', 'end'
  162. gs 'stat'
  163. if pcs_horny >= 50:act 'Masturbate some more (0:15)':gt 'komp', 'masturbate'
  164. end
  165. if $ARGS[0] = 'pasians':
  166. *clr & cla
  167. minut += 20
  168. elektro += 3
  169. pcs_mood += rand(10, 20)
  170. gs 'stat'
  171. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  172. 'You entertain yourself for about twenty minutes, playing a game of solitaire on the computer.'
  173. act 'Play for another 20 minutes':gt 'komp', 'pasians'
  174. act 'Return to desktop':gt 'komp', 'start'
  175. end
  176. if $ARGS[0] = 'znak':
  177. *clr & cla
  178. minut += 60
  179. pcs_mood += 5
  180. elektro += 3
  181. internet -= 1
  182. gs 'stat'
  183. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  184. 'You enter a dating site, and immediately see all sorts of profiles of both men and women.'
  185. 'The guys on this site are rather cute! If you''re single, you could try contacting one. Who knows, maybe you''ll meet the man of your dreams through here!'
  186. if gor_dorm = 8:
  187. act 'Pick someone suitable for Eugenia':
  188. cla
  189. gor_dorm = 9
  190. 'You click through dozens of profiles, before choosing a guy who you think would be a good match for Eugenia. You send him a message, asking if he wants to meet up somewhere.'
  191. 'Now the waiting game begins! Let''s hope you picked a nice guy for her...'
  192. act 'Leave this website':gt 'komp', 'brows'
  193. end
  194. elseif home_cur ! 1 and home_cur ! 2 and home_cur ! 3 and home_cur ! 4 and home_cur ! 5:
  195. pcs_mood += rand(5, 10)
  196. 'You spend time looking at the various profiles, but it won''t let you register unless you have your own home and it is set as your current home.'
  197. 'Still, some of the pictures were quite raunchy and the more desperate profiles were really funny.'
  198. else
  199. if pcs_lover < 3:
  200. act 'Look for a kind man':
  201. cla
  202. gs 'boy'
  203. gs 'boyfrend', 'start'
  204. haraklover[lover_number] = 0
  205. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  206. act 'Leave this website':gt 'komp', 'brows'
  207. end
  208. act 'Look for a normal guy':
  209. cla
  210. gs 'boy'
  211. gs 'boyfrend', 'start'
  212. haraklover[lover_number] = 1
  213. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  214. act 'Leave this website':gt 'komp', 'brows'
  215. end
  216. act 'Look for a strong man':
  217. cla
  218. gs 'boy'
  219. gs 'boyfrend', 'start'
  220. haraklover[lover_number] = 2
  221. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  222. act 'Leave this website':gt 'komp', 'brows'
  223. end
  224. end
  225. end
  226. act 'Leave this website':gt 'komp', 'brows'
  227. end
  228. if $ARGS[0] = 'kabtv':
  229. *clr & cla
  230. minut += 60
  231. elektro += 3
  232. internet -= 1
  233. gs 'stat'
  234. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  235. 'You check out the website of the local cable TV provider. A subscription for cable TV costs 300 <b>₽</b> per month, payable on the 25th.'
  236. ''
  237. if kabel = 1:
  238. 'You currently have a cable subscription for your TV.'
  239. act 'Cancel your cable subscription (300 <b>₽</b>)':
  240. cla
  241. kabel = 0
  242. karta -= 300
  243. msg 'Your subscription has been cancelled and you can no longer watch the extra channels. The cable firm charges a one-time fee of 300 <b>₽</b> for disconnecting you.'
  244. gt 'komp', 'brows'
  245. end
  246. elseif kabel = 0 and TV = 1:
  247. 'You currently do not have a cable subscription for your TV.'
  248. act 'Get cable services for your TV':
  249. cla
  250. msg 'Unfortunately your TV is too old and crap for cable. You''ll have to get a modern TV first.'
  251. gt 'komp', 'brows'
  252. end
  253. elseif kabel = 0 and TV >= 2:
  254. 'You currently do not have a cable subscription for your TV.'
  255. act 'Get cable services for your TV (300 <b>₽</b> per month)':
  256. cla
  257. kabel = 1
  258. msg 'Soon after you fill out the form, you get a confirmation message that your sign-up was successful. You should have the extra channels on your TV now.'
  259. gt 'komp', 'brows'
  260. end
  261. else
  262. 'You don''t even have a TV!'
  263. act 'Leave this website':gt 'komp', 'brows'
  264. end
  265. act 'Leave this website':gt 'komp', 'brows'
  266. end
  267. if $ARGS[0] = 'foto':
  268. *clr & cla
  269. gs 'stat'
  270. if internet <= 0:
  271. '<center><b>Browser</b></center>'
  272. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
  273. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  274. act '<B>Close the browser</B>':gt 'komp','start'
  275. else
  276. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  277. 'You''re currently on Russia''s biggest social network site, "Assbook". Almost everyone has an account here, probably including the girl you took that photo of the other day!'
  278. '"Maybe if I can find her, I can blackmail her", you think to yourself. "This photo is very raunchy, after all... I bet she would hate to see it published, if she''s important!"'
  279. 'You can''t help but rub your pussy every now and then while you look at it. You''ll probably keep a copy of this for yourself, either way!'
  280. if shantfoto > 0:
  281. act 'Try to find out who she is (1:00)':
  282. cla
  283. minut += 60
  284. elektro += 3
  285. internet -= 1
  286. fotsearchrand = rand(0,10)
  287. if fotsearchrand <= 7:
  288. 'Despite your best efforts, you don''t manage to find the girl this time.'
  289. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  290. end
  291. if fotsearchrand > 7:
  292. shantfoto -= 1
  293. 'Despite your best efforts, you don''t manage to... wait, that''s her! You found her!'
  294. gerofotorand = rand(0,100)
  295. if gerofotorand > 30:
  296. 'Your dreams of making a fortune are quickly shattered when you check out her profile. Cheap clothes, few friends, lives in a poor district of the city... this girl is not worth blackmailing.'
  297. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  298. end
  299. if gerofotorand >= 5 and gerofotorand <= 30:
  300. shantsr += 1
  301. 'When you click through her profile, you estimate she''s an unknown middle class girl. Still, she has a lot of friends and the outfits she''s wearing in her photos look stylish... she has money to spend.'
  302. '"Why not make her spend some of it on me?" you laugh to yourself, and begin to write a private message.'
  303. 'You send her a copy of the photo with the private message, and tell her to transfer a very modest amount of 5,000 <b>₽</b> to your bank account. If she doesn''t want that photo to be sent to her entire friends list (which you secured before sending the message), the money needs to be on your bank account within 48 hours.'
  304. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  305. end
  306. if gerofotorand < 5:
  307. shantbog += 1
  308. 'You can barely believe it when you read her profile, this girl is a celebrity! It would be a major scandal if this photo got published!'
  309. 'You send her a copy of the photo with a private message, telling her to transfer 30,000 <b>₽</b> to your bank account. If she doesn''t want that photo to be sent to the press, the money needs to be on your bank account within 48 hours.'
  310. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  311. end
  312. end
  313. end
  314. end
  315. act 'Leave this website':gt 'komp', 'brows'
  316. end
  317. end
  318. if $ARGS[0] = 'rabota':
  319. *clr & cla
  320. if internet <= 0:
  321. '<center><b>Browser</b></center>'
  322. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/eror.jpg"></center>'
  323. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  324. act 'Close the browser':gt 'komp','start'
  325. else
  326. minut += 60
  327. internet -= 1
  328. komprabota = rand(0, 10)
  329. if $loc = 'shulga_room':komprabota = rand(5, 15)
  330. gs 'stat'
  331. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/komp.jpg"></center>'
  332. if komprabota = 0 and gorodokkomp = 0:
  333. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! <b>URGENTLY!</b> Female underwear model, for a photoshoot. Pay: 2000 <b>₽</b> cash."'
  334. 'The description explains that they need someone today. If you decide to take this job, you will have to shut down your computer and go there right away.'
  335. if pcs_apprnc < 120:
  336. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be an underwear model.'
  337. elseif pcs_apprnc >= 120:
  338. act 'Accept the job and go there':gt 'qjob', 'var1'
  339. end
  340. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  341. act 'Leave this website':gt 'komp', 'brows'
  342. elseif komprabota = 1 and gorodokkomp = 0:
  343. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! <b>URGENTLY!</b> Female underwear model, for a photoshoot. Pay: 2000 <b>₽</b> cash."'
  344. 'The description explains that they need someone today. If you decide to take this job, you will have to shut down your computer and go there right away.'
  345. if pcs_apprnc < 120:
  346. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be an underwear model.'
  347. elseif pcs_apprnc >= 120:
  348. act 'Accept the job and go there':gt 'qjob', 'var2'
  349. end
  350. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  351. act 'Leave this website':gt 'komp', 'brows'
  352. elseif komprabota > 1 and komprabota < 5 and gorodokkomp = 0:
  353. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! <b>URGENTLY!</b> Good looking female model, posing for artwork. Must be able to stand still in one pose for a long time. Pay: 1000 <b>₽</b> cash."'
  354. 'The description explains that they need someone today. If you decide to take this job, you will have to shut down your computer and go there right away.'
  355. if pcs_apprnc < 60:
  356. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be a model.'
  357. elseif pcs_apprnc >= 60:
  358. act 'Accept the job and go there':gt 'qjob', 'var3'
  359. end
  360. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  361. act 'Leave this website':gt 'komp', 'brows'
  362. elseif komprabota > 4 and komprabota < 8 and camwhore = 0:
  363. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! Webcam models. Flexible working hours. Click for more info."'
  364. act 'Gather more information':
  365. *clr & cla
  366. minut += 5
  367. gs 'stat'
  368. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore1.jpg"></center>'
  369. 'You click the button and get taken to the full job description.'
  370. '<i>For this job, you will have to expose your body in front of customers, fulfilling their wishes. Payment is completely based on a tip system: customers on the website can buy tokens, which they can use to tip girls they enjoy watching.'
  371. 'The website will cover all costs during your shows. But how much money you make is up to you: the better you are at attracting viewers, and the more you are willing to do to please them, the more likely they will be to tip you.'
  372. 'After a quick verification, you usually get paid immediately after a session ends. The tokens you earn will be converted to rubles, and paid to your bank account right away.'
  373. 'The website hides your stream for viewers from your region, so the chance of being recognized by someone you know in real life is very low.'
  374. 'If you''re interested in becoming a webcam girl, please fill in this questionnaire below.</i>'
  375. if pcs_inhib >= 40 or exhibitionist_lvl > 1 or (pcs_inhib >= 35 and exhibitionist_lvl > 0):
  376. act 'Fill in the questionnaire':
  377. *clr & cla
  378. camwhore = 1
  379. mfcclients = 0
  380. camclients = 0
  381. mfccum = 0
  382. minut += 20
  383. gs 'stat'
  384. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
  385. if $pcs_webcamname = '':
  386. 'You consider which name you''d like to register under.'
  387. $pcs_webcamname = input("Which name would you like to use? (Leave blank for <<$pcs_nickname>>)")
  388. if $pcs_webcamname = '':$pcs_webcamname = '<<$pcs_nickname>>'
  389. end
  390. 'You fill out the questionnaire and register yourself as a webcam model. Ten minutes later, you have already been approved and you can now earn money as a webcam girl.'
  391. 'Of course, you will need a functioning webcam to do this! If you don''t have one yet, they are fairly cheap to buy at most local supermarket chains.'
  392. act 'Leave this website':gt 'komp','brows'
  393. end
  394. act 'Leave this website':gt 'komp','brows'
  395. else
  396. ''
  397. 'You don''t feel comfortable showing of your body.'
  398. end
  399. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  400. act 'Leave this website':gt 'komp','brows'
  401. end
  402. else
  403. 'Unfortunately, you do not find any jobs you would consider doing.'
  404. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  405. act 'Leave this website':gt 'komp','brows'
  406. end
  407. end
  408. end
  409. if $ARGS[0] = 'study':
  410. *clr & cla
  411. minut = minut + 60
  412. elektro = elektro + 3
  413. internet -= 1
  414. intel_exp += 1 + (mentats_dose - rand(0,mentats_dose))
  415. compskl_exp += 1
  416. '<center><b>The Institute for Education Measurement</b></center>'
  417. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/study.jpg"></center>'
  418. 'You spend an hour on the IEM website, reading news articles and educational blogs. You feel a bit smarter afterwards.'
  419. act 'Leave this website':gt'komp','brows'
  420. end
  421. if $ARGS[0] = 'kursak':
  422. *clr & cla
  423. minut += 60
  424. elektro += 3
  425. internet -= 1
  426. pcs_mood -= 10
  427. compskl_exp += 1
  428. kursovik = kursovik + rand(pcs_intel/20,pcs_intel/10)
  429. if kursovik > 100:kursovik = 100
  430. '<center><b>Coursework</b></center>'
  431. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/kursak.jpg"></center>'
  432. 'It may be boring, but it still needs doing! You spend an hour doing coursework, and <<kursovik>>% of it is now finished.'
  433. act 'Leave this website':gt 'komp','brows'
  434. end
  435. if $ARGS[0] = 'agent':
  436. *clr & cla
  437. minut += 60
  438. elektro += 3
  439. internet -= 1
  440. gs 'stat'
  441. gs 'housing', 'rent'
  442. gs 'housing', 'sale'
  443. '<center><b>Kirsanova Real Estate Agency</b></center>'
  444. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/agent.jpg"></center>'
  445. *nl
  446. 'You''re currently at the website of the largest real estate agency in the area, Kirsanova Real Estate Agency.'
  447. '<br>The website shows they have apartments available for rent or purchase in various areas, both in and out of the city. Renting or purchase requires you visit the agency in the city center to fill an application and collect the keys. Rent on all properties is deducted every month on the 25th.'
  448. *nl
  449. '<b>Property listing</b>:'
  450. if ArendHouseSL > 0:
  451. 'You have <B><<ArendHouseSL>> days</B> remaining on the rental of your St. Petersburg apartment.'
  452. *nl
  453. elseif home_owned[1] = 0 and ArendHouseSL = 0:
  454. 'There is an apartment in St. Petersburg residental area available, for rent or puchase.'
  455. 'Rent is: <<$home_rent_txt[1]>> ₽ per month. Current sale price is listed at: <<$home_value_txt[1]>> <b>₽</b>.'
  456. *nl
  457. end
  458. if home_owned[3] = 0:
  459. 'There is a holiday cottage with an adjacent allotment in the communal village for sale.'
  460. 'Current sale price is listed at: <<$home_value_txt[3]>> <b>₽</b>.'
  461. *nl
  462. end
  463. if home_owned[4] > 0 and ArendHouseSL4 > 0:
  464. 'You have <B><<ArendHouseSL4>> days</B> remaining on the rental of your Pushkin apartment.'
  465. *nl
  466. elseif home_owned[4] = 0 and ArendHouseSL4 = 0:
  467. 'There is an apartment in Pushkin area (Old Town) available to rent.'
  468. 'Rent is: <<$home_rent_txt[4]>> <b>₽</b> per month.'
  469. *nl
  470. end
  471. if home_owned[5] = 0:
  472. 'There is a plot in the suburbs available for puchase, with planning permission for a mansion.'
  473. 'Current sale price is listed at: <<$home_value_txt[5]>> <b>₽</b>.'
  474. *nl
  475. end
  476. if karta + bankDebtLimit >= home_rent[1] and home_owned[1] = 1:
  477. act 'Pay rent on St. Petersburg':
  478. cla
  479. karta -= home_rent[1]
  480. ArendHouseSL += ArendHouseSL_due
  481. 'After a very simple procedure, you can now call an apartment in the city residential district home for another 30 days. You have <B><<ArendHouseSL>> days</B> remaining on the rental of your apartment.'
  482. act 'Leave this website':gt 'komp','brows'
  483. end
  484. end
  485. if karta + bankDebtLimit >= home_rent[4] and home_owned[4] > 0:
  486. act 'Pay rent on Pushkin':
  487. cla
  488. karta -= home_rent[4]
  489. ArendHouseSL4 += ArendHouseSL_due
  490. 'After a very simple procedure, you can now call an apartment in Pushkin home for another 30 days. You have <B><<ArendHouseSL4>> days</B> remaining on the rental of your apartment.'
  491. act 'Leave this website':gt 'komp','brows'
  492. end
  493. end
  494. act 'Leave this website':gt 'komp','brows'
  495. end
  496. if $ARGS[0] = 'mfc':
  497. if mesec > 0:
  498. *clr & cla
  499. minut += 2
  500. topmfc = 1
  501. backmfc = 1
  502. tokens = 0
  503. camclients = 0
  504. gs 'stat'
  505. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
  506. 'It''s that time of the month! You feel sick to your stomach and the cramps hurt pretty badly from time to time... you''re in no condition to earn money showing off your body.'
  507. act 'Leave this website':gt 'komp','brows'
  508. elseif sisterHere = 0 or $loc ! 'bedrPar':
  509. act 'Go to your MFC homepage':
  510. *clr & cla
  511. minut += 2
  512. gs 'stat'
  513. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
  514. 'You enter your own chatroom on the website. You currently have <<camclients>> viewers.'
  515. act 'Continue':gt 'komp','startpagemfc'
  516. end
  517. act 'Leave this website':
  518. *clr & cla
  519. minut += 2
  520. topmfc = 1
  521. backmfc = 1
  522. tokens = 0
  523. camclients = 0
  524. gs 'stat'
  525. gt 'komp','brows'
  526. end
  527. elseif sisterHere > 0 and $loc = 'bedrPar':
  528. *clr & cla
  529. minut += 2
  530. topmfc = 1
  531. backmfc = 1
  532. tokens = 0
  533. camclients = 0
  534. gs 'stat'
  535. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
  536. 'You can''t do any webcam activities with your sister in the room!'
  537. act 'Leave this website':gt 'komp','brows'
  538. end
  539. end
  540. if $ARGS[0] = 'startpagemfc':
  541. if vgape > 10 or agape > 10:
  542. *clr & cla
  543. gs 'stat'
  544. 'While you sit in your chair, you can''t help but wince every time you move. You want to put up a show, but it hurts too much. And besides... you doubt your viewers would want to see you in your current state! You should heal up a bit before trying again.'
  545. act 'Collect your earnings and leave':
  546. karta += tokens * 2
  547. gt 'komp','mfc'
  548. end
  549. else
  550. *clr & cla
  551. gs 'stat'
  552. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
  553. 'You casually chat with the <<camclients>> visitors currently in your chatroom. Once you turn on your webcam, things will probably get busier.'
  554. act 'Turn on your webcam':gt 'komp','waitclients'
  555. act 'Collect your earnings and leave':
  556. karta += tokens * 2
  557. gt 'komp','mfc'
  558. end
  559. end
  560. end
  561. if $ARGS[0] = 'waitclients':
  562. gs'family'
  563. *clr & cla
  564. minut += rand(1,4)
  565. if mfccum > 0: mfcdaycum = daystart
  566. mfcclients += 1
  567. $menu_loc = 'komp'
  568. $menu_arg = 'waitclients'
  569. menu_off = 0
  570. if topmfc = 1 and backmfc = 1:
  571. if pcs_apprnc < 100:
  572. if webpopular < 15:
  573. if mfcclients > 5:
  574. camclients -= rand(1,3)
  575. else
  576. camclients += rand(1,3)
  577. end
  578. elseif webpopular >= 15 and webpopular < 35:
  579. if mfcclients > 3:
  580. camclients -= rand(3,5)
  581. else
  582. camclients += rand(3,5)
  583. end
  584. elseif webpopular >= 35 and webpopular < 75:
  585. if mfcclients > 3:
  586. camclients -= rand(4,8)
  587. else
  588. camclients += rand(4,8)
  589. end
  590. elseif webpopular >= 75:
  591. if mfcclients > 3:
  592. camclients -= rand(5,15)
  593. else
  594. camclients += rand(5,15)
  595. end
  596. end
  597. chancetips = rand(0,100)
  598. clientask = rand(20,100)
  599. if chancetips >= 95 and camclients >= 250:
  600. if webpopular >= 50:
  601. tokens += rand(10,30)
  602. else
  603. tokens += rand(1,20)
  604. end
  605. end
  606. else
  607. if webpopular < 15:
  608. if mfcclients > 5:
  609. camclients -= rand(1,3)
  610. else
  611. camclients += rand(3,5)
  612. end
  613. elseif webpopular >= 15 and webpopular < 35:
  614. if mfcclients > 5:
  615. camclients -= rand(3,5)
  616. else
  617. camclients += rand(5,8)
  618. end
  619. elseif webpopular >= 35 and webpopular < 75:
  620. if mfcclients > 5:
  621. camclients -= rand(5,8)
  622. else
  623. camclients += rand(5,12)
  624. end
  625. elseif webpopular >= 75:
  626. if mfcclients > 5:
  627. camclients -= rand(8,12)
  628. else
  629. camclients += rand(8,15)
  630. end
  631. end
  632. chancetips = rand(5,100)
  633. clientask = rand(30,100)
  634. if chancetips >= 95 and camclients >= 200:
  635. if webpopular >= 50:
  636. tokens += rand(10,40)
  637. else
  638. tokens += rand(1,20)
  639. end
  640. end
  641. end
  642. elseif topmfc = 0 and backmfc = 1:
  643. if pcs_apprnc < 100:
  644. if webpopular < 15:
  645. if mfcclients > 3:
  646. camclients -= rand(1,3)
  647. else
  648. camclients += rand(1,3)
  649. end
  650. elseif webpopular >= 15 and webpopular < 35:
  651. if mfcclients > 3:
  652. camclients -= rand(1,5)
  653. else
  654. camclients += rand(1,5)
  655. end
  656. elseif webpopular >= 35 and webpopular < 75:
  657. if mfcclients > 3:
  658. camclients -= rand(5,10)
  659. else
  660. camclients += rand(5,10)
  661. end
  662. elseif webpopular >= 75:
  663. if mfcclients > 3:
  664. camclients -= rand(6,15)
  665. else
  666. camclients += rand(6,15)
  667. end
  668. end
  669. chancetips = rand(5,90)
  670. clientask = rand(30,100)
  671. if chancetips >= 85 and camclients >= 230:
  672. if webpopular >= 50:
  673. tokens += rand(10,35)
  674. else
  675. tokens += rand(1,20)
  676. end
  677. end
  678. else
  679. if webpopular < 15:
  680. if mfcclients > 5:
  681. camclients -= rand(1,3)
  682. else
  683. camclients += rand(3,6)
  684. end
  685. elseif webpopular >= 15 and webpopular < 35:
  686. if mfcclients > 5:
  687. camclients -= rand(3,6)
  688. else
  689. camclients += rand(5,10)
  690. end
  691. elseif webpopular >= 35 and webpopular < 75:
  692. if mfcclients > 5:
  693. camclients -= rand(6,10)
  694. else
  695. camclients += rand(7,12)
  696. end
  697. elseif webpopular >= 75:
  698. if mfcclients > 5:
  699. camclients -= rand(7,12)
  700. else
  701. camclients += rand(10,15)
  702. end
  703. end
  704. chancetips = rand(10,90)
  705. clientask = rand(35,100)
  706. if chancetips >= 85 and camclients >= 200:
  707. if webpopular >= 50:
  708. tokens += rand(15,35)
  709. else
  710. tokens += rand(1,20)
  711. end
  712. end
  713. end
  714. elseif topmfc = 1 and backmfc = 0:
  715. if pcs_apprnc < 100:
  716. if webpopular < 15:
  717. if mfcclients > 3:
  718. camclients -= rand(1,3)
  719. else
  720. camclients += rand(1,3)
  721. end
  722. elseif webpopular >= 15 and webpopular < 35:
  723. if mfcclients > 3:
  724. camclients -= rand(2,5)
  725. else
  726. camclients += rand(2,5)
  727. end
  728. elseif webpopular >= 35 and webpopular < 75:
  729. if mfcclients > 3:
  730. camclients -= rand(5,15)
  731. else
  732. camclients += rand(5,15)
  733. end
  734. elseif webpopular >= 75:
  735. if mfcclients > 3:
  736. camclients -= rand(5,20)
  737. else
  738. camclients += rand(5,20)
  739. end
  740. end
  741. chancetips = rand(10,80)
  742. clientask = rand(30,100)
  743. if chancetips >= 75 and camclients >= 200:
  744. if webpopular >= 50:
  745. tokens += rand(10,40)
  746. else
  747. tokens += rand(1,20)
  748. end
  749. end
  750. else
  751. if webpopular < 15:
  752. if mfcclients > 5:
  753. camclients -= rand(1,3)
  754. else
  755. camclients += rand(4,7)
  756. end
  757. elseif webpopular >= 15 and webpopular < 35:
  758. if mfcclients > 5:
  759. camclients -= rand(4,8)
  760. else
  761. camclients += rand(5,12)
  762. end
  763. elseif webpopular >= 35 and webpopular < 75:
  764. if mfcclients > 5:
  765. camclients -= rand(5,12)
  766. else
  767. camclients += rand(9,15)
  768. end
  769. elseif webpopular >= 75:
  770. if mfcclients > 5:
  771. camclients -= rand(8,15)
  772. else
  773. camclients += rand(15,20)
  774. end
  775. end
  776. chancetips = rand(15,80)
  777. clientask = rand(35,100)
  778. if chancetips >= 75 and camclients >= 170:
  779. if webpopular >= 50:
  780. tokens += rand(15,45)
  781. else
  782. tokens += rand(1,20)
  783. end
  784. end
  785. end
  786. else
  787. if pcs_apprnc < 100:
  788. if webpopular < 15:
  789. if mfcclients > 3:
  790. camclients -= rand(1,4)
  791. else
  792. camclients += rand(1,4)
  793. end
  794. elseif webpopular >= 15 and webpopular < 35:
  795. if mfcclients > 3:
  796. camclients -= rand(3,10)
  797. else
  798. camclients += rand(3,10)
  799. end
  800. elseif webpopular >= 35 and webpopular < 75:
  801. if mfcclients > 3:
  802. camclients -= rand(10,20)
  803. else
  804. camclients += rand(10,20)
  805. end
  806. elseif webpopular >= 75:
  807. if mfcclients > 3:
  808. camclients -= rand(10,30)
  809. else
  810. camclients += rand(10,30)
  811. end
  812. end
  813. chancetips = rand(15,50)
  814. clientask = rand(35,100)
  815. if chancetips >= 45 and camclients >= 150:
  816. if webpopular >= 50:
  817. tokens += rand(20,50)
  818. else
  819. tokens += rand(5,25)
  820. end
  821. end
  822. else
  823. if webpopular < 15:
  824. if mfcclients > 5:
  825. camclients -= rand(1,4)
  826. else
  827. camclients += rand(3,8)
  828. end
  829. elseif webpopular >= 15 and webpopular < 35:
  830. if mfcclients > 5:
  831. camclients -= rand(3,8)
  832. else
  833. camclients += rand(3,15)
  834. end
  835. elseif webpopular >= 35 and webpopular < 75:
  836. if mfcclients > 5:
  837. camclients -= rand(5,12)
  838. else
  839. camclients += rand(10,20)
  840. end
  841. elseif webpopular >= 75:
  842. if mfcclients > 5:
  843. camclients -= rand(8,18)
  844. else
  845. camclients += rand(10,30)
  846. end
  847. end
  848. chancetips = rand(20,50)
  849. clientask = rand(45,100)
  850. if chancetips >= 45 and camclients >= 100:
  851. if webpopular >= 50:
  852. tokens += rand(30,50)
  853. else
  854. tokens += rand(10,30)
  855. end
  856. end
  857. end
  858. end
  859. if camclients <= 0:camclients = 0
  860. gs 'stat'
  861. if topmfc = 1 and backmfc = 1:
  862. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore3.jpg"></center>'
  863. elseif topmfc = 0 and backmfc = 1:
  864. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore4.jpg"></center>'
  865. elseif topmfc = 1 and backmfc = 0:
  866. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
  867. else
  868. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore6.jpg"></center>'
  869. end
  870. tokenpay = tokens * 2
  871. 'You take a moment of rest, and just chat casually with your <<camclients>> visitors.'
  872. 'You have earned <<tokens>> tokens so far this session, which amounts to <<tokenpay>> <b>₽</b>.'
  873. act 'Wait for more visitors':gt 'komp','waitclients'
  874. if topmfc = 1 and clientask >= 91:
  875. *clr & cla
  876. gs 'stat'
  877. menu_off = 1
  878. 'One of your visitors really wants to see your boobs! He''s willing to leave you some tokens as a tip, if you take off your bra right now...'
  879. act 'Remove your bra':
  880. *clr & cla
  881. webpopular += 1
  882. topmfc = 0
  883. mfcclients -= 1
  884. if webpopular < 15:
  885. tokens += rand(10,25)
  886. elseif webpopular >= 15 and webpopular < 35:
  887. tokens += rand(15,25)
  888. elseif webpopular >= 35 and webpopular < 75:
  889. tokens += rand(25,50)
  890. elseif webpopular >= 75:
  891. tokens += rand(50,150)
  892. end
  893. gs 'stat'
  894. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore7.jpg"></center>'
  895. 'You stand up and lean forward, so your boobs are in full view of the camera. You slowly take off your bra and give the camera a sweet smile.'
  896. 'While you sit back down and toss your bra to the ground, you hear the donation sound several times. Your visitors enjoyed that!'
  897. gs 'arousal', 'porn', 2, 'exhibitionism'
  898. gs 'stat'
  899. act 'Continue':gt 'komp','waitclients'
  900. end
  901. act 'Tease instead':
  902. *clr & cla
  903. webpopular += rand(-1,1)
  904. mfcclients += rand (-1,1)
  905. if webpopular < 15:
  906. tokens += rand(0,10)
  907. elseif webpopular >= 15 and webpopular < 35:
  908. tokens += rand(0,15)
  909. elseif webpopular >= 35 and webpopular < 75:
  910. tokens += rand(5,30)
  911. elseif webpopular >= 75:
  912. tokens += rand(25,50)
  913. end
  914. gs 'stat'
  915. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/tits2.mp4"></video></center>'
  916. 'Not quite prepared to reveal your breasts you play with them trough your shirt hoping that will appease the crowd.'
  917. gs 'arousal', 'porn', 2, 'exhibitionism'
  918. gs 'stat'
  919. act 'Continue':gt 'komp','waitclients'
  920. end
  921. act 'Give them a brief look':
  922. *clr & cla
  923. webpopular += rand(-1,1)
  924. mfcclients += rand(-1,1)
  925. if webpopular < 15:
  926. tokens += rand(0,15)
  927. elseif webpopular >= 15 and webpopular < 35:
  928. tokens += rand(0,25)
  929. elseif webpopular >= 35 and webpopular < 75:
  930. tokens += rand(5,40)
  931. elseif webpopular >= 75:
  932. tokens += rand(25,75)
  933. end
  934. gs 'stat'
  935. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/undress4.mp4"></video></center>'
  936. 'You playfully lift your top hoping a short viewing will sate them for the time being and encourage them to stay for more.'
  937. gs 'arousal', 'porn', 2
  938. gs 'stat'
  939. act 'Continue':gt 'komp','waitclients'
  940. end
  941. gs 'willpower', 'exhib', 'resist', 'hard'
  942. if will_cost <= pcs_willpwr:
  943. act 'Refuse to take off your bra (<<will_cost>> Willpower)':
  944. *clr & cla
  945. webpopular -= 1
  946. gs 'willpower', 'pay', 'resist'
  947. gs 'stat'
  948. gt 'komp','waitclients'
  949. end
  950. else
  951. act 'Refuse to take off your bra (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  952. end
  953. end
  954. if backmfc = 1 and clientask >= 81 and clientask < 91:
  955. *clr & cla
  956. menu_off = 1
  957. 'One of the visitors asks you to remove your panties, and show your bare pussy to the camera. A second visitor chimes in, adding some extra tokens to the offer.'
  958. act 'Take off your panties':
  959. *clr & cla
  960. mfcclients -= 1
  961. webpopular += 1
  962. backmfc = 0
  963. if webpopular < 15:
  964. tokens += rand(10,25)
  965. elseif webpopular >= 15 and webpopular < 35:
  966. tokens += rand(15,25)
  967. elseif webpopular >= 35 and webpopular < 75:
  968. tokens += rand(25,50)
  969. elseif webpopular >= 75:
  970. tokens += rand(50,150)
  971. end
  972. gs 'stat'
  973. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore8.jpg"></center>'
  974. 'You make a show of pointing the camera at your groin, and slowly push your panties down your legs. The chat explodes for a moment, with several visitors complimenting your body, and a few more making lewd comments on what they would do to you if they were with you right now.'
  975. 'As promised, you receive some tokens.'
  976. gs 'arousal', 'porn', 2, 'exhibitionism'
  977. gs 'stat'
  978. act 'Continue':gt 'komp','waitclients'
  979. end
  980. act 'Tease instead':
  981. *clr & cla
  982. webpopular += rand(-1,1)
  983. mfcclients += rand(-1,1)
  984. if webpopular < 15:
  985. tokens += rand(0,15)
  986. elseif webpopular >= 15 and webpopular < 35:
  987. tokens += rand(0,25)
  988. elseif webpopular >= 35 and webpopular < 75:
  989. tokens += rand(5,40)
  990. elseif webpopular >= 75:
  991. tokens += rand(25,75)
  992. end
  993. gs 'stat'
  994. if topmfc = 1:
  995. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/undress2.mp4"></video></center>'
  996. 'Deciding to stay clothed a little longer you feel that you won''t be able to satisfy the crowd without showing at least some skin.'
  997. 'Standing up you start to dancing flashing your tits and ass to cam.'
  998. end
  999. if topmfc = 0:
  1000. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/show5.mp4"></video></center>'
  1001. 'Lowering your panties to emphasize your butt you shake it briefly in an effort to appease the crowd'
  1002. end
  1003. gs 'arousal', 'porn', 2, 'exhibitionism'
  1004. gs 'stat'
  1005. act 'Continue':gt 'komp','waitclients'
  1006. end
  1007. act 'Give them a brief look':
  1008. *clr & cla
  1009. webpopular += rand(-1,1)
  1010. mfcclients += rand(-1,1)
  1011. if webpopular < 15:
  1012. tokens += rand(0,15)
  1013. elseif webpopular >= 15 and webpopular < 35:
  1014. tokens += rand(0,25)
  1015. elseif webpopular >= 35 and webpopular < 75:
  1016. tokens += rand(5,40)
  1017. elseif webpopular >= 75:
  1018. tokens += rand(25,75)
  1019. end
  1020. gs 'stat'
  1021. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/show1.mp4"></video></center>'
  1022. 'You push your panties to the side and bend over to give a short preview of what''s to come before quickly covering up again and hoping it was enough to keep viewers interested.'
  1023. gs 'arousal', 'porn', 2, 'exhibitionism'
  1024. gs 'stat'
  1025. act 'Continue':gt 'komp','waitclients'
  1026. end
  1027. gs 'willpower', 'exhib', 'resist', 'hard'
  1028. if will_cost <= pcs_willpwr:
  1029. act 'Refuse to take off your panties (<<will_cost>> Willpower)':
  1030. *clr & cla
  1031. webpopular -= 1
  1032. gs 'willpower', 'pay', 'resist'
  1033. gs 'stat'
  1034. gt 'komp','waitclients'
  1035. end
  1036. else
  1037. act 'Refuse to take off your panties (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1038. end
  1039. end
  1040. if topmfc = 0 and clientask >= 95 and clientask < 99:
  1041. menu_off = 1
  1042. *clr & cla
  1043. 'One of the visitors types: "Play with those titties, girl! I''ll pay!"'
  1044. act 'Play with your boobs':
  1045. *clr & cla
  1046. mfcclients = 0
  1047. webpopular += rand(hotcat/2 -2,hotcat/2)
  1048. backmfc = 0
  1049. if webpopular < 15:
  1050. tokens += rand(15,25)
  1051. elseif webpopular >= 15 and webpopular < 35:
  1052. tokens += rand(20,30)
  1053. elseif webpopular >= 35 and webpopular < 75:
  1054. tokens += rand(50,100)
  1055. elseif webpopular >= 75:
  1056. tokens += rand(50,150)
  1057. end
  1058. gs 'stat'
  1059. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore10.jpg"></center>'
  1060. 'You adjust your camera and lie down on your bed, and start to knead your tits and pinch your nipples playfully. When you hear the donation sound, you smile sweetly at the camera and thank the person who donated personally, immediately prompting a second visitor to donate as well.'
  1061. gs 'arousal', 'porn', 2, 'exhibitionism'
  1062. gs 'stat'
  1063. act 'Continue':gt 'komp','waitclients'
  1064. end
  1065. gs 'willpower', 'exhib', 'resist', 'hard'
  1066. if will_cost <= pcs_willpwr:
  1067. act 'Refuse to play with your boobs (<<will_cost>> Willpower)':
  1068. *clr & cla
  1069. webpopular -= 1
  1070. gs 'willpower', 'pay', 'resist'
  1071. gs 'stat'
  1072. gt 'komp','waitclients'
  1073. end
  1074. else
  1075. act 'Refuse to play with your boobs (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1076. end
  1077. end
  1078. if backmfc = 0 and clientask = 99:
  1079. menu_off = 1
  1080. *clr & cla
  1081. '"Let''s see that sweet cunt of yours again, whore!" one of your visitors says.'
  1082. 'He''s kinda rude about it, but then again... he''s willing to pay.'
  1083. act 'Do it':
  1084. *clr & cla
  1085. mfcclients = 0
  1086. webpopular += rand(hotcat/2 -2,hotcat/2)
  1087. if webpopular < 15:
  1088. tokens += rand(20,25)
  1089. elseif webpopular >= 15 and webpopular < 35:
  1090. tokens += rand(25,50)
  1091. elseif webpopular >= 35 and webpopular < 75:
  1092. tokens += rand(50,100)
  1093. elseif webpopular >= 75:
  1094. tokens += rand(100,150)
  1095. end
  1096. gs 'stat'
  1097. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore12.jpg"></center>'
  1098. 'You lie down comfortably and put your hand between your legs, gently rubbing your labia with your fingers. You put some effort into showing how wet you are already, which is met with some enthusiastic chatter.'
  1099. gs 'arousal', 'porn', 2, 'exhibitionism'
  1100. gs 'stat'
  1101. if pcs_horny >= 100:
  1102. mfccum += 1
  1103. pcs_mood = 100
  1104. gs 'stat'
  1105. $orgasm_or = 'custom'
  1106. $orgasm_txt = 'You groan despite yourself, and realize you''re about to have an orgasm on camera! Deciding it''s too late to stop, you flick your fingers over your clit several more times and moan loudly as your whole body begins to tremble. When you look at the chat again, you see a mixture of compliments and lewd comments on your show. Either way: they loved it!'
  1107. end
  1108. act 'Continue':gt 'komp','waitclients'
  1109. end
  1110. gs 'willpower', 'exhib', 'resist', 'hard'
  1111. if will_cost <= pcs_willpwr:
  1112. act 'Ignore him (<<will_cost>> Willpower)':
  1113. *clr & cla
  1114. webpopular -= 1
  1115. gs 'willpower', 'pay', 'resist'
  1116. gs 'stat'
  1117. gt 'komp','waitclients'
  1118. end
  1119. else
  1120. act 'Ignore him (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1121. end
  1122. end
  1123. if backmfc = 0 and clientask = 100:
  1124. menu_off = 1
  1125. *clr & cla
  1126. 'One of the visitors asks very politely: "Uh, hi! Could you please show me your vagina up close?"'
  1127. act 'Show him your vagina':
  1128. *clr & cla
  1129. mfcclients = 0
  1130. webpopular += rand(hotcat/2 -2,hotcat/2)
  1131. if webpopular < 15:
  1132. tokens += rand(10,25)
  1133. elseif webpopular >= 15 and webpopular < 35:
  1134. tokens += rand(15,25)
  1135. elseif webpopular >= 35 and webpopular < 75:
  1136. tokens += rand(25,50)
  1137. elseif webpopular >= 75:
  1138. tokens += rand(50,150)
  1139. end
  1140. gs 'stat'
  1141. if analplugIN = 1:
  1142. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore19.jpg"></center>'
  1143. end
  1144. if pcs_vag = 0 and analplugIN = 0:
  1145. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore18.jpg"></center>'
  1146. end
  1147. if pcs_vag > 0 and pcs_vag <= 10 and analplugIN = 0:
  1148. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore13.jpg"></center>'
  1149. end
  1150. if pcs_vag > 10 and pcs_vag <= 15 and analplugIN = 0:
  1151. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore14.jpg"></center>'
  1152. end
  1153. if pcs_vag > 15 and pcs_vag <= 25 and analplugIN = 0:
  1154. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore15.jpg"></center>'
  1155. end
  1156. if pcs_vag > 25 and pcs_vag <= 35 and analplugIN = 0:
  1157. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore16.jpg"></center>'
  1158. end
  1159. if pcs_vag > 35 and analplugIN = 0:
  1160. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore17.jpg"></center>'
  1161. end
  1162. 'Aww, what a sweetheart! You smile at the camera and do what your client wants. He delivers on his promise as well, sending some tokens your way. The rest of the chat is thanking him too, everyone wanted to see that!'
  1163. gs 'arousal', 'porn', 2, 'exhibitionism'
  1164. gs 'stat'
  1165. act 'Continue':gt 'komp','waitclients'
  1166. end
  1167. gs 'willpower', 'exhib', 'resist', 'hard'
  1168. if will_cost <= pcs_willpwr:
  1169. act 'Ignore him (<<will_cost>> Willpower)':
  1170. *clr & cla
  1171. webpopular -= 1
  1172. gs 'willpower', 'pay', 'resist'
  1173. gs 'stat'
  1174. gt 'komp','waitclients'
  1175. end
  1176. else
  1177. act 'Ignore him (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1178. end
  1179. end
  1180. if backmfc = 0 and pcs_ass >= 30 and webpopular >= 50 and clientask = 80:
  1181. menu_off = 1
  1182. *clr & cla
  1183. 'One of the visitors makes several comments on how badly he wants to fuck your ass, and then offers you tokens to show your anus to him...'
  1184. act 'Show them your battered sphincter':
  1185. *clr & cla
  1186. mfcclients = 0
  1187. webpopular += rand(hotcat/2-1,1+hotcat/2)
  1188. backmfc = 0
  1189. if pcs_apprnc > 100:
  1190. tokens += rand(50,100)
  1191. else
  1192. tokens += rand(40,75)
  1193. end
  1194. if webpopular < 15:
  1195. tokens += rand(25,50)
  1196. elseif webpopular >= 15 and webpopular < 35:
  1197. tokens += rand(50,100)
  1198. elseif webpopular >= 35 and webpopular < 75:
  1199. tokens += rand(100,150)
  1200. elseif webpopular >= 75:
  1201. tokens += rand(100,200)
  1202. end
  1203. gs 'stat'
  1204. if analplugIN = 0:
  1205. if cumsumass > 39:
  1206. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore74.jpg"></center>'
  1207. 'You turn your back to the camera and pull your ass cheeks aside, showing everyone your battered anus. When you push softly, you suddenly hear the chat exploding.'
  1208. '"Oh my god, is that sperm!?" someone wonders.'
  1209. '"Definitely! What a whore!" someone else adds.'
  1210. '"I''d love to add my load to that!" a third one laughs.'
  1211. 'Oh no! Your face turns a deep red... you''re so ashamed right now! You try to calm the chat down, but the vulgar comments just keep coming and coming.'
  1212. 'At least the visitor who promised to donate did, so you''re a few tokens richer.'
  1213. gs 'arousal', 'porn', 2, 'exhibitionism'
  1214. gs 'stat'
  1215. else
  1216. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore20,<<rand(0,7)>>.jpg"></center>'
  1217. 'You bite your lip for a second, trying to think of a way to get out of his request. Then, you sigh and show them your rectum. It''s obviously quite used to having objects shoved in, something your audience notices immediately.'
  1218. 'Then your greed overcomes you. They already know... you might as well earn some money by showing them properly, right?'
  1219. 'You pull your ass cheeks aside, giving them a good view of your worn out anus.'
  1220. gs 'arousal', 'porn', 2, 'exhibitionism'
  1221. gs 'stat'
  1222. end
  1223. else
  1224. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore21.jpg"></center>'
  1225. 'You smile to yourself, he''s going to love what you have in store for him!'
  1226. '"I''m sorry", you tell him, explicitly mentioning his username as well. "I can''t right now..."'
  1227. 'Then you turn around, and show him the large plug you currently have shoved inside you. You wiggle your ass seductively at the camera, and hear the donation sound mere seconds later.'
  1228. gs 'arousal', 'porn', 2, 'exhibitionism'
  1229. gs 'stat'
  1230. end
  1231. act 'Continue':gt 'komp','waitclients'
  1232. end
  1233. gs 'willpower', 'exhib', 'resist', 'hard'
  1234. if will_cost <= pcs_willpwr:
  1235. act 'Ignore him (<<will_cost>> Willpower)':
  1236. *clr & cla
  1237. webpopular -= 1
  1238. gs 'willpower', 'pay', 'resist'
  1239. gs 'stat'
  1240. gt 'komp','waitclients'
  1241. end
  1242. else
  1243. act 'Ignore him (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1244. end
  1245. end
  1246. if webpopular >= 15 and pcs_ass >= 15 and clientask = 89:
  1247. menu_off = 1
  1248. *clr & cla
  1249. gt 'kompMFCtwo'
  1250. end
  1251. if webpopular < 50 and clientask = 88:
  1252. menu_off = 1
  1253. *clr & cla
  1254. gt 'kompMFCtwo'
  1255. end
  1256. if webpopular >= 50 and pcs_vag >= 35 and clientask = 87:
  1257. menu_off = 1
  1258. *clr & cla
  1259. gt 'kompMFCtwo'
  1260. end
  1261. if webpopular >= 35 and pcs_vag >= 25 and alko >= 4 and clientask = 86:
  1262. menu_off = 1
  1263. *clr & cla
  1264. gt 'kompMFCtwo'
  1265. end
  1266. if webpopular >= 50 and pcs_vag + pcs_ass > 0 and alko >= 4 and clientask = 85:
  1267. menu_off = 1
  1268. *clr & cla
  1269. gt 'kompMFCtwo'
  1270. end
  1271. if backmfc = 0 and webpopular >= 25 and pcs_vag + pcs_ass >= 30 and alko >= 4 and clientask = 84:
  1272. menu_off = 1
  1273. *clr & cla
  1274. gt 'kompMFCtwo'
  1275. end
  1276. if backmfc = 0 and pcs_vag > 20 and clientask = 83:
  1277. menu_off = 1
  1278. *clr & cla
  1279. gt 'kompMFCtwo'
  1280. end
  1281. if webpopular > 25 and backmfc = 0 and sub > 25 and pcs_vag > 10 and prezik > 0 and clientask = 82:
  1282. menu_off = 1
  1283. *clr & cla
  1284. gt 'kompMFCtwo'
  1285. end
  1286. if backmfc = 0 and webpopular >= 50 and pcs_ass > 25 and clientask = 81:
  1287. menu_off = 1
  1288. *clr & cla
  1289. gt 'kompMFCtwo'
  1290. end
  1291. if backmfc = 0 and clientask < 80 and clientask >= 77:
  1292. menu_off = 1
  1293. *clr & cla
  1294. gt 'kompMFCanal'
  1295. end
  1296. if clientask < 77 and clientask >= 74:
  1297. menu_off = 1
  1298. *clr & cla
  1299. gt 'kompMFCoral'
  1300. end
  1301. if backmfc = 0 and clientask => 90 and clientask < 95:
  1302. menu_off = 1
  1303. *clr & cla
  1304. 'One of the visitors asks: "Do you have a vibrator or dildo? I want you to put up a little show..."'
  1305. gt 'kompMFC'
  1306. end
  1307. if clientask < 74:
  1308. act 'Dance':
  1309. menu_off = 1
  1310. *clr & cla
  1311. gs 'stat'
  1312. if topmfc = 1 and backmfc = 1:
  1313. if webpopular < 15:
  1314. camclients += rand(pcs_dancero - 60,pcs_dancero - 55)
  1315. elseif webpopular >= 15 and webpopular < 35:
  1316. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1317. elseif webpopular >= 35 and webpopular < 75:
  1318. camclients += rand(pcs_dancero - 50,pcs_dancero - 42)
  1319. elseif webpopular >= 75:
  1320. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1321. end
  1322. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/strip4.mp4"></video></center>'
  1323. 'Turning on some music you dance eroticiy hoping to entice some viewers.'
  1324. end
  1325. if topmfc = 0 and backmfc = 1:
  1326. if webpopular < 15:
  1327. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1328. elseif webpopular >= 15 and webpopular < 35:
  1329. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1330. elseif webpopular >= 35 and webpopular < 75:
  1331. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1332. elseif webpopular >= 75:
  1333. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1334. end
  1335. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/strip7.mp4"></video></center>'
  1336. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1337. end
  1338. if topmfc = 1 and backmfc = 0:
  1339. if webpopular < 15:
  1340. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1341. elseif webpopular >= 15 and webpopular < 35:
  1342. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1343. elseif webpopular >= 35 and webpopular < 75:
  1344. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1345. elseif webpopular >= 75:
  1346. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1347. end
  1348. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/strip6.mp4"></video></center>'
  1349. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1350. end
  1351. if topmfc = 0 and backmfc = 0:
  1352. if webpopular < 15:
  1353. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1354. elseif webpopular >= 15 and webpopular < 35:
  1355. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1356. elseif webpopular >= 35 and webpopular < 75:
  1357. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1358. elseif webpopular >= 75:
  1359. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1360. end
  1361. '<center><video autoplay loop src="images/shared/accessories/computer/webcam/strip5.mp4"></video></center>'
  1362. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1363. end
  1364. dancero_exp += 1
  1365. gs 'arousal', 'porn', 5
  1366. gs 'stat'
  1367. act 'Continue':gt 'komp','waitclients'
  1368. end
  1369. end
  1370. if topmfc = 1 and backmfc = 1 and clientask < 74:
  1371. act 'Perform a striptease':
  1372. menu_off = 1
  1373. *clr & cla
  1374. gs 'stat'
  1375. if webpopular < 15:
  1376. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1377. elseif webpopular >= 15 and webpopular < 35:
  1378. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1379. elseif webpopular >= 35 and webpopular < 75:
  1380. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1381. elseif webpopular >= 75:
  1382. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1383. end
  1384. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease4.mp4"></video></center>'
  1385. 'You decide that making a show of stripping yourself might encourage some attention. Repositioning your cam, you stand up and dance as you remove your underwear.'
  1386. dancero_exp += 1
  1387. topmfc = 0
  1388. backmfc = 0
  1389. gs 'arousal', 'porn', 3
  1390. gs 'stat'
  1391. act 'Continue':gt 'komp','waitclients'
  1392. end
  1393. end
  1394. if topmfc = 1 and clientask < 74:
  1395. act 'Take off your bra':
  1396. menu_off = 1
  1397. *clr & cla
  1398. topmfc = 0
  1399. gs 'stat'
  1400. if backmfc = 1:
  1401. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore4.jpg"></center>'
  1402. end
  1403. if backmfc = 0:
  1404. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
  1405. end
  1406. 'Even though no one requested you to do so, you figure showing off your nice boobs might get some more viewers into the channel. You slowly take off your bra and wiggle your breasts seductively at the camera.'
  1407. gs 'arousal', 'porn', 2, 'exhibitionism'
  1408. gs 'stat'
  1409. act 'Continue':gt 'komp','waitclients'
  1410. end
  1411. end
  1412. if topmfc = 0 and clientask < 74:
  1413. act 'Idly play with your boobs':
  1414. menu_off = 1
  1415. *clr & cla
  1416. if webpopular < 15:
  1417. camclients += rand(3,6)
  1418. elseif webpopular >= 15 and webpopular < 35:
  1419. camclients += rand(5,10)
  1420. elseif webpopular >= 35 and webpopular < 75:
  1421. camclients += rand(10,20)
  1422. elseif webpopular >= 75:
  1423. camclients += rand(15,35)
  1424. end
  1425. if alko >= 4:
  1426. gs 'pain', 2, 'slap', 'breasts'
  1427. end
  1428. chancetips = rand(0,100)
  1429. if chancetips >= 85:
  1430. tokens += rand(2,10)
  1431. end
  1432. gs 'stat'
  1433. if alko >= 4:
  1434. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore80.jpg"></center>'
  1435. else
  1436. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore9.jpg"></center>'
  1437. end
  1438. 'You chat with your visitors for a little while, but begin to play with your boobs absent-mindedly in a slow moment. It feels quite nice! You knead your boobs and play with them more and more intently, almost completely forgetting about the camera.'
  1439. gs 'arousal', 'porn', 2, 'exhibitionism'
  1440. gs 'stat'
  1441. act 'Continue':gt 'komp','waitclients'
  1442. end
  1443. end
  1444. if backmfc = 1 and clientask < 74:
  1445. act 'Take off your panties':
  1446. menu_off = 1
  1447. *clr & cla
  1448. backmfc = 0
  1449. gs 'stat'
  1450. if topmfc = 1:
  1451. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore5.jpg"></center>'
  1452. end
  1453. if topmfc = 0:
  1454. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore6.jpg"></center>'
  1455. end
  1456. 'You know that the fewer clothes you have on, the more visitors will be inclined to check out your channel. You slowly take off your panties in front of the camera, rewarding the viewers already in your channel to a free show when you expose your naked pussy to them.'
  1457. gs 'arousal', 'porn', 2, 'exhibitionism'
  1458. gs 'stat'
  1459. act 'Continue':gt 'komp','waitclients'
  1460. end
  1461. end
  1462. if backmfc = 0 and clientask < 74:
  1463. act 'Play with your pussy':
  1464. menu_off = 1
  1465. *clr & cla
  1466. if webpopular < 15:
  1467. camclients += rand(5,10)
  1468. elseif webpopular >= 15 and webpopular < 35:
  1469. camclients += rand(10,15)
  1470. elseif webpopular >= 35 and webpopular < 75:
  1471. camclients += rand(10,30)
  1472. elseif webpopular >= 75:
  1473. camclients += rand(15,40)
  1474. end
  1475. chancetips = rand(0,100)
  1476. if chancetips >= 75:
  1477. tokens += rand(10,15)
  1478. end
  1479. gs 'stat'
  1480. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore11.jpg"></center>'
  1481. 'You get bored during a slow moment in the chat, and begin to play with your pussy without giving it another thought.'
  1482. '"How does that feel, girl?" one of your visitors asks. "I bet you love fingering yourself, with a bunch of strangers watching you!" another adds.'
  1483. 'Giving them a defensive smile, you shrug and reply with one hand, while you keep rubbing your clit slowly with the other.'
  1484. gs 'arousal', 'porn', 2, 'exhibitionism'
  1485. gs 'arousal', 'vaginal_finger', 2, 'exhibitionism'
  1486. minut -= 2
  1487. gs 'stat'
  1488. if pcs_horny >= 100:
  1489. webpopular -= 1
  1490. mfccum += 1
  1491. pcs_mood = 100
  1492. gs 'stat'
  1493. 'Oh crap! You misjudged your endurance, and suddenly squirm and gasp in front of the camera. You''re having an orgasm!'
  1494. 'When it subsides, you look at your current viewer count. Damn... you just came in front of <<camclients>> users, completely free of charge!'
  1495. $orgasm_or = 'yes'
  1496. gs 'stat'
  1497. end
  1498. act 'Continue':gt 'komp','waitclients'
  1499. end
  1500. end
  1501. if backmfc = 0 and clientask < 74:
  1502. act'Play with your ass':
  1503. menu_off = 1
  1504. *clr & cla
  1505. if webpopular < 15:
  1506. camclients += rand(5,10)
  1507. elseif webpopular >= 15 and webpopular < 35:
  1508. camclients += rand(10,15)
  1509. elseif webpopular >= 35 and webpopular < 75:
  1510. camclients += rand(10,30)
  1511. elseif webpopular >= 75:
  1512. camclients += rand(15,40)
  1513. end
  1514. if pcs_ass < 10:analplay += 1
  1515. mfcclients -= 1
  1516. minut += 2
  1517. pcs_horny += rand(5,10)
  1518. chancetips = rand(0,100)
  1519. if chancetips >= 60:
  1520. tokens += rand(10,20)
  1521. end
  1522. gs 'stat'
  1523. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore45.jpg"></center>'
  1524. 'You put two fingers in your mouth and generously cover them in saliva, and then turn your back to the camera. Much to the appreciation of your viewers, you give them a short preview of what an anal show would look like from you. You finger your anus for the camera for a little while, giving your viewers a happy smile the whole time.'
  1525. gs 'arousal', 'porn', 2, 'exhibitionism'
  1526. gs 'arousal', 'anal_finger', 2, 'exhibitionism'
  1527. minut -= 2
  1528. gs 'stat'
  1529. if pcs_horny >= 100:
  1530. webpopular -= 1
  1531. mfccum += 1
  1532. pcs_mood = 100
  1533. gs 'stat'
  1534. $orgasm_or = 'yes'
  1535. $orgasm_txt = 'It feels too good to stop! Before you know it, your fingers are repeatedly penetrating your ass and you moan excitedly, barely keeping yourself from screaming. You just had an anal orgasm in front of <<camclients>> users, completely free of charge! Oops...'
  1536. gs 'stat'
  1537. end
  1538. act'Continue':gt'komp','waitclients'
  1539. end
  1540. end
  1541. if topmfc = 0 and pain['nippleR'] < 10 and pain['nippleL'] < 10 and clientask < 74:
  1542. act'Pinch your nipples hard':
  1543. menu_off = 1
  1544. *clr & cla
  1545. if webpopular < 15:
  1546. camclients += rand(5,10)
  1547. elseif webpopular >= 15 and webpopular < 35:
  1548. camclients += rand(10,15)
  1549. elseif webpopular >= 35 and webpopular < 75:
  1550. camclients += rand(10,30)
  1551. elseif webpopular >= 75:
  1552. camclients += rand(15,40)
  1553. end
  1554. mfcclients -= 1
  1555. gs 'pain', 2, 'pinch', 'nipples'
  1556. chancetips = rand(0,100)
  1557. if chancetips >= 75:
  1558. tokens += rand(20,40)
  1559. end
  1560. gs 'stat'
  1561. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore80.jpg"></center>'
  1562. 'You''re getting too turned on, and need to slow yourself down a little!'
  1563. 'You tightly pinch your nipples and pull hard on them. It hurts a lot, and the sharp pain lowers your excitement by quite a lot. Nevertheless, your viewers enjoy the free show and have no idea you actually did that for your own good.'
  1564. gs 'arousal', 'porn', 2, 'exhibitionism'
  1565. gs 'stat'
  1566. act'Continue':gt'komp','waitclients'
  1567. end
  1568. end
  1569. if sisterHere > 0 and $loc = 'bedrPar':
  1570. *clr & cla
  1571. topmfc = 1
  1572. backmfc = 1
  1573. karta += tokens * 2
  1574. gs 'stat'
  1575. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
  1576. 'Suddenly you hear the handle of your door creak, and an annoyed voice shouting: "<<$pcs_nickname>>, what the hell!? Why is the door locked? Let me in!"'
  1577. 'Oh crap, it''s your sister! "Sorry everyone, show''s over!" you whisper to the camera, and you slap your laptop shut. You quickly put your clothes back on and open your door, trying to avoid the scrutinizing gaze of your sister.'
  1578. 'When she''s no longer paying attention to you, you open your laptop again and find yourself in the main lobby of MyFreeCams. You''re a bit bummed that you couldn''t get more out of that session, but cash in your earnings.'
  1579. act 'Continue':gt 'komp','mfc'
  1580. else
  1581. act 'Turn off the webcam':gt 'komp','startpagemfc'
  1582. end
  1583. end
  1584. if $ARGS[0] = 'bank':
  1585. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/online_bank.jpg"></center>'
  1586. if karta + bankDebtLimit >= 10:
  1587. *pl
  1588. 'You can buy prepaid internet access online through your bank account. 1 hour of internet only costs 10 <b>₽</b>! *'
  1589. *pl
  1590. if karta >= 0:
  1591. 'You have <<karta>> <b>₽</b> in your account.'
  1592. 'You have an overdraft limit of <font color="blue"><<bankDebtLimit>></font>!'
  1593. else
  1594. 'You are overdrawn by <font color="red"><<-1 * karta>> <b>₽</b></font>.'
  1595. 'You have a remaining credit limit of <font color="blue"><<bankDebtLimit + karta>></font>!'
  1596. end
  1597. *pl
  1598. act 'Buy internet time':
  1599. cla
  1600. intinp = input ("How many hours of internet access do you wish to purchase? (1hr = 10 <b>₽</b>)")
  1601. if intinp <= 0 or intinp * 10 > karta + bankDebtLimit:
  1602. 'Invalid amount.'
  1603. else
  1604. karta -= intinp * 10
  1605. internet += intinp
  1606. 'You pay for <<intinp>> hours of prepaid internet access. You have a total of <<internet>> hours of internet access remaining.'
  1607. '<<intinp * 10>> <b>₽</b> was removed from your account to pay for it.'
  1608. end
  1609. act 'Continue': gt 'komp', 'bank'
  1610. end
  1611. end
  1612. act 'Close your browser':gt 'komp', 'start'
  1613. end
  1614. if $ARGS[0] = 'fuckornot':
  1615. *clr & cla
  1616. if fuckornot = 2: fuckornot = 3
  1617. '<center><img <<$set_imgh>> src="images/shared/accessories/computer/fuckornot/fuckable_list.jpg"></center>'
  1618. gs 'gschool_groups', 'fuckornot'
  1619. '10: Perfection. - Would let her do whatever she wants to me'
  1620. '9: Smoking Hot. - Would eat her ass'
  1621. '8: Hot. - Would fuck that ass'
  1622. '7: Damn girl. - Bragging rights for fucking.'
  1623. '6: Mos def smashable. - Totally fuckable, fuck buddy material'
  1624. '5: Merely fuckable. - wouldn''t mind smashing it, blowjob buddy material.'
  1625. '4: Almost fuckable. - Doable, in the dark or to get a blowjob from.'
  1626. '3: Unattractive. - Doable, if I get myself drunk first, good match for Petria'
  1627. '2: Fugly. - Has potential compared to a trash bin, even Lesco could do better'
  1628. '1: Hideous. - Wouldn''t touch it with a stick'
  1629. act 'Leave the site':
  1630. if $view_location = 'school':
  1631. gt 'gschool_lessons', 'short_break'
  1632. else
  1633. gt 'komp', 'start'
  1634. end
  1635. end
  1636. end
  1637. if $ARGS[0] = 'hotornot':
  1638. *clr & cla
  1639. if hotornot = 2: hotornot = 3
  1640. '<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
  1641. gs 'gschool_groups', 'hotornot'
  1642. '10: Perfection. - Would let him do whatever he wants to me'
  1643. '9: Smoking Hot. - Arm Candy'
  1644. '8: Hot. - Would ride him'
  1645. '7: Damn man. - Bragging rights for fucking.'
  1646. '6: Ridable. - Totally fuckable, fuck buddy material'
  1647. '5: Merely fuckable. - maybe doggy style so I don''t have to look at him.'
  1648. '4: Almost fuckable. - might sit on his face.'
  1649. '3: Unattractive. - Not even Zinaida would be seen with him.'
  1650. '2: Fugly. - Horribly ugly, just being seen with him would lose you social standing.'
  1651. '1: Hideous. - Wouldn''t touch it with a stick, not even Sonia would take his money.'
  1652. act 'Leave the site':
  1653. if $view_location = 'school':
  1654. gt 'gschool_lessons', 'short_break'
  1655. else
  1656. gt 'komp', 'start'
  1657. end
  1658. end
  1659. end
  1660. if $ARGS[0] = 'fin':
  1661. if $loc = 'shulga_room' or $loc = 'anushapt' or $loc = 'dachain': internet = internetS
  1662. gt $loc, $loc_arg
  1663. end
  1664. --- komp ---------------------------------