Komp.qsrc 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  1. # komp
  2. !2021/04/26
  3. if $ARGS[0] = 'start':
  4. *clr & cla
  5. elektro += 5
  6. gs 'stat'
  7. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  8. 'Your computer boots up, and soon you''re looking at your operating system''s main screen.'
  9. act 'Play Solitaire (0:20)':gt 'komp', 'pasians'
  10. if AlbinaQW['flashdrive'] = 1:
  11. if $loc = 'dachain' or $loc = 'sitr' or $loc = 'bedr' or $loc = 'bedr2x' or ($loc = 'uni_dorm' and $loc_arg = 'dorm_room') or ($loc = 'city_mansion_residence_2' and $loc_arg = 'yoffice') or ($loc = 'pav_shared_apt' and $loc_arg = 'pcsRoom') or ($loc = 'mey_home' and $loc_arg = '3') or ($loc = 'city_house_res_misc' and $loc_arg = 'livroom') or $loc = 'nichBedroomServant' or (locat['Anya_inroom'] = 0 and $loc = 'bedrPar'):
  12. act 'Check Albina''s flash drive': gt 'albina_house_events', 'flash_drive'
  13. end
  14. end
  15. if GameCD > 0:act 'Play Disopl':gt 'KGDstart'
  16. if GameCD2 > 0:act 'Play Sunset Dead':gt 'KGZstart'
  17. if GameCD3 > 0:act 'Play Albido':gt 'FSstart'
  18. !!act 'SunReview of the Dead':gt 'KGZstart'
  19. if internet_free = 2:
  20. 'There is no internet access here.'
  21. else
  22. if internet_free = 1:
  23. 'You have free internet access here.'
  24. else
  25. 'You have <<internet>> hours of prepaid internet access remaining.'
  26. end
  27. if internet > 0 or internet_free = 1: act 'Browse the internet':gt 'komp', 'brows'
  28. end
  29. act 'Shut your computer down':
  30. gt 'komp', 'fin'
  31. end
  32. end
  33. if $ARGS[0] = 'brows':
  34. *clr & cla
  35. gs 'stat'
  36. menu_off = 0
  37. act 'Close the browser':
  38. gt 'komp','start'
  39. end
  40. if internet <= 0 and internet_free = 0:
  41. '<center><b>Browser</b></center>'
  42. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  43. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  44. if camwhore = 1 and $loc ! 'shulga_room' and $loc ! 'anushapt' and $loc ! 'artemhome' and $loc ! 'albinahome' and $loc ! 'pav_library':
  45. 'Since MyFreeCams will cover the cost, you can still log on to do a cam show.'
  46. act 'Go to MyFreeCams.org':gt 'komp', 'mfc'
  47. end
  48. else
  49. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  50. 'You go to your favourite start page, while you try to decide on what you want to see right now.'
  51. 'A blinking banner for a <a href="exec:gt ''komp'',''agent''">Kirsanova Real Estate Agency</a> keeps popping up in the corner.'
  52. if home_owned[1] = 2 and husband = 0:act 'Rent your apartment out':gt 'komp', 'sale'
  53. if $loc ! 'anushapt' and $loc ! 'albinahome' and $loc ! 'pav_library': act 'Search for porn (1:00)':gt 'komp', 'porno'
  54. act 'Browse a dating website (1:00)':gt 'komp', 'znak'
  55. if hour < 20 and hour > 7:
  56. if $clothingworntype = 'nude':
  57. 'You need to be dressed before searching jobs.'
  58. else
  59. act 'Look for a job online':gt 'komp', 'rabota'
  60. end
  61. end
  62. act 'Search for cable TV services (1:00)':gt 'komp', 'kabtv'
  63. act 'Play an online game':gt 'KGstart'
  64. if fuckornot = 3: act 'Visit ''Fuckable or not'' site': $view_location = 'komp' & gt 'komp', 'fuckornot'
  65. if hotornot >= 2: act 'Visit ''Hot or not'' site': $view_location = 'komp' & gt 'komp', 'hotornot'
  66. if bankAccount > 0: act 'Visit your bank, maybe to purchase more online time': gt 'komp', 'bank'
  67. if shantfoto > 0:act 'Find the girl you took photos of in the park on "Assbook"':gt 'komp', 'foto'
  68. if gor_dorm = 7:act 'Read letter from Eugene':gt 'etoexhib', 'pos91'
  69. if camwhore = 1 and $loc ! 'shulga_room' and $loc ! 'anushapt' and $loc ! 'artemhome' and $loc ! 'albinahome' and $loc ! 'pav_library':act 'Go to MyFreeCams.org':gt 'komp', 'mfc'
  70. if (mid($start_type,1,2) = 'sg' and SchoolAtestat = 0) or func('uniutil', 'student', 'enrolled'):act 'Spend time studying':gt 'komp', 'study'
  71. if sucpcinfo = 0 and succubxp > 0: act 'Research the strange feelings you''ve been having': gt 'succubus', 'kompresearch'
  72. end
  73. end
  74. if $ARGS[0] = 'sale':
  75. *clr & cla
  76. minut += 60
  77. elektro += 3
  78. if internet_free = 0: internet -= 1
  79. gs 'stat'
  80. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  81. 'You go to a popular website where people can post advertisements for free. You could post an advertisement here.'
  82. 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.'
  83. if obkvsdam = 0 and home_owned[1] = 2:
  84. act 'Rent out your city residential apartment':obkvsdam = 1 & gt 'komp', 'sale'
  85. elseif obkvsdam > 0:
  86. act 'Check if you got any replies':
  87. cla
  88. if obkvsdam = 1:
  89. 'No one has responded to your offer to rent out your apartment just yet.'
  90. elseif obkvsdam > 1:
  91. if obkvsdam = 2:predsumm = 16000
  92. if obkvsdam = 3:predsumm = 17000
  93. if obkvsdam = 4:predsumm = 18000
  94. if obkvsdam = 5:predsumm = 19000
  95. 'Someone wants to stay in your apartment for a month! They''re offering you <<predsumm>> <b>₽</b> in cash.'
  96. act 'Accept the offer':
  97. sdaday = day
  98. sdamonth = month + 1
  99. if sdamonth > 12:sdamonth = 1
  100. if sdaday > monthsEnd[sdamonth]:sdaday = monthsEnd[sdamonth]
  101. home_owned[1] = 3
  102. karta += predsumm
  103. gt 'komp', 'start'
  104. end
  105. end
  106. act 'Leave this website':gt 'komp', 'brows'
  107. end
  108. end
  109. act 'Leave this website':gt 'komp', 'brows'
  110. end
  111. if $ARGS[0] = 'porno':
  112. *clr & cla
  113. gs 'stat'
  114. if internet <= 0 and internet_free = 0:
  115. '<center><b>Browser</b></center>'
  116. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  117. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  118. act '<B>Close the browser</B>':gt 'komp','start'
  119. elseif locat['Anya_inroom'] = 1 and sisboytrio = 0 and $loc = 'bedrPar':
  120. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  121. 'You shouldn''t watch porn with your sister in the room, she would notice for sure!'
  122. act 'Leave this website':gt 'komp', 'brows'
  123. elseif $loc = 'artemhome':
  124. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  125. 'You shouldn''t watch porn on Artem''s computer!'
  126. else
  127. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  128. 'You go to a porn site and browse for a few minutes, trying to find a hot video.'
  129. act 'Watch porn':
  130. *clr & cla
  131. elektro += 3
  132. pcs_mood += rand(10, 20)
  133. if internet_free = 0: internet -= 1
  134. gs 'stat'
  135. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/porno.jpg"></center>'
  136. 'You find a video you think you''d enjoy, and spend some time watching it. Wow, that girl is so lucky...'
  137. gs 'arousal', 'porn', 60
  138. gs 'stat'
  139. act 'The video ends...':gt 'komp', 'porno'
  140. end
  141. if pcs_horny >= 50:act 'Masturbate (0:15)':gt 'komp', 'masturbate'
  142. act 'Leave this website':gt 'komp', 'brows'
  143. end
  144. end
  145. if $ARGS[0] = 'masturbate':
  146. *clr & cla
  147. if internet_free = 0: internet -= 1
  148. elektro += 1
  149. gs 'sweat', 'add', 10
  150. if divanmastr = 0:
  151. divanmastr = 1
  152. stat['mast'] += 1
  153. if pcs_inhib < 30:inhib_exp += rand(1,3)
  154. end
  155. gs 'stat'
  156. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/kompmas.jpg"></center>'
  157. '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.'
  158. '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.'
  159. gs 'arousal', 'clit_finger', 15, 'masturbate'
  160. gs 'stat'
  161. if pcs_horny >= 100:
  162. $orgasm_or = 'yes'
  163. $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!'
  164. gs 'arousal', 'clit_finger', -1, 'masturbate'
  165. gs 'stat'
  166. end
  167. act 'Stop masturbating':divanmastr = 0 & gt 'komp', 'porno'
  168. gs 'arousal', 'end'
  169. gs 'stat'
  170. if pcs_horny >= 50:act 'Masturbate some more (0:15)':gt 'komp', 'masturbate'
  171. end
  172. if $ARGS[0] = 'pasians':
  173. *clr & cla
  174. minut += 20
  175. elektro += 3
  176. pcs_mood += rand(10, 20)
  177. gs 'stat'
  178. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  179. 'You entertain yourself for about twenty minutes, playing a game of solitaire on the computer.'
  180. act 'Play for another 20 minutes':gt 'komp', 'pasians'
  181. act 'Return to desktop':gt 'komp', 'start'
  182. end
  183. if $ARGS[0] = 'znak':
  184. *clr & cla
  185. minut += 60
  186. pcs_mood += 5
  187. elektro += 3
  188. if internet_free = 0: internet -= 1
  189. gs 'stat'
  190. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  191. 'You enter a dating site, and immediately see all sorts of profiles of both men and women.'
  192. '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!'
  193. if gor_dorm = 8:
  194. act 'Pick someone suitable for Eugenia':
  195. cla
  196. gor_dorm = 9
  197. '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.'
  198. 'Now the waiting game begins! Let''s hope you picked a nice guy for her...'
  199. act 'Leave this website':gt 'komp', 'brows'
  200. end
  201. elseif curr_home ! 1 and curr_home ! 2 and curr_home ! 3 and curr_home ! 4 and curr_home ! 5:
  202. pcs_mood += rand(5, 10)
  203. '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.'
  204. 'Still, some of the pictures were quite raunchy and the more desperate profiles were really funny.'
  205. else
  206. if pcs_lover < 3:
  207. act 'Look for a kind man':
  208. cla
  209. gs 'boy'
  210. gs 'boyfrend', 'start'
  211. haraklover[lover_number] = 0
  212. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  213. act 'Leave this website':gt 'komp', 'brows'
  214. end
  215. act 'Look for a normal guy':
  216. cla
  217. gs 'boy'
  218. gs 'boyfrend', 'start'
  219. haraklover[lover_number] = 1
  220. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  221. act 'Leave this website':gt 'komp', 'brows'
  222. end
  223. act 'Look for a strong man':
  224. cla
  225. gs 'boy'
  226. gs 'boyfrend', 'start'
  227. haraklover[lover_number] = 2
  228. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  229. act 'Leave this website':gt 'komp', 'brows'
  230. end
  231. end
  232. end
  233. act 'Leave this website':gt 'komp', 'brows'
  234. end
  235. if $ARGS[0] = 'kabtv':
  236. *clr & cla
  237. minut += 60
  238. elektro += 3
  239. if internet_free = 0: internet -= 1
  240. gs 'stat'
  241. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  242. '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.'
  243. ''
  244. if kabel = 1:
  245. 'You currently have a cable subscription for your TV.'
  246. act 'Cancel your cable subscription (300 <b>₽</b>)':
  247. cla
  248. kabel = 0
  249. karta -= 300
  250. 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.'
  251. gt 'komp', 'brows'
  252. end
  253. elseif kabel = 0 and TV = 1:
  254. 'You currently do not have a cable subscription for your TV.'
  255. act 'Get cable services for your TV':
  256. cla
  257. msg 'Unfortunately your TV is too old and crap for cable. You''ll have to get a modern TV first.'
  258. gt 'komp', 'brows'
  259. end
  260. elseif kabel = 0 and TV >= 2:
  261. 'You currently do not have a cable subscription for your TV.'
  262. act 'Get cable services for your TV (300 <b>₽</b> per month)':
  263. cla
  264. kabel = 1
  265. 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.'
  266. gt 'komp', 'brows'
  267. end
  268. else
  269. 'You don''t even have a TV!'
  270. act 'Leave this website':gt 'komp', 'brows'
  271. end
  272. act 'Leave this website':gt 'komp', 'brows'
  273. end
  274. if $ARGS[0] = 'foto':
  275. *clr & cla
  276. gs 'stat'
  277. if internet <= 0 and internet_free = 0:
  278. '<center><b>Browser</b></center>'
  279. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  280. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  281. act '<B>Close the browser</B>':gt 'komp','start'
  282. else
  283. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  284. '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!'
  285. '"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!"'
  286. '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!'
  287. if shantfoto > 0:
  288. act 'Try to find out who she is (1:00)':
  289. cla
  290. minut += 60
  291. elektro += 3
  292. if internet_free = 0: internet -= 1
  293. fotsearchrand = rand(0,10)
  294. if fotsearchrand <= 7:
  295. 'Despite your best efforts, you don''t manage to find the girl this time.'
  296. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  297. end
  298. if fotsearchrand > 7:
  299. shantfoto -= 1
  300. 'Despite your best efforts, you don''t manage to... wait, that''s her! You found her!'
  301. gerofotorand = rand(0,100)
  302. if gerofotorand > 30:
  303. '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.'
  304. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  305. end
  306. if gerofotorand >= 5 and gerofotorand <= 30:
  307. shantsr += 1
  308. '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.'
  309. '"Why not make her spend some of it on me?" you laugh to yourself, and begin to write a private message.'
  310. '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.'
  311. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  312. end
  313. if gerofotorand < 5:
  314. shantbog += 1
  315. '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!'
  316. '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.'
  317. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  318. end
  319. end
  320. end
  321. end
  322. act 'Leave this website':gt 'komp', 'brows'
  323. end
  324. end
  325. if $ARGS[0] = 'rabota':
  326. *clr & cla
  327. if internet <= 0 and internet_free = 0:
  328. '<center><b>Browser</b></center>'
  329. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  330. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  331. act 'Close the browser':gt 'komp','brows'
  332. else
  333. minut += 60
  334. if internet_free = 0: internet -= 1
  335. komprabota = rand(0, 10)
  336. if $loc = 'shulga_room':komprabota = rand(5, 15)
  337. gs 'stat'
  338. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  339. if komprabota = 0 and gorodokkomp = 0:
  340. '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."'
  341. '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.'
  342. if pcs_apprnc < 120:
  343. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be an underwear model.'
  344. elseif pcs_apprnc >= 120:
  345. act 'Accept the job and go there':gt 'qjob', 'var1'
  346. end
  347. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  348. act 'Leave this website':gt 'komp', 'brows'
  349. elseif komprabota = 1 and gorodokkomp = 0:
  350. '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."'
  351. '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.'
  352. if pcs_apprnc < 120:
  353. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be an underwear model.'
  354. elseif pcs_apprnc >= 120:
  355. act 'Accept the job and go there':gt 'qjob', 'var2'
  356. end
  357. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  358. act 'Leave this website':gt 'komp', 'brows'
  359. elseif komprabota > 1 and komprabota < 5 and gorodokkomp = 0:
  360. '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."'
  361. '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.'
  362. if pcs_apprnc < 60:
  363. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be a model.'
  364. elseif pcs_apprnc >= 60:
  365. act 'Accept the job and go there':gt 'qjob', 'var3'
  366. end
  367. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  368. act 'Leave this website':gt 'komp', 'brows'
  369. elseif komprabota > 4 and komprabota < 8 and camwhore = 0:
  370. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! Webcam models. Flexible working hours. Click for more info."'
  371. act 'Gather more information':
  372. *clr & cla
  373. minut += 5
  374. gs 'stat'
  375. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore1.jpg"></center>'
  376. 'You click the button and get taken to the full job description.'
  377. '<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.'
  378. '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.'
  379. '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.'
  380. '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.'
  381. 'If you''re interested in becoming a webcam girl, please fill in this questionnaire below.</i>'
  382. if bankAccount = 0:
  383. 'You need a valid bank account to be able to register for this job.'
  384. else
  385. if pcs_inhib >= 40 or exhibitionist_lvl > 1 or (pcs_inhib >= 35 and exhibitionist_lvl > 0):
  386. act 'Fill in the questionnaire':
  387. *clr & cla
  388. camwhore = 1
  389. mfcclients = 0
  390. camclients = 0
  391. mfccum = 0
  392. minut += 20
  393. gs 'stat'
  394. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  395. if $pcs_webcamname = '':
  396. 'You consider which name you''d like to register under.'
  397. $pcs_webcamname = input("Which name would you like to use? (Leave blank for <<$pcs_nickname>>)")
  398. if $pcs_webcamname = '':$pcs_webcamname = '<<$pcs_nickname>>'
  399. end
  400. '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.'
  401. '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.'
  402. act 'Leave this website':gt 'komp','brows'
  403. end
  404. act 'Leave this website':gt 'komp','brows'
  405. else
  406. *nl
  407. 'You don''t feel comfortable showing off your body in this way.'
  408. end
  409. end
  410. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  411. act 'Leave this website':gt 'komp','brows'
  412. end
  413. else
  414. 'Unfortunately, you do not find any jobs you would consider doing.'
  415. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  416. act 'Leave this website':gt 'komp','brows'
  417. end
  418. end
  419. end
  420. if $ARGS[0] = 'study':
  421. *clr & cla
  422. minut = minut + 60
  423. elektro = elektro + 3
  424. if internet_free = 0: internet -= 1
  425. gs 'exp_gain', 'intel', 1 + (mentats_dose - rand(0,mentats_dose))
  426. gs 'exp_gain', 'compskl', 1
  427. '<center><b>The Institute for Education Measurement</b></center>'
  428. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/study.jpg"></center>'
  429. 'You spend an hour on the IEM website, reading news articles and educational blogs. You feel a bit smarter afterwards.'
  430. act 'Leave this website':gt'komp','brows'
  431. end
  432. if $ARGS[0] = 'agent':
  433. *clr & cla
  434. minut += 60
  435. elektro += 3
  436. if internet_free = 0: internet -= 1
  437. gs 'stat'
  438. gs 'housing', 'rent'
  439. gs 'housing', 'sale'
  440. '<center><b>Kirsanova Real Estate Agency</b></center>'
  441. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/agent.jpg"></center>'
  442. *nl
  443. 'You''re currently at the website of the largest real estate agency in the area, Kirsanova Real Estate Agency.'
  444. '<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.'
  445. *nl
  446. '<b>Property listing</b>:'
  447. if ArendHouseSL > 0:
  448. 'You have <B><<ArendHouseSL>> days</B> remaining on the rental of your St. Petersburg apartment.'
  449. *nl
  450. elseif home_owned[1] = 0 and ArendHouseSL = 0:
  451. 'There is an apartment in St. Petersburg residental area available, for rent or puchase.'
  452. 'Rent is: <<$home_rent_txt[1]>> ₽ per month. Current sale price is listed at: <<$home_value_txt[1]>> <b>₽</b>.'
  453. *nl
  454. end
  455. if home_owned[3] = 0:
  456. 'There is a holiday cottage with an adjacent allotment in the communal village for sale.'
  457. 'Current sale price is listed at: <<$home_value_txt[3]>> <b>₽</b>.'
  458. *nl
  459. end
  460. if home_owned[4] > 0 and ArendHouseSL4 > 0:
  461. 'You have <B><<ArendHouseSL4>> days</B> remaining on the rental of your Pushkin apartment.'
  462. *nl
  463. elseif home_owned[4] = 0 and ArendHouseSL4 = 0:
  464. 'There is an apartment in Pushkin area (Old Town) available to rent.'
  465. 'Rent is: <<$home_rent_txt[4]>> <b>₽</b> per month.'
  466. *nl
  467. end
  468. if home_owned[5] = 0:
  469. 'There is a plot in the suburbs available for puchase, with planning permission for a mansion.'
  470. 'Current sale price is listed at: <<$home_value_txt[5]>> <b>₽</b>.'
  471. *nl
  472. end
  473. if karta + bankDebtLimit >= home_rent[1] and home_owned[1] = 1:
  474. act 'Pay rent on St. Petersburg':
  475. cla
  476. karta -= home_rent[1]
  477. ArendHouseSL += ArendHouseSL_due
  478. '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.'
  479. act 'Leave this website':gt 'komp','brows'
  480. end
  481. end
  482. if karta + bankDebtLimit >= home_rent[4] and home_owned[4] > 0:
  483. act 'Pay rent on Pushkin':
  484. cla
  485. karta -= home_rent[4]
  486. ArendHouseSL4 += ArendHouseSL_due
  487. '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.'
  488. act 'Leave this website':gt 'komp','brows'
  489. end
  490. end
  491. act 'Leave this website':gt 'komp','brows'
  492. end
  493. if $ARGS[0] = 'mfc':
  494. gs 'family_schedule'
  495. if mesec > 0:
  496. *clr & cla
  497. minut += 2
  498. topmfc = 1
  499. backmfc = 1
  500. tokens = 0
  501. camclients = 0
  502. gs 'stat'
  503. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  504. '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.'
  505. act 'Leave this website':gt 'komp','brows'
  506. elseif locat['Anya_inroom'] = 0 or $loc ! 'bedrPar':
  507. act 'Go to your MFC homepage':
  508. *clr & cla
  509. minut += 2
  510. gs 'stat'
  511. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore3.jpg"></center>'
  512. 'You enter your own chatroom on the website. You currently have <<camclients>> viewers.'
  513. act 'Continue':gt 'komp','startpagemfc'
  514. end
  515. act 'Leave this website':
  516. *clr & cla
  517. minut += 2
  518. topmfc = 1
  519. backmfc = 1
  520. tokens = 0
  521. camclients = 0
  522. gs 'stat'
  523. gt 'komp','brows'
  524. end
  525. elseif locat['Anya_inroom'] = 1 and $loc = 'bedrPar':
  526. *clr & cla
  527. minut += 2
  528. topmfc = 1
  529. backmfc = 1
  530. tokens = 0
  531. camclients = 0
  532. gs 'stat'
  533. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  534. 'You can''t do any webcam activities with your sister in the room!'
  535. act 'Leave this website':gt 'komp','brows'
  536. end
  537. end
  538. if $ARGS[0] = 'startpagemfc':
  539. if vgape > 10 or agape > 10:
  540. *clr & cla
  541. gs 'stat'
  542. '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.'
  543. act 'Collect your earnings and leave':
  544. karta += tokens * 2
  545. tokens = 0
  546. gt 'komp','mfc'
  547. end
  548. else
  549. *clr & cla
  550. gs 'stat'
  551. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore3.jpg"></center>'
  552. 'You casually chat with the <<camclients>> visitors currently in your chatroom. Once you turn on your webcam, things will probably get busier.'
  553. act 'Turn on your webcam':gt 'komp','waitclients'
  554. act 'Collect your earnings and leave':
  555. karta += tokens * 2
  556. tokens = 0
  557. gt 'komp','mfc'
  558. end
  559. end
  560. end
  561. if $ARGS[0] = 'waitclients':
  562. gs 'family_schedule'
  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/pc/items/accessories/computer/camwhore3.jpg"></center>'
  863. elseif topmfc = 0 and backmfc = 1:
  864. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore4.jpg"></center>'
  865. elseif topmfc = 1 and backmfc = 0:
  866. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  867. else
  868. '<center><img <<$set_imgh>> src="images/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/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/pc/items/accessories/computer/camwhore19.jpg"></center>'
  1143. elseif pcs_vag = 0:
  1144. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore18.jpg"></center>'
  1145. elseif pcs_vag <= 10:
  1146. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore13.jpg"></center>'
  1147. elseif pcs_vag <= 15:
  1148. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore14.jpg"></center>'
  1149. elseif pcs_vag <= 25:
  1150. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore15.jpg"></center>'
  1151. elseif pcs_vag <= 35:
  1152. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore16.jpg"></center>'
  1153. else
  1154. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore17.jpg"></center>'
  1155. end
  1156. '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!'
  1157. gs 'arousal', 'porn', 2, 'exhibitionism'
  1158. gs 'stat'
  1159. act 'Continue':gt 'komp','waitclients'
  1160. end
  1161. gs 'willpower', 'exhib', 'resist', 'hard'
  1162. if will_cost <= pcs_willpwr:
  1163. act 'Ignore him (<<will_cost>> Willpower)':
  1164. *clr & cla
  1165. webpopular -= 1
  1166. gs 'willpower', 'pay', 'resist'
  1167. gs 'stat'
  1168. gt 'komp','waitclients'
  1169. end
  1170. else
  1171. 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>'
  1172. end
  1173. end
  1174. if backmfc = 0 and pcs_ass >= 30 and webpopular >= 50 and clientask = 80:
  1175. menu_off = 1
  1176. *clr & cla
  1177. '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...'
  1178. act 'Show them your battered sphincter':
  1179. *clr & cla
  1180. mfcclients = 0
  1181. webpopular += rand(hotcat/2-1,1+hotcat/2)
  1182. backmfc = 0
  1183. if pcs_apprnc > 100:
  1184. tokens += rand(50,100)
  1185. else
  1186. tokens += rand(40,75)
  1187. end
  1188. if webpopular < 15:
  1189. tokens += rand(25,50)
  1190. elseif webpopular >= 15 and webpopular < 35:
  1191. tokens += rand(50,100)
  1192. elseif webpopular >= 35 and webpopular < 75:
  1193. tokens += rand(100,150)
  1194. elseif webpopular >= 75:
  1195. tokens += rand(100,200)
  1196. end
  1197. gs 'stat'
  1198. if analplugIN = 0:
  1199. if cumsumass > 39:
  1200. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore74.jpg"></center>'
  1201. '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.'
  1202. '"Oh my god, is that sperm!?" someone wonders.'
  1203. '"Definitely! What a whore!" someone else adds.'
  1204. '"I''d love to add my load to that!" a third one laughs.'
  1205. '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.'
  1206. 'At least the visitor who promised to donate did, so you''re a few tokens richer.'
  1207. gs 'arousal', 'porn', 2, 'exhibitionism'
  1208. gs 'stat'
  1209. else
  1210. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore20,<<rand(0,7)>>.jpg"></center>'
  1211. '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.'
  1212. 'Then your greed overcomes you. They already know... you might as well earn some money by showing them properly, right?'
  1213. 'You pull your ass cheeks aside, giving them a good view of your worn out anus.'
  1214. gs 'arousal', 'porn', 2, 'exhibitionism'
  1215. gs 'stat'
  1216. end
  1217. else
  1218. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore21.jpg"></center>'
  1219. 'You smile to yourself, he''s going to love what you have in store for him!'
  1220. '"I''m sorry", you tell him, explicitly mentioning his username as well. "I can''t right now..."'
  1221. '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.'
  1222. gs 'arousal', 'porn', 2, 'exhibitionism'
  1223. gs 'stat'
  1224. end
  1225. act 'Continue':gt 'komp','waitclients'
  1226. end
  1227. gs 'willpower', 'exhib', 'resist', 'hard'
  1228. if will_cost <= pcs_willpwr:
  1229. act 'Ignore him (<<will_cost>> Willpower)':
  1230. *clr & cla
  1231. webpopular -= 1
  1232. gs 'willpower', 'pay', 'resist'
  1233. gs 'stat'
  1234. gt 'komp','waitclients'
  1235. end
  1236. else
  1237. 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>'
  1238. end
  1239. end
  1240. if webpopular >= 15 and pcs_ass >= 15 and clientask = 89:
  1241. menu_off = 1
  1242. *clr & cla
  1243. gt 'kompMFCtwo'
  1244. end
  1245. if webpopular < 50 and clientask = 88:
  1246. menu_off = 1
  1247. *clr & cla
  1248. gt 'kompMFCtwo'
  1249. end
  1250. if webpopular >= 50 and pcs_vag >= 35 and clientask = 87:
  1251. menu_off = 1
  1252. *clr & cla
  1253. gt 'kompMFCtwo'
  1254. end
  1255. if webpopular >= 35 and pcs_vag >= 25 and alko >= 4 and clientask = 86:
  1256. menu_off = 1
  1257. *clr & cla
  1258. gt 'kompMFCtwo'
  1259. end
  1260. if webpopular >= 50 and pcs_vag + pcs_ass > 0 and alko >= 4 and clientask = 85:
  1261. menu_off = 1
  1262. *clr & cla
  1263. gt 'kompMFCtwo'
  1264. end
  1265. if backmfc = 0 and webpopular >= 25 and pcs_vag + pcs_ass >= 30 and alko >= 4 and clientask = 84:
  1266. menu_off = 1
  1267. *clr & cla
  1268. gt 'kompMFCtwo'
  1269. end
  1270. if backmfc = 0 and pcs_vag > 20 and clientask = 83:
  1271. menu_off = 1
  1272. *clr & cla
  1273. gt 'kompMFCtwo'
  1274. end
  1275. if webpopular > 25 and backmfc = 0 and sub > 25 and pcs_vag > 10 and prezik > 0 and clientask = 82:
  1276. menu_off = 1
  1277. *clr & cla
  1278. gt 'kompMFCtwo'
  1279. end
  1280. if backmfc = 0 and webpopular >= 50 and pcs_ass > 25 and clientask = 81:
  1281. menu_off = 1
  1282. *clr & cla
  1283. gt 'kompMFCtwo'
  1284. end
  1285. if backmfc = 0 and clientask < 80 and clientask >= 77:
  1286. menu_off = 1
  1287. *clr & cla
  1288. gt 'kompMFCanal'
  1289. end
  1290. if clientask < 77 and clientask >= 74:
  1291. menu_off = 1
  1292. *clr & cla
  1293. gt 'kompMFCoral'
  1294. end
  1295. if backmfc = 0 and clientask => 90 and clientask < 95:
  1296. menu_off = 1
  1297. *clr & cla
  1298. 'One of the visitors asks: "Do you have a vibrator or dildo? I want you to put up a little show..."'
  1299. gt 'kompMFC'
  1300. end
  1301. if clientask < 74:
  1302. act 'Dance':
  1303. menu_off = 1
  1304. *clr & cla
  1305. gs 'stat'
  1306. if topmfc = 1 and backmfc = 1:
  1307. if webpopular < 15:
  1308. camclients += rand(pcs_dancero - 60,pcs_dancero - 55)
  1309. elseif webpopular >= 15 and webpopular < 35:
  1310. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1311. elseif webpopular >= 35 and webpopular < 75:
  1312. camclients += rand(pcs_dancero - 50,pcs_dancero - 42)
  1313. elseif webpopular >= 75:
  1314. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1315. end
  1316. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip4.mp4"></video></center>'
  1317. 'Turning on some music you dance eroticiy hoping to entice some viewers.'
  1318. end
  1319. if topmfc = 0 and backmfc = 1:
  1320. if webpopular < 15:
  1321. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1322. elseif webpopular >= 15 and webpopular < 35:
  1323. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1324. elseif webpopular >= 35 and webpopular < 75:
  1325. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1326. elseif webpopular >= 75:
  1327. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1328. end
  1329. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip7.mp4"></video></center>'
  1330. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1331. end
  1332. if topmfc = 1 and backmfc = 0:
  1333. if webpopular < 15:
  1334. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1335. elseif webpopular >= 15 and webpopular < 35:
  1336. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1337. elseif webpopular >= 35 and webpopular < 75:
  1338. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1339. elseif webpopular >= 75:
  1340. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1341. end
  1342. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip6.mp4"></video></center>'
  1343. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1344. end
  1345. if topmfc = 0 and backmfc = 0:
  1346. if webpopular < 15:
  1347. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1348. elseif webpopular >= 15 and webpopular < 35:
  1349. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1350. elseif webpopular >= 35 and webpopular < 75:
  1351. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1352. elseif webpopular >= 75:
  1353. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1354. end
  1355. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip5.mp4"></video></center>'
  1356. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1357. end
  1358. gs 'exp_gain', 'dancero', 1
  1359. gs 'arousal', 'porn', 5
  1360. gs 'stat'
  1361. act 'Continue':gt 'komp','waitclients'
  1362. end
  1363. end
  1364. if topmfc = 1 and backmfc = 1 and clientask < 74:
  1365. act 'Perform a striptease':
  1366. menu_off = 1
  1367. *clr & cla
  1368. gs 'stat'
  1369. if webpopular < 15:
  1370. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1371. elseif webpopular >= 15 and webpopular < 35:
  1372. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1373. elseif webpopular >= 35 and webpopular < 75:
  1374. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1375. elseif webpopular >= 75:
  1376. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1377. end
  1378. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease4.mp4"></video></center>'
  1379. '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.'
  1380. gs 'exp_gain', 'dancero', 1
  1381. topmfc = 0
  1382. backmfc = 0
  1383. gs 'arousal', 'porn', 3
  1384. gs 'stat'
  1385. act 'Continue':gt 'komp','waitclients'
  1386. end
  1387. end
  1388. if topmfc = 1 and clientask < 74:
  1389. act 'Take off your bra':
  1390. menu_off = 1
  1391. *clr & cla
  1392. topmfc = 0
  1393. gs 'stat'
  1394. if backmfc = 1:
  1395. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore4.jpg"></center>'
  1396. end
  1397. if backmfc = 0:
  1398. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  1399. end
  1400. '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.'
  1401. gs 'arousal', 'porn', 2, 'exhibitionism'
  1402. gs 'stat'
  1403. act 'Continue':gt 'komp','waitclients'
  1404. end
  1405. end
  1406. if topmfc = 0 and clientask < 74:
  1407. act 'Idly play with your boobs':
  1408. menu_off = 1
  1409. *clr & cla
  1410. if webpopular < 15:
  1411. camclients += rand(3,6)
  1412. elseif webpopular >= 15 and webpopular < 35:
  1413. camclients += rand(5,10)
  1414. elseif webpopular >= 35 and webpopular < 75:
  1415. camclients += rand(10,20)
  1416. elseif webpopular >= 75:
  1417. camclients += rand(15,35)
  1418. end
  1419. if alko >= 4:
  1420. gs 'pain', 2, 'slap', 'breasts'
  1421. end
  1422. chancetips = rand(0,100)
  1423. if chancetips >= 85:
  1424. tokens += rand(2,10)
  1425. end
  1426. gs 'stat'
  1427. if alko >= 4:
  1428. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore80.jpg"></center>'
  1429. else
  1430. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore9.jpg"></center>'
  1431. end
  1432. '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.'
  1433. gs 'arousal', 'porn', 2, 'exhibitionism'
  1434. gs 'stat'
  1435. act 'Continue':gt 'komp','waitclients'
  1436. end
  1437. end
  1438. if backmfc = 1 and clientask < 74:
  1439. act 'Take off your panties':
  1440. menu_off = 1
  1441. *clr & cla
  1442. backmfc = 0
  1443. gs 'stat'
  1444. if topmfc = 1:
  1445. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  1446. end
  1447. if topmfc = 0:
  1448. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore6.jpg"></center>'
  1449. end
  1450. '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.'
  1451. gs 'arousal', 'porn', 2, 'exhibitionism'
  1452. gs 'stat'
  1453. act 'Continue':gt 'komp','waitclients'
  1454. end
  1455. end
  1456. if backmfc = 0 and clientask < 74:
  1457. act 'Play with your pussy':
  1458. menu_off = 1
  1459. *clr & cla
  1460. if webpopular < 15:
  1461. camclients += rand(5,10)
  1462. elseif webpopular >= 15 and webpopular < 35:
  1463. camclients += rand(10,15)
  1464. elseif webpopular >= 35 and webpopular < 75:
  1465. camclients += rand(10,30)
  1466. elseif webpopular >= 75:
  1467. camclients += rand(15,40)
  1468. end
  1469. chancetips = rand(0,100)
  1470. if chancetips >= 75:
  1471. tokens += rand(10,15)
  1472. end
  1473. gs 'stat'
  1474. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore11.jpg"></center>'
  1475. 'You get bored during a slow moment in the chat, and begin to play with your pussy without giving it another thought.'
  1476. '"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.'
  1477. 'Giving them a defensive smile, you shrug and reply with one hand, while you keep rubbing your clit slowly with the other.'
  1478. gs 'arousal', 'porn', 2, 'exhibitionism'
  1479. gs 'arousal', 'vaginal_finger', 2, 'exhibitionism'
  1480. minut -= 2
  1481. gs 'stat'
  1482. if pcs_horny >= 100:
  1483. webpopular -= 1
  1484. mfccum += 1
  1485. pcs_mood = 100
  1486. gs 'stat'
  1487. 'Oh crap! You misjudged your endurance, and suddenly squirm and gasp in front of the camera. You''re having an orgasm!'
  1488. 'When it subsides, you look at your current viewer count. Damn... you just came in front of <<camclients>> users, completely free of charge!'
  1489. $orgasm_or = 'yes'
  1490. gs 'stat'
  1491. end
  1492. act 'Continue':gt 'komp','waitclients'
  1493. end
  1494. end
  1495. if backmfc = 0 and clientask < 74:
  1496. act'Play with your ass':
  1497. menu_off = 1
  1498. *clr & cla
  1499. if webpopular < 15:
  1500. camclients += rand(5,10)
  1501. elseif webpopular >= 15 and webpopular < 35:
  1502. camclients += rand(10,15)
  1503. elseif webpopular >= 35 and webpopular < 75:
  1504. camclients += rand(10,30)
  1505. elseif webpopular >= 75:
  1506. camclients += rand(15,40)
  1507. end
  1508. if pcs_ass < 10:analplay += 1
  1509. mfcclients -= 1
  1510. minut += 2
  1511. pcs_horny += rand(5,10)
  1512. chancetips = rand(0,100)
  1513. if chancetips >= 60:
  1514. tokens += rand(10,20)
  1515. end
  1516. gs 'stat'
  1517. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore45.jpg"></center>'
  1518. '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.'
  1519. gs 'arousal', 'porn', 2, 'exhibitionism'
  1520. gs 'arousal', 'anal_finger', 2, 'exhibitionism'
  1521. minut -= 2
  1522. gs 'stat'
  1523. if pcs_horny >= 100:
  1524. webpopular -= 1
  1525. mfccum += 1
  1526. pcs_mood = 100
  1527. gs 'stat'
  1528. $orgasm_or = 'yes'
  1529. $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...'
  1530. gs 'stat'
  1531. end
  1532. act'Continue':gt'komp','waitclients'
  1533. end
  1534. end
  1535. if topmfc = 0 and pain['nippleR'] < 10 and pain['nippleL'] < 10 and clientask < 74:
  1536. act'Pinch your nipples hard':
  1537. menu_off = 1
  1538. *clr & cla
  1539. if webpopular < 15:
  1540. camclients += rand(5,10)
  1541. elseif webpopular >= 15 and webpopular < 35:
  1542. camclients += rand(10,15)
  1543. elseif webpopular >= 35 and webpopular < 75:
  1544. camclients += rand(10,30)
  1545. elseif webpopular >= 75:
  1546. camclients += rand(15,40)
  1547. end
  1548. mfcclients -= 1
  1549. gs 'pain', 2, 'pinch', 'nipples'
  1550. chancetips = rand(0,100)
  1551. if chancetips >= 75:
  1552. tokens += rand(20,40)
  1553. end
  1554. gs 'stat'
  1555. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore80.jpg"></center>'
  1556. 'You''re getting too turned on, and need to slow yourself down a little!'
  1557. '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.'
  1558. gs 'arousal', 'porn', 2, 'exhibitionism'
  1559. gs 'stat'
  1560. act'Continue':gt'komp','waitclients'
  1561. end
  1562. end
  1563. if locat['Anya_inroom'] = 1 and $loc = 'bedrPar':
  1564. *clr & cla
  1565. topmfc = 1
  1566. backmfc = 1
  1567. karta += tokens * 2
  1568. tokens = 0
  1569. gs 'stat'
  1570. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  1571. '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!"'
  1572. '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.'
  1573. '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.'
  1574. act 'Continue':gt 'komp','mfc'
  1575. else
  1576. act 'Turn off the webcam':gt 'komp','startpagemfc'
  1577. end
  1578. end
  1579. if $ARGS[0] = 'bank':
  1580. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/online_bank.jpg"></center>'
  1581. if karta + bankDebtLimit >= 10:
  1582. *pl
  1583. 'You can buy prepaid internet access online through your bank account. 1 hour of internet only costs 10 <b>₽</b>! *'
  1584. *pl
  1585. if karta >= 0:
  1586. 'You have <<karta>> <b>₽</b> in your account.'
  1587. 'You have an overdraft limit of <font color="blue"><<bankDebtLimit>></font>!'
  1588. else
  1589. 'You are overdrawn by <font color="red"><<-1 * karta>> <b>₽</b></font>.'
  1590. 'You have a remaining credit limit of <font color="blue"><<bankDebtLimit + karta>></font>!'
  1591. end
  1592. *pl
  1593. act 'Buy internet time':
  1594. cla
  1595. intinp = input ("How many hours of internet access do you wish to purchase? (1hr = 10 <b>₽</b>)")
  1596. if intinp <= 0 or intinp * 10 > karta + bankDebtLimit:
  1597. 'Invalid amount.'
  1598. else
  1599. karta -= intinp * 10
  1600. internet += intinp
  1601. 'You pay for <<intinp>> hours of prepaid internet access. You have a total of <<internet>> hours of internet access remaining.'
  1602. '<<intinp * 10>> <b>₽</b> was removed from your account to pay for it.'
  1603. end
  1604. act 'Continue': gt 'komp', 'bank'
  1605. end
  1606. end
  1607. act 'Close your browser':gt 'komp', 'brows'
  1608. end
  1609. if $ARGS[0] = 'fuckornot':
  1610. *clr & cla
  1611. if fuckornot = 2: fuckornot = 3
  1612. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/fuckornot/fuckable_list.jpg"></center>'
  1613. gs 'gschool_groups', 'fuckornot'
  1614. '10: Perfection - Would let her do whatever she wants to me.'
  1615. '9: Smoking Hot - Would eat her ass.'
  1616. '8: Hot - Would fuck that ass.'
  1617. '7: Damn girl - Bragging rights for fucking.'
  1618. '6: Smashable - Totally fuckable. Fuck buddy material'
  1619. '5: Merely fuckable - Wouldn''t mind smashing it. Blowjob buddy material.'
  1620. '4: Almost fuckable - Doable in the dark or to get a blowjob from.'
  1621. '3: Unattractive - Doable if I get myself drunk first. Good match for Petia.'
  1622. '2: Fugly - Has potential compared to a trash bin. Even Lesco could do better.'
  1623. '1: Hideous - Wouldn''t touch it with a stick.'
  1624. act 'Leave the site':
  1625. if $view_location = 'school':
  1626. gt 'gschool_lessons', 'short_break'
  1627. else
  1628. gt 'komp', 'brows'
  1629. end
  1630. end
  1631. end
  1632. if $ARGS[0] = 'hotornot':
  1633. *clr & cla
  1634. if hotornot = 2: hotornot = 3
  1635. '<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
  1636. gs 'gschool_groups', 'hotornot'
  1637. '10: Perfection - Would let him do whatever he wants to me.'
  1638. '9: Smoking Hot - Arm candy.'
  1639. '8: Hot - Would ride him.'
  1640. '7: Damn son - Bragging rights for fucking.'
  1641. '6: Rideable - Totally fuckable. Fuck buddy material'
  1642. '5: Merely fuckable. - Doggy style so I don''t have to look at him.'
  1643. '4: Almost fuckable - Might sit on his face.'
  1644. '3: Unattractive - Not even Zinaida would be seen with him.'
  1645. '2: Fugly - Horribly ugly. Just being seen with him would lose you social standing.'
  1646. '1: Hideous - Wouldn''t touch it with a stick. Not even a whore would take his money.'
  1647. act 'Leave the site':
  1648. if $view_location = 'school':
  1649. gt 'gschool_lessons', 'short_break'
  1650. else
  1651. gt 'komp', 'brows'
  1652. end
  1653. end
  1654. end
  1655. if $ARGS[0] = 'fin': gt $loc, $loc_arg
  1656. --- komp ---------------------------------