Komp.qsrc 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  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 (anyaloc['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. gs 'unicoursework', 'start', 'komp', 'brows'
  20. if $loc = 'shulga_room' or $loc = 'anushapt' or $loc = 'artemhome' or $loc = 'albinahome' or $loc = 'pav_library':
  21. internet_store = internet
  22. internet = 100000
  23. act 'Browse the internet':gt 'komp', 'brows'
  24. elseif $loc = 'dachain':
  25. internet_store = internet
  26. internet = 0
  27. else
  28. 'You have <<internet>> hours of prepaid internet access remaining.'
  29. if internet > 0: act 'Browse the internet':gt 'komp', 'brows'
  30. end
  31. act 'Shut your computer down':
  32. gt 'komp', 'fin'
  33. end
  34. end
  35. if $ARGS[0] = 'brows':
  36. *clr & cla
  37. gs 'stat'
  38. menu_off = 0
  39. act 'Close the browser':
  40. if $loc = 'shulga_room' or $loc = 'anushapt' or $loc = 'artemhome' or $loc = 'dachain' or $loc = 'albinahome' or $loc = 'pav_library':
  41. internet = internet_store
  42. killvar 'internet_store'
  43. end
  44. gt 'komp','start'
  45. end
  46. if internet <= 0:
  47. '<center><b>Browser</b></center>'
  48. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  49. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  50. if camwhore = 1 and $loc ! 'shulga_room' and $loc ! 'anushapt' and $loc ! 'artemhome' and $loc ! 'albinahome' and $loc ! 'pav_library':
  51. 'Since MyFreeCams will cover the cost, you can still log on to do a cam show.'
  52. act 'Go to MyFreeCams.org':gt 'komp', 'mfc'
  53. end
  54. else
  55. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  56. 'You go to your favourite start page, while you try to decide on what you want to see right now.'
  57. 'A blinking banner for a <a href="exec:gt ''komp'',''agent''">Kirsanova Real Estate Agency</a> keeps popping up in the corner.'
  58. if home_owned[1] = 2 and husband = 0:act 'Rent your apartment out':gt 'komp', 'sale'
  59. if $loc ! 'anushapt' and $loc ! 'albinahome' and $loc ! 'pav_library': act 'Search for porn (1:00)':gt 'komp', 'porno'
  60. act 'Browse a dating website (1:00)':gt 'komp', 'znak'
  61. if hour < 20 and hour > 7:
  62. if $clothingworntype = 'nude':
  63. 'You need to be dressed before searching jobs.'
  64. else
  65. act 'Look for a job online':gt 'komp', 'rabota'
  66. end
  67. end
  68. act 'Search for cable TV services (1:00)':gt 'komp', 'kabtv'
  69. act 'Play an online game':gt 'KGstart'
  70. if fuckornot = 3: act 'Visit ''Fuckable or not'' site': $view_location = 'komp' & gt 'komp', 'fuckornot'
  71. if hotornot >= 2: act 'Visit ''Hot or not'' site': $view_location = 'komp' & gt 'komp', 'hotornot'
  72. if bankAccount > 0: act 'Visit your bank, maybe to purchase more online time': gt 'komp', 'bank'
  73. if shantfoto > 0:act 'Find the girl you took photos of in the park on "Assbook"':gt 'komp', 'foto'
  74. if gor_dorm = 7:act 'Read letter from Eugene':gt 'etoexhib', 'pos91'
  75. 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'
  76. if (mid($start_type,1,2) = 'sg' and SchoolAtestat = 0) or func('uniutil', 'student', 'enrolled'):act 'Spend time studying':gt 'komp', 'study'
  77. if sucpcinfo = 0 and succubxp > 0: act 'Research the strange feelings you''ve been having': gt 'succubus', 'kompresearch'
  78. end
  79. end
  80. if $ARGS[0] = 'sale':
  81. *clr & cla
  82. minut += 60
  83. elektro += 3
  84. internet -= 1
  85. gs 'stat'
  86. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  87. 'You go to a popular website where people can post advertisements for free. You could post an advertisement here.'
  88. 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.'
  89. if obkvsdam = 0 and home_owned[1] = 2:
  90. act 'Rent out your city residential apartment':obkvsdam = 1 & gt 'komp', 'sale'
  91. elseif obkvsdam > 0:
  92. act 'Check if you got any replies':
  93. cla
  94. if obkvsdam = 1:
  95. 'No one has responded to your offer to rent out your apartment just yet.'
  96. elseif obkvsdam > 1:
  97. if obkvsdam = 2:predsumm = 16000
  98. if obkvsdam = 3:predsumm = 17000
  99. if obkvsdam = 4:predsumm = 18000
  100. if obkvsdam = 5:predsumm = 19000
  101. 'Someone wants to stay in your apartment for a month! They''re offering you <<predsumm>> <b>₽</b> in cash.'
  102. act 'Accept the offer':
  103. sdaday = day
  104. sdamonth = month + 1
  105. if sdamonth > 12:sdamonth = 1
  106. if sdaday > monthsEnd[sdamonth]:sdaday = monthsEnd[sdamonth]
  107. home_owned[1] = 3
  108. karta += predsumm
  109. gt 'komp', 'start'
  110. end
  111. end
  112. act 'Leave this website':gt 'komp', 'brows'
  113. end
  114. end
  115. act 'Leave this website':gt 'komp', 'brows'
  116. end
  117. if $ARGS[0] = 'porno':
  118. *clr & cla
  119. gs 'stat'
  120. if internet <= 0:
  121. '<center><b>Browser</b></center>'
  122. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  123. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  124. act '<B>Close the browser</B>':gt 'komp','start'
  125. elseif anyaloc['inroom'] = 1 and sisboytrio = 0 and $loc = 'bedrPar':
  126. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  127. 'You shouldn''t watch porn with your sister in the room, she would notice for sure!'
  128. act 'Leave this website':gt 'komp', 'brows'
  129. else
  130. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  131. 'You go to a porn site and browse for a few minutes, trying to find a hot video.'
  132. act 'Watch porn':
  133. *clr & cla
  134. elektro += 3
  135. pcs_mood += rand(10, 20)
  136. internet -= 1
  137. gs 'stat'
  138. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/porno.jpg"></center>'
  139. 'You find a video you think you''d enjoy, and spend some time watching it. Wow, that girl is so lucky...'
  140. gs 'arousal', 'porn', 60
  141. gs 'stat'
  142. act 'The video ends...':gt 'komp', 'porno'
  143. end
  144. if pcs_horny >= 50:act 'Masturbate (0:15)':gt 'komp', 'masturbate'
  145. act 'Leave this website':gt 'komp', 'brows'
  146. end
  147. end
  148. if $ARGS[0] = 'masturbate':
  149. *clr & cla
  150. internet -= 1
  151. elektro += 1
  152. gs 'sweat', 'add', 10
  153. if divanmastr = 0:
  154. divanmastr = 1
  155. stat['mast'] += 1
  156. if pcs_inhib < 30:inhib_exp += rand(1,3)
  157. end
  158. gs 'stat'
  159. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/kompmas.jpg"></center>'
  160. '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.'
  161. '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.'
  162. gs 'arousal', 'clit_finger', 15, 'masturbate'
  163. gs 'stat'
  164. if pcs_horny >= 100:
  165. $orgasm_or = 'yes'
  166. $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!'
  167. gs 'arousal', 'clit_finger', -1, 'masturbate'
  168. gs 'stat'
  169. end
  170. act 'Stop masturbating':divanmastr = 0 & gt 'komp', 'porno'
  171. gs 'arousal', 'end'
  172. gs 'stat'
  173. if pcs_horny >= 50:act 'Masturbate some more (0:15)':gt 'komp', 'masturbate'
  174. end
  175. if $ARGS[0] = 'pasians':
  176. *clr & cla
  177. minut += 20
  178. elektro += 3
  179. pcs_mood += rand(10, 20)
  180. gs 'stat'
  181. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  182. 'You entertain yourself for about twenty minutes, playing a game of solitaire on the computer.'
  183. act 'Play for another 20 minutes':gt 'komp', 'pasians'
  184. act 'Return to desktop':gt 'komp', 'start'
  185. end
  186. if $ARGS[0] = 'znak':
  187. *clr & cla
  188. minut += 60
  189. pcs_mood += 5
  190. elektro += 3
  191. internet -= 1
  192. gs 'stat'
  193. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  194. 'You enter a dating site, and immediately see all sorts of profiles of both men and women.'
  195. '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!'
  196. if gor_dorm = 8:
  197. act 'Pick someone suitable for Eugenia':
  198. cla
  199. gor_dorm = 9
  200. '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.'
  201. 'Now the waiting game begins! Let''s hope you picked a nice guy for her...'
  202. act 'Leave this website':gt 'komp', 'brows'
  203. end
  204. elseif curr_home ! 1 and curr_home ! 2 and curr_home ! 3 and curr_home ! 4 and curr_home ! 5:
  205. pcs_mood += rand(5, 10)
  206. '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.'
  207. 'Still, some of the pictures were quite raunchy and the more desperate profiles were really funny.'
  208. else
  209. if pcs_lover < 3:
  210. act 'Look for a kind man':
  211. cla
  212. gs 'boy'
  213. gs 'boyfrend', 'start'
  214. haraklover[lover_number] = 0
  215. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  216. act 'Leave this website':gt 'komp', 'brows'
  217. end
  218. act 'Look for a normal guy':
  219. cla
  220. gs 'boy'
  221. gs 'boyfrend', 'start'
  222. haraklover[lover_number] = 1
  223. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  224. act 'Leave this website':gt 'komp', 'brows'
  225. end
  226. act 'Look for a strong man':
  227. cla
  228. gs 'boy'
  229. gs 'boyfrend', 'start'
  230. haraklover[lover_number] = 2
  231. 'You find a guy named <<$loverdesc[lover_number]>>, and send him your number after checking out his profile. You hope he will call you!'
  232. act 'Leave this website':gt 'komp', 'brows'
  233. end
  234. end
  235. end
  236. act 'Leave this website':gt 'komp', 'brows'
  237. end
  238. if $ARGS[0] = 'kabtv':
  239. *clr & cla
  240. minut += 60
  241. elektro += 3
  242. internet -= 1
  243. gs 'stat'
  244. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  245. '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.'
  246. ''
  247. if kabel = 1:
  248. 'You currently have a cable subscription for your TV.'
  249. act 'Cancel your cable subscription (300 <b>₽</b>)':
  250. cla
  251. kabel = 0
  252. karta -= 300
  253. 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.'
  254. gt 'komp', 'brows'
  255. end
  256. elseif kabel = 0 and TV = 1:
  257. 'You currently do not have a cable subscription for your TV.'
  258. act 'Get cable services for your TV':
  259. cla
  260. msg 'Unfortunately your TV is too old and crap for cable. You''ll have to get a modern TV first.'
  261. gt 'komp', 'brows'
  262. end
  263. elseif kabel = 0 and TV >= 2:
  264. 'You currently do not have a cable subscription for your TV.'
  265. act 'Get cable services for your TV (300 <b>₽</b> per month)':
  266. cla
  267. kabel = 1
  268. 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.'
  269. gt 'komp', 'brows'
  270. end
  271. else
  272. 'You don''t even have a TV!'
  273. act 'Leave this website':gt 'komp', 'brows'
  274. end
  275. act 'Leave this website':gt 'komp', 'brows'
  276. end
  277. if $ARGS[0] = 'foto':
  278. *clr & cla
  279. gs 'stat'
  280. if internet <= 0:
  281. '<center><b>Browser</b></center>'
  282. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  283. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  284. act '<B>Close the browser</B>':gt 'komp','start'
  285. else
  286. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  287. '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!'
  288. '"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!"'
  289. '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!'
  290. if shantfoto > 0:
  291. act 'Try to find out who she is (1:00)':
  292. cla
  293. minut += 60
  294. elektro += 3
  295. internet -= 1
  296. fotsearchrand = rand(0,10)
  297. if fotsearchrand <= 7:
  298. 'Despite your best efforts, you don''t manage to find the girl this time.'
  299. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  300. end
  301. if fotsearchrand > 7:
  302. shantfoto -= 1
  303. 'Despite your best efforts, you don''t manage to... wait, that''s her! You found her!'
  304. gerofotorand = rand(0,100)
  305. if gerofotorand > 30:
  306. '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.'
  307. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  308. end
  309. if gerofotorand >= 5 and gerofotorand <= 30:
  310. shantsr += 1
  311. '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.'
  312. '"Why not make her spend some of it on me?" you laugh to yourself, and begin to write a private message.'
  313. '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.'
  314. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  315. end
  316. if gerofotorand < 5:
  317. shantbog += 1
  318. '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!'
  319. '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.'
  320. act 'Go back to the "Assbook" main page':gt 'komp', 'foto'
  321. end
  322. end
  323. end
  324. end
  325. act 'Leave this website':gt 'komp', 'brows'
  326. end
  327. end
  328. if $ARGS[0] = 'rabota':
  329. *clr & cla
  330. if internet <= 0:
  331. '<center><b>Browser</b></center>'
  332. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/eror.jpg"></center>'
  333. 'You have no prepaid internet access remaining. You need to buy more, before you can go online again.'
  334. act 'Close the browser':gt 'komp','brows'
  335. else
  336. minut += 60
  337. internet -= 1
  338. komprabota = rand(0, 10)
  339. if $loc = 'shulga_room':komprabota = rand(5, 15)
  340. gs 'stat'
  341. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/komp.jpg"></center>'
  342. if komprabota = 0 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', 'var1'
  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 gorodokkomp = 0:
  353. '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."'
  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 < 120:
  356. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be an underwear model.'
  357. elseif pcs_apprnc >= 120:
  358. act 'Accept the job and go there':gt 'qjob', 'var2'
  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 > 1 and komprabota < 5 and gorodokkomp = 0:
  363. '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."'
  364. '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.'
  365. if pcs_apprnc < 60:
  366. 'You consider it for a moment, but decide against it. You''re probably not pretty enough to be a model.'
  367. elseif pcs_apprnc >= 60:
  368. act 'Accept the job and go there':gt 'qjob', 'var3'
  369. end
  370. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp', 'rabota'
  371. act 'Leave this website':gt 'komp', 'brows'
  372. elseif komprabota > 4 and komprabota < 8 and camwhore = 0:
  373. 'You find a job vacancy, on a legit looking website. It reads: "Wanted! Webcam models. Flexible working hours. Click for more info."'
  374. act 'Gather more information':
  375. *clr & cla
  376. minut += 5
  377. gs 'stat'
  378. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore1.jpg"></center>'
  379. 'You click the button and get taken to the full job description.'
  380. '<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.'
  381. '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.'
  382. '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.'
  383. '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.'
  384. 'If you''re interested in becoming a webcam girl, please fill in this questionnaire below.</i>'
  385. if bankAccount = 0:
  386. 'You need a valid bank account to be able to register for this job.'
  387. else
  388. if pcs_inhib >= 40 or exhibitionist_lvl > 1 or (pcs_inhib >= 35 and exhibitionist_lvl > 0):
  389. act 'Fill in the questionnaire':
  390. *clr & cla
  391. camwhore = 1
  392. mfcclients = 0
  393. camclients = 0
  394. mfccum = 0
  395. minut += 20
  396. gs 'stat'
  397. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  398. if $pcs_webcamname = '':
  399. 'You consider which name you''d like to register under.'
  400. $pcs_webcamname = input("Which name would you like to use? (Leave blank for <<$pcs_nickname>>)")
  401. if $pcs_webcamname = '':$pcs_webcamname = '<<$pcs_nickname>>'
  402. end
  403. '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.'
  404. '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.'
  405. act 'Leave this website':gt 'komp','brows'
  406. end
  407. act 'Leave this website':gt 'komp','brows'
  408. else
  409. *nl
  410. 'You don''t feel comfortable showing off your body in this way.'
  411. end
  412. end
  413. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  414. act 'Leave this website':gt 'komp','brows'
  415. end
  416. else
  417. 'Unfortunately, you do not find any jobs you would consider doing.'
  418. if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'
  419. act 'Leave this website':gt 'komp','brows'
  420. end
  421. end
  422. end
  423. if $ARGS[0] = 'study':
  424. *clr & cla
  425. minut = minut + 60
  426. elektro = elektro + 3
  427. internet -= 1
  428. intel_exp += 1 + (mentats_dose - rand(0,mentats_dose))
  429. compskl_exp += 1
  430. '<center><b>The Institute for Education Measurement</b></center>'
  431. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/study.jpg"></center>'
  432. 'You spend an hour on the IEM website, reading news articles and educational blogs. You feel a bit smarter afterwards.'
  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/pc/items/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/pc/items/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 anyaloc['inroom'] = 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/pc/items/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 anyaloc['inroom'] = 1 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/pc/items/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. tokens = 0
  548. gt 'komp','mfc'
  549. end
  550. else
  551. *clr & cla
  552. gs 'stat'
  553. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore3.jpg"></center>'
  554. 'You casually chat with the <<camclients>> visitors currently in your chatroom. Once you turn on your webcam, things will probably get busier.'
  555. act 'Turn on your webcam':gt 'komp','waitclients'
  556. act 'Collect your earnings and leave':
  557. karta += tokens * 2
  558. tokens = 0
  559. gt 'komp','mfc'
  560. end
  561. end
  562. end
  563. if $ARGS[0] = 'waitclients':
  564. gs'family'
  565. *clr & cla
  566. minut += rand(1,4)
  567. if mfccum > 0: mfcdaycum = daystart
  568. mfcclients += 1
  569. $menu_loc = 'komp'
  570. $menu_arg = 'waitclients'
  571. menu_off = 0
  572. if topmfc = 1 and backmfc = 1:
  573. if pcs_apprnc < 100:
  574. if webpopular < 15:
  575. if mfcclients > 5:
  576. camclients -= rand(1,3)
  577. else
  578. camclients += rand(1,3)
  579. end
  580. elseif webpopular >= 15 and webpopular < 35:
  581. if mfcclients > 3:
  582. camclients -= rand(3,5)
  583. else
  584. camclients += rand(3,5)
  585. end
  586. elseif webpopular >= 35 and webpopular < 75:
  587. if mfcclients > 3:
  588. camclients -= rand(4,8)
  589. else
  590. camclients += rand(4,8)
  591. end
  592. elseif webpopular >= 75:
  593. if mfcclients > 3:
  594. camclients -= rand(5,15)
  595. else
  596. camclients += rand(5,15)
  597. end
  598. end
  599. chancetips = rand(0,100)
  600. clientask = rand(20,100)
  601. if chancetips >= 95 and camclients >= 250:
  602. if webpopular >= 50:
  603. tokens += rand(10,30)
  604. else
  605. tokens += rand(1,20)
  606. end
  607. end
  608. else
  609. if webpopular < 15:
  610. if mfcclients > 5:
  611. camclients -= rand(1,3)
  612. else
  613. camclients += rand(3,5)
  614. end
  615. elseif webpopular >= 15 and webpopular < 35:
  616. if mfcclients > 5:
  617. camclients -= rand(3,5)
  618. else
  619. camclients += rand(5,8)
  620. end
  621. elseif webpopular >= 35 and webpopular < 75:
  622. if mfcclients > 5:
  623. camclients -= rand(5,8)
  624. else
  625. camclients += rand(5,12)
  626. end
  627. elseif webpopular >= 75:
  628. if mfcclients > 5:
  629. camclients -= rand(8,12)
  630. else
  631. camclients += rand(8,15)
  632. end
  633. end
  634. chancetips = rand(5,100)
  635. clientask = rand(30,100)
  636. if chancetips >= 95 and camclients >= 200:
  637. if webpopular >= 50:
  638. tokens += rand(10,40)
  639. else
  640. tokens += rand(1,20)
  641. end
  642. end
  643. end
  644. elseif topmfc = 0 and backmfc = 1:
  645. if pcs_apprnc < 100:
  646. if webpopular < 15:
  647. if mfcclients > 3:
  648. camclients -= rand(1,3)
  649. else
  650. camclients += rand(1,3)
  651. end
  652. elseif webpopular >= 15 and webpopular < 35:
  653. if mfcclients > 3:
  654. camclients -= rand(1,5)
  655. else
  656. camclients += rand(1,5)
  657. end
  658. elseif webpopular >= 35 and webpopular < 75:
  659. if mfcclients > 3:
  660. camclients -= rand(5,10)
  661. else
  662. camclients += rand(5,10)
  663. end
  664. elseif webpopular >= 75:
  665. if mfcclients > 3:
  666. camclients -= rand(6,15)
  667. else
  668. camclients += rand(6,15)
  669. end
  670. end
  671. chancetips = rand(5,90)
  672. clientask = rand(30,100)
  673. if chancetips >= 85 and camclients >= 230:
  674. if webpopular >= 50:
  675. tokens += rand(10,35)
  676. else
  677. tokens += rand(1,20)
  678. end
  679. end
  680. else
  681. if webpopular < 15:
  682. if mfcclients > 5:
  683. camclients -= rand(1,3)
  684. else
  685. camclients += rand(3,6)
  686. end
  687. elseif webpopular >= 15 and webpopular < 35:
  688. if mfcclients > 5:
  689. camclients -= rand(3,6)
  690. else
  691. camclients += rand(5,10)
  692. end
  693. elseif webpopular >= 35 and webpopular < 75:
  694. if mfcclients > 5:
  695. camclients -= rand(6,10)
  696. else
  697. camclients += rand(7,12)
  698. end
  699. elseif webpopular >= 75:
  700. if mfcclients > 5:
  701. camclients -= rand(7,12)
  702. else
  703. camclients += rand(10,15)
  704. end
  705. end
  706. chancetips = rand(10,90)
  707. clientask = rand(35,100)
  708. if chancetips >= 85 and camclients >= 200:
  709. if webpopular >= 50:
  710. tokens += rand(15,35)
  711. else
  712. tokens += rand(1,20)
  713. end
  714. end
  715. end
  716. elseif topmfc = 1 and backmfc = 0:
  717. if pcs_apprnc < 100:
  718. if webpopular < 15:
  719. if mfcclients > 3:
  720. camclients -= rand(1,3)
  721. else
  722. camclients += rand(1,3)
  723. end
  724. elseif webpopular >= 15 and webpopular < 35:
  725. if mfcclients > 3:
  726. camclients -= rand(2,5)
  727. else
  728. camclients += rand(2,5)
  729. end
  730. elseif webpopular >= 35 and webpopular < 75:
  731. if mfcclients > 3:
  732. camclients -= rand(5,15)
  733. else
  734. camclients += rand(5,15)
  735. end
  736. elseif webpopular >= 75:
  737. if mfcclients > 3:
  738. camclients -= rand(5,20)
  739. else
  740. camclients += rand(5,20)
  741. end
  742. end
  743. chancetips = rand(10,80)
  744. clientask = rand(30,100)
  745. if chancetips >= 75 and camclients >= 200:
  746. if webpopular >= 50:
  747. tokens += rand(10,40)
  748. else
  749. tokens += rand(1,20)
  750. end
  751. end
  752. else
  753. if webpopular < 15:
  754. if mfcclients > 5:
  755. camclients -= rand(1,3)
  756. else
  757. camclients += rand(4,7)
  758. end
  759. elseif webpopular >= 15 and webpopular < 35:
  760. if mfcclients > 5:
  761. camclients -= rand(4,8)
  762. else
  763. camclients += rand(5,12)
  764. end
  765. elseif webpopular >= 35 and webpopular < 75:
  766. if mfcclients > 5:
  767. camclients -= rand(5,12)
  768. else
  769. camclients += rand(9,15)
  770. end
  771. elseif webpopular >= 75:
  772. if mfcclients > 5:
  773. camclients -= rand(8,15)
  774. else
  775. camclients += rand(15,20)
  776. end
  777. end
  778. chancetips = rand(15,80)
  779. clientask = rand(35,100)
  780. if chancetips >= 75 and camclients >= 170:
  781. if webpopular >= 50:
  782. tokens += rand(15,45)
  783. else
  784. tokens += rand(1,20)
  785. end
  786. end
  787. end
  788. else
  789. if pcs_apprnc < 100:
  790. if webpopular < 15:
  791. if mfcclients > 3:
  792. camclients -= rand(1,4)
  793. else
  794. camclients += rand(1,4)
  795. end
  796. elseif webpopular >= 15 and webpopular < 35:
  797. if mfcclients > 3:
  798. camclients -= rand(3,10)
  799. else
  800. camclients += rand(3,10)
  801. end
  802. elseif webpopular >= 35 and webpopular < 75:
  803. if mfcclients > 3:
  804. camclients -= rand(10,20)
  805. else
  806. camclients += rand(10,20)
  807. end
  808. elseif webpopular >= 75:
  809. if mfcclients > 3:
  810. camclients -= rand(10,30)
  811. else
  812. camclients += rand(10,30)
  813. end
  814. end
  815. chancetips = rand(15,50)
  816. clientask = rand(35,100)
  817. if chancetips >= 45 and camclients >= 150:
  818. if webpopular >= 50:
  819. tokens += rand(20,50)
  820. else
  821. tokens += rand(5,25)
  822. end
  823. end
  824. else
  825. if webpopular < 15:
  826. if mfcclients > 5:
  827. camclients -= rand(1,4)
  828. else
  829. camclients += rand(3,8)
  830. end
  831. elseif webpopular >= 15 and webpopular < 35:
  832. if mfcclients > 5:
  833. camclients -= rand(3,8)
  834. else
  835. camclients += rand(3,15)
  836. end
  837. elseif webpopular >= 35 and webpopular < 75:
  838. if mfcclients > 5:
  839. camclients -= rand(5,12)
  840. else
  841. camclients += rand(10,20)
  842. end
  843. elseif webpopular >= 75:
  844. if mfcclients > 5:
  845. camclients -= rand(8,18)
  846. else
  847. camclients += rand(10,30)
  848. end
  849. end
  850. chancetips = rand(20,50)
  851. clientask = rand(45,100)
  852. if chancetips >= 45 and camclients >= 100:
  853. if webpopular >= 50:
  854. tokens += rand(30,50)
  855. else
  856. tokens += rand(10,30)
  857. end
  858. end
  859. end
  860. end
  861. if camclients <= 0:camclients = 0
  862. gs 'stat'
  863. if topmfc = 1 and backmfc = 1:
  864. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore3.jpg"></center>'
  865. elseif topmfc = 0 and backmfc = 1:
  866. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore4.jpg"></center>'
  867. elseif topmfc = 1 and backmfc = 0:
  868. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  869. else
  870. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore6.jpg"></center>'
  871. end
  872. tokenpay = tokens * 2
  873. 'You take a moment of rest, and just chat casually with your <<camclients>> visitors.'
  874. 'You have earned <<tokens>> tokens so far this session, which amounts to <<tokenpay>> <b>₽</b>.'
  875. act 'Wait for more visitors':gt 'komp','waitclients'
  876. if topmfc = 1 and clientask >= 91:
  877. *clr & cla
  878. gs 'stat'
  879. menu_off = 1
  880. '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...'
  881. act 'Remove your bra':
  882. *clr & cla
  883. webpopular += 1
  884. topmfc = 0
  885. mfcclients -= 1
  886. if webpopular < 15:
  887. tokens += rand(10,25)
  888. elseif webpopular >= 15 and webpopular < 35:
  889. tokens += rand(15,25)
  890. elseif webpopular >= 35 and webpopular < 75:
  891. tokens += rand(25,50)
  892. elseif webpopular >= 75:
  893. tokens += rand(50,150)
  894. end
  895. gs 'stat'
  896. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore7.jpg"></center>'
  897. '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.'
  898. 'While you sit back down and toss your bra to the ground, you hear the donation sound several times. Your visitors enjoyed that!'
  899. gs 'arousal', 'porn', 2, 'exhibitionism'
  900. gs 'stat'
  901. act 'Continue':gt 'komp','waitclients'
  902. end
  903. act 'Tease instead':
  904. *clr & cla
  905. webpopular += rand(-1,1)
  906. mfcclients += rand (-1,1)
  907. if webpopular < 15:
  908. tokens += rand(0,10)
  909. elseif webpopular >= 15 and webpopular < 35:
  910. tokens += rand(0,15)
  911. elseif webpopular >= 35 and webpopular < 75:
  912. tokens += rand(5,30)
  913. elseif webpopular >= 75:
  914. tokens += rand(25,50)
  915. end
  916. gs 'stat'
  917. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/tits2.mp4"></video></center>'
  918. 'Not quite prepared to reveal your breasts you play with them trough your shirt hoping that will appease the crowd.'
  919. gs 'arousal', 'porn', 2, 'exhibitionism'
  920. gs 'stat'
  921. act 'Continue':gt 'komp','waitclients'
  922. end
  923. act 'Give them a brief look':
  924. *clr & cla
  925. webpopular += rand(-1,1)
  926. mfcclients += rand(-1,1)
  927. if webpopular < 15:
  928. tokens += rand(0,15)
  929. elseif webpopular >= 15 and webpopular < 35:
  930. tokens += rand(0,25)
  931. elseif webpopular >= 35 and webpopular < 75:
  932. tokens += rand(5,40)
  933. elseif webpopular >= 75:
  934. tokens += rand(25,75)
  935. end
  936. gs 'stat'
  937. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/undress4.mp4"></video></center>'
  938. 'You playfully lift your top hoping a short viewing will sate them for the time being and encourage them to stay for more.'
  939. gs 'arousal', 'porn', 2
  940. gs 'stat'
  941. act 'Continue':gt 'komp','waitclients'
  942. end
  943. gs 'willpower', 'exhib', 'resist', 'hard'
  944. if will_cost <= pcs_willpwr:
  945. act 'Refuse to take off your bra (<<will_cost>> Willpower)':
  946. *clr & cla
  947. webpopular -= 1
  948. gs 'willpower', 'pay', 'resist'
  949. gs 'stat'
  950. gt 'komp','waitclients'
  951. end
  952. else
  953. 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>'
  954. end
  955. end
  956. if backmfc = 1 and clientask >= 81 and clientask < 91:
  957. *clr & cla
  958. menu_off = 1
  959. '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.'
  960. act 'Take off your panties':
  961. *clr & cla
  962. mfcclients -= 1
  963. webpopular += 1
  964. backmfc = 0
  965. if webpopular < 15:
  966. tokens += rand(10,25)
  967. elseif webpopular >= 15 and webpopular < 35:
  968. tokens += rand(15,25)
  969. elseif webpopular >= 35 and webpopular < 75:
  970. tokens += rand(25,50)
  971. elseif webpopular >= 75:
  972. tokens += rand(50,150)
  973. end
  974. gs 'stat'
  975. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore8.jpg"></center>'
  976. '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.'
  977. 'As promised, you receive some tokens.'
  978. gs 'arousal', 'porn', 2, 'exhibitionism'
  979. gs 'stat'
  980. act 'Continue':gt 'komp','waitclients'
  981. end
  982. act 'Tease instead':
  983. *clr & cla
  984. webpopular += rand(-1,1)
  985. mfcclients += rand(-1,1)
  986. if webpopular < 15:
  987. tokens += rand(0,15)
  988. elseif webpopular >= 15 and webpopular < 35:
  989. tokens += rand(0,25)
  990. elseif webpopular >= 35 and webpopular < 75:
  991. tokens += rand(5,40)
  992. elseif webpopular >= 75:
  993. tokens += rand(25,75)
  994. end
  995. gs 'stat'
  996. if topmfc = 1:
  997. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/undress2.mp4"></video></center>'
  998. '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.'
  999. 'Standing up you start to dancing flashing your tits and ass to cam.'
  1000. end
  1001. if topmfc = 0:
  1002. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/show5.mp4"></video></center>'
  1003. 'Lowering your panties to emphasize your butt you shake it briefly in an effort to appease the crowd'
  1004. end
  1005. gs 'arousal', 'porn', 2, 'exhibitionism'
  1006. gs 'stat'
  1007. act 'Continue':gt 'komp','waitclients'
  1008. end
  1009. act 'Give them a brief look':
  1010. *clr & cla
  1011. webpopular += rand(-1,1)
  1012. mfcclients += rand(-1,1)
  1013. if webpopular < 15:
  1014. tokens += rand(0,15)
  1015. elseif webpopular >= 15 and webpopular < 35:
  1016. tokens += rand(0,25)
  1017. elseif webpopular >= 35 and webpopular < 75:
  1018. tokens += rand(5,40)
  1019. elseif webpopular >= 75:
  1020. tokens += rand(25,75)
  1021. end
  1022. gs 'stat'
  1023. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/show1.mp4"></video></center>'
  1024. '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.'
  1025. gs 'arousal', 'porn', 2, 'exhibitionism'
  1026. gs 'stat'
  1027. act 'Continue':gt 'komp','waitclients'
  1028. end
  1029. gs 'willpower', 'exhib', 'resist', 'hard'
  1030. if will_cost <= pcs_willpwr:
  1031. act 'Refuse to take off your panties (<<will_cost>> Willpower)':
  1032. *clr & cla
  1033. webpopular -= 1
  1034. gs 'willpower', 'pay', 'resist'
  1035. gs 'stat'
  1036. gt 'komp','waitclients'
  1037. end
  1038. else
  1039. 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>'
  1040. end
  1041. end
  1042. if topmfc = 0 and clientask >= 95 and clientask < 99:
  1043. menu_off = 1
  1044. *clr & cla
  1045. 'One of the visitors types: "Play with those titties, girl! I''ll pay!"'
  1046. act 'Play with your boobs':
  1047. *clr & cla
  1048. mfcclients = 0
  1049. webpopular += rand(hotcat/2 -2,hotcat/2)
  1050. backmfc = 0
  1051. if webpopular < 15:
  1052. tokens += rand(15,25)
  1053. elseif webpopular >= 15 and webpopular < 35:
  1054. tokens += rand(20,30)
  1055. elseif webpopular >= 35 and webpopular < 75:
  1056. tokens += rand(50,100)
  1057. elseif webpopular >= 75:
  1058. tokens += rand(50,150)
  1059. end
  1060. gs 'stat'
  1061. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore10.jpg"></center>'
  1062. '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.'
  1063. gs 'arousal', 'porn', 2, 'exhibitionism'
  1064. gs 'stat'
  1065. act 'Continue':gt 'komp','waitclients'
  1066. end
  1067. gs 'willpower', 'exhib', 'resist', 'hard'
  1068. if will_cost <= pcs_willpwr:
  1069. act 'Refuse to play with your boobs (<<will_cost>> Willpower)':
  1070. *clr & cla
  1071. webpopular -= 1
  1072. gs 'willpower', 'pay', 'resist'
  1073. gs 'stat'
  1074. gt 'komp','waitclients'
  1075. end
  1076. else
  1077. 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>'
  1078. end
  1079. end
  1080. if backmfc = 0 and clientask = 99:
  1081. menu_off = 1
  1082. *clr & cla
  1083. '"Let''s see that sweet cunt of yours again, whore!" one of your visitors says.'
  1084. 'He''s kinda rude about it, but then again... he''s willing to pay.'
  1085. act 'Do it':
  1086. *clr & cla
  1087. mfcclients = 0
  1088. webpopular += rand(hotcat/2 -2,hotcat/2)
  1089. if webpopular < 15:
  1090. tokens += rand(20,25)
  1091. elseif webpopular >= 15 and webpopular < 35:
  1092. tokens += rand(25,50)
  1093. elseif webpopular >= 35 and webpopular < 75:
  1094. tokens += rand(50,100)
  1095. elseif webpopular >= 75:
  1096. tokens += rand(100,150)
  1097. end
  1098. gs 'stat'
  1099. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore12.jpg"></center>'
  1100. '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.'
  1101. gs 'arousal', 'porn', 2, 'exhibitionism'
  1102. gs 'stat'
  1103. if pcs_horny >= 100:
  1104. mfccum += 1
  1105. pcs_mood = 100
  1106. gs 'stat'
  1107. $orgasm_or = 'custom'
  1108. $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!'
  1109. end
  1110. act 'Continue':gt 'komp','waitclients'
  1111. end
  1112. gs 'willpower', 'exhib', 'resist', 'hard'
  1113. if will_cost <= pcs_willpwr:
  1114. act 'Ignore him (<<will_cost>> Willpower)':
  1115. *clr & cla
  1116. webpopular -= 1
  1117. gs 'willpower', 'pay', 'resist'
  1118. gs 'stat'
  1119. gt 'komp','waitclients'
  1120. end
  1121. else
  1122. 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>'
  1123. end
  1124. end
  1125. if backmfc = 0 and clientask = 100:
  1126. menu_off = 1
  1127. *clr & cla
  1128. 'One of the visitors asks very politely: "Uh, hi! Could you please show me your vagina up close?"'
  1129. act 'Show him your vagina':
  1130. *clr & cla
  1131. mfcclients = 0
  1132. webpopular += rand(hotcat/2 -2,hotcat/2)
  1133. if webpopular < 15:
  1134. tokens += rand(10,25)
  1135. elseif webpopular >= 15 and webpopular < 35:
  1136. tokens += rand(15,25)
  1137. elseif webpopular >= 35 and webpopular < 75:
  1138. tokens += rand(25,50)
  1139. elseif webpopular >= 75:
  1140. tokens += rand(50,150)
  1141. end
  1142. gs 'stat'
  1143. if analplugIN = 1:
  1144. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore19.jpg"></center>'
  1145. elseif pcs_vag = 0:
  1146. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore18.jpg"></center>'
  1147. elseif pcs_vag <= 10:
  1148. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore13.jpg"></center>'
  1149. elseif pcs_vag <= 15:
  1150. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore14.jpg"></center>'
  1151. elseif pcs_vag <= 25:
  1152. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore15.jpg"></center>'
  1153. elseif pcs_vag <= 35:
  1154. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore16.jpg"></center>'
  1155. else
  1156. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore17.jpg"></center>'
  1157. end
  1158. '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!'
  1159. gs 'arousal', 'porn', 2, 'exhibitionism'
  1160. gs 'stat'
  1161. act 'Continue':gt 'komp','waitclients'
  1162. end
  1163. gs 'willpower', 'exhib', 'resist', 'hard'
  1164. if will_cost <= pcs_willpwr:
  1165. act 'Ignore him (<<will_cost>> Willpower)':
  1166. *clr & cla
  1167. webpopular -= 1
  1168. gs 'willpower', 'pay', 'resist'
  1169. gs 'stat'
  1170. gt 'komp','waitclients'
  1171. end
  1172. else
  1173. 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>'
  1174. end
  1175. end
  1176. if backmfc = 0 and pcs_ass >= 30 and webpopular >= 50 and clientask = 80:
  1177. menu_off = 1
  1178. *clr & cla
  1179. '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...'
  1180. act 'Show them your battered sphincter':
  1181. *clr & cla
  1182. mfcclients = 0
  1183. webpopular += rand(hotcat/2-1,1+hotcat/2)
  1184. backmfc = 0
  1185. if pcs_apprnc > 100:
  1186. tokens += rand(50,100)
  1187. else
  1188. tokens += rand(40,75)
  1189. end
  1190. if webpopular < 15:
  1191. tokens += rand(25,50)
  1192. elseif webpopular >= 15 and webpopular < 35:
  1193. tokens += rand(50,100)
  1194. elseif webpopular >= 35 and webpopular < 75:
  1195. tokens += rand(100,150)
  1196. elseif webpopular >= 75:
  1197. tokens += rand(100,200)
  1198. end
  1199. gs 'stat'
  1200. if analplugIN = 0:
  1201. if cumsumass > 39:
  1202. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore74.jpg"></center>'
  1203. '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.'
  1204. '"Oh my god, is that sperm!?" someone wonders.'
  1205. '"Definitely! What a whore!" someone else adds.'
  1206. '"I''d love to add my load to that!" a third one laughs.'
  1207. '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.'
  1208. 'At least the visitor who promised to donate did, so you''re a few tokens richer.'
  1209. gs 'arousal', 'porn', 2, 'exhibitionism'
  1210. gs 'stat'
  1211. else
  1212. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore20,<<rand(0,7)>>.jpg"></center>'
  1213. '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.'
  1214. 'Then your greed overcomes you. They already know... you might as well earn some money by showing them properly, right?'
  1215. 'You pull your ass cheeks aside, giving them a good view of your worn out anus.'
  1216. gs 'arousal', 'porn', 2, 'exhibitionism'
  1217. gs 'stat'
  1218. end
  1219. else
  1220. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore21.jpg"></center>'
  1221. 'You smile to yourself, he''s going to love what you have in store for him!'
  1222. '"I''m sorry", you tell him, explicitly mentioning his username as well. "I can''t right now..."'
  1223. '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.'
  1224. gs 'arousal', 'porn', 2, 'exhibitionism'
  1225. gs 'stat'
  1226. end
  1227. act 'Continue':gt 'komp','waitclients'
  1228. end
  1229. gs 'willpower', 'exhib', 'resist', 'hard'
  1230. if will_cost <= pcs_willpwr:
  1231. act 'Ignore him (<<will_cost>> Willpower)':
  1232. *clr & cla
  1233. webpopular -= 1
  1234. gs 'willpower', 'pay', 'resist'
  1235. gs 'stat'
  1236. gt 'komp','waitclients'
  1237. end
  1238. else
  1239. 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>'
  1240. end
  1241. end
  1242. if webpopular >= 15 and pcs_ass >= 15 and clientask = 89:
  1243. menu_off = 1
  1244. *clr & cla
  1245. gt 'kompMFCtwo'
  1246. end
  1247. if webpopular < 50 and clientask = 88:
  1248. menu_off = 1
  1249. *clr & cla
  1250. gt 'kompMFCtwo'
  1251. end
  1252. if webpopular >= 50 and pcs_vag >= 35 and clientask = 87:
  1253. menu_off = 1
  1254. *clr & cla
  1255. gt 'kompMFCtwo'
  1256. end
  1257. if webpopular >= 35 and pcs_vag >= 25 and alko >= 4 and clientask = 86:
  1258. menu_off = 1
  1259. *clr & cla
  1260. gt 'kompMFCtwo'
  1261. end
  1262. if webpopular >= 50 and pcs_vag + pcs_ass > 0 and alko >= 4 and clientask = 85:
  1263. menu_off = 1
  1264. *clr & cla
  1265. gt 'kompMFCtwo'
  1266. end
  1267. if backmfc = 0 and webpopular >= 25 and pcs_vag + pcs_ass >= 30 and alko >= 4 and clientask = 84:
  1268. menu_off = 1
  1269. *clr & cla
  1270. gt 'kompMFCtwo'
  1271. end
  1272. if backmfc = 0 and pcs_vag > 20 and clientask = 83:
  1273. menu_off = 1
  1274. *clr & cla
  1275. gt 'kompMFCtwo'
  1276. end
  1277. if webpopular > 25 and backmfc = 0 and sub > 25 and pcs_vag > 10 and prezik > 0 and clientask = 82:
  1278. menu_off = 1
  1279. *clr & cla
  1280. gt 'kompMFCtwo'
  1281. end
  1282. if backmfc = 0 and webpopular >= 50 and pcs_ass > 25 and clientask = 81:
  1283. menu_off = 1
  1284. *clr & cla
  1285. gt 'kompMFCtwo'
  1286. end
  1287. if backmfc = 0 and clientask < 80 and clientask >= 77:
  1288. menu_off = 1
  1289. *clr & cla
  1290. gt 'kompMFCanal'
  1291. end
  1292. if clientask < 77 and clientask >= 74:
  1293. menu_off = 1
  1294. *clr & cla
  1295. gt 'kompMFCoral'
  1296. end
  1297. if backmfc = 0 and clientask => 90 and clientask < 95:
  1298. menu_off = 1
  1299. *clr & cla
  1300. 'One of the visitors asks: "Do you have a vibrator or dildo? I want you to put up a little show..."'
  1301. gt 'kompMFC'
  1302. end
  1303. if clientask < 74:
  1304. act 'Dance':
  1305. menu_off = 1
  1306. *clr & cla
  1307. gs 'stat'
  1308. if topmfc = 1 and backmfc = 1:
  1309. if webpopular < 15:
  1310. camclients += rand(pcs_dancero - 60,pcs_dancero - 55)
  1311. elseif webpopular >= 15 and webpopular < 35:
  1312. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1313. elseif webpopular >= 35 and webpopular < 75:
  1314. camclients += rand(pcs_dancero - 50,pcs_dancero - 42)
  1315. elseif webpopular >= 75:
  1316. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1317. end
  1318. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip4.mp4"></video></center>'
  1319. 'Turning on some music you dance eroticiy hoping to entice some viewers.'
  1320. end
  1321. if topmfc = 0 and backmfc = 1:
  1322. if webpopular < 15:
  1323. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1324. elseif webpopular >= 15 and webpopular < 35:
  1325. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1326. elseif webpopular >= 35 and webpopular < 75:
  1327. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1328. elseif webpopular >= 75:
  1329. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1330. end
  1331. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip7.mp4"></video></center>'
  1332. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1333. end
  1334. if topmfc = 1 and backmfc = 0:
  1335. if webpopular < 15:
  1336. camclients += rand(pcs_dancero - 55,pcs_dancero - 45)
  1337. elseif webpopular >= 15 and webpopular < 35:
  1338. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1339. elseif webpopular >= 35 and webpopular < 75:
  1340. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1341. elseif webpopular >= 75:
  1342. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1343. end
  1344. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip6.mp4"></video></center>'
  1345. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1346. end
  1347. if topmfc = 0 and backmfc = 0:
  1348. if webpopular < 15:
  1349. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1350. elseif webpopular >= 15 and webpopular < 35:
  1351. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1352. elseif webpopular >= 35 and webpopular < 75:
  1353. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1354. elseif webpopular >= 75:
  1355. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1356. end
  1357. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/strip5.mp4"></video></center>'
  1358. 'Turning on some music you dance eroticly hoping to entice some viewers.'
  1359. end
  1360. dancero_exp += 1
  1361. gs 'arousal', 'porn', 5
  1362. gs 'stat'
  1363. act 'Continue':gt 'komp','waitclients'
  1364. end
  1365. end
  1366. if topmfc = 1 and backmfc = 1 and clientask < 74:
  1367. act 'Perform a striptease':
  1368. menu_off = 1
  1369. *clr & cla
  1370. gs 'stat'
  1371. if webpopular < 15:
  1372. camclients += rand(pcs_dancero - 50,pcs_dancero - 40)
  1373. elseif webpopular >= 15 and webpopular < 35:
  1374. camclients += rand(pcs_dancero - 45,pcs_dancero - 35)
  1375. elseif webpopular >= 35 and webpopular < 75:
  1376. camclients += rand(pcs_dancero - 40,pcs_dancero - 25)
  1377. elseif webpopular >= 75:
  1378. camclients += rand(pcs_dancero - 30,pcs_dancero - 10)
  1379. end
  1380. '<center><video autoplay loop src="images/locations/city/residential/sauna/sex/striptease4.mp4"></video></center>'
  1381. '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.'
  1382. dancero_exp += 1
  1383. topmfc = 0
  1384. backmfc = 0
  1385. gs 'arousal', 'porn', 3
  1386. gs 'stat'
  1387. act 'Continue':gt 'komp','waitclients'
  1388. end
  1389. end
  1390. if topmfc = 1 and clientask < 74:
  1391. act 'Take off your bra':
  1392. menu_off = 1
  1393. *clr & cla
  1394. topmfc = 0
  1395. gs 'stat'
  1396. if backmfc = 1:
  1397. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore4.jpg"></center>'
  1398. end
  1399. if backmfc = 0:
  1400. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  1401. end
  1402. '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.'
  1403. gs 'arousal', 'porn', 2, 'exhibitionism'
  1404. gs 'stat'
  1405. act 'Continue':gt 'komp','waitclients'
  1406. end
  1407. end
  1408. if topmfc = 0 and clientask < 74:
  1409. act 'Idly play with your boobs':
  1410. menu_off = 1
  1411. *clr & cla
  1412. if webpopular < 15:
  1413. camclients += rand(3,6)
  1414. elseif webpopular >= 15 and webpopular < 35:
  1415. camclients += rand(5,10)
  1416. elseif webpopular >= 35 and webpopular < 75:
  1417. camclients += rand(10,20)
  1418. elseif webpopular >= 75:
  1419. camclients += rand(15,35)
  1420. end
  1421. if alko >= 4:
  1422. gs 'pain', 2, 'slap', 'breasts'
  1423. end
  1424. chancetips = rand(0,100)
  1425. if chancetips >= 85:
  1426. tokens += rand(2,10)
  1427. end
  1428. gs 'stat'
  1429. if alko >= 4:
  1430. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore80.jpg"></center>'
  1431. else
  1432. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore9.jpg"></center>'
  1433. end
  1434. '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.'
  1435. gs 'arousal', 'porn', 2, 'exhibitionism'
  1436. gs 'stat'
  1437. act 'Continue':gt 'komp','waitclients'
  1438. end
  1439. end
  1440. if backmfc = 1 and clientask < 74:
  1441. act 'Take off your panties':
  1442. menu_off = 1
  1443. *clr & cla
  1444. backmfc = 0
  1445. gs 'stat'
  1446. if topmfc = 1:
  1447. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore5.jpg"></center>'
  1448. end
  1449. if topmfc = 0:
  1450. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore6.jpg"></center>'
  1451. end
  1452. '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.'
  1453. gs 'arousal', 'porn', 2, 'exhibitionism'
  1454. gs 'stat'
  1455. act 'Continue':gt 'komp','waitclients'
  1456. end
  1457. end
  1458. if backmfc = 0 and clientask < 74:
  1459. act 'Play with your pussy':
  1460. menu_off = 1
  1461. *clr & cla
  1462. if webpopular < 15:
  1463. camclients += rand(5,10)
  1464. elseif webpopular >= 15 and webpopular < 35:
  1465. camclients += rand(10,15)
  1466. elseif webpopular >= 35 and webpopular < 75:
  1467. camclients += rand(10,30)
  1468. elseif webpopular >= 75:
  1469. camclients += rand(15,40)
  1470. end
  1471. chancetips = rand(0,100)
  1472. if chancetips >= 75:
  1473. tokens += rand(10,15)
  1474. end
  1475. gs 'stat'
  1476. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore11.jpg"></center>'
  1477. 'You get bored during a slow moment in the chat, and begin to play with your pussy without giving it another thought.'
  1478. '"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.'
  1479. 'Giving them a defensive smile, you shrug and reply with one hand, while you keep rubbing your clit slowly with the other.'
  1480. gs 'arousal', 'porn', 2, 'exhibitionism'
  1481. gs 'arousal', 'vaginal_finger', 2, 'exhibitionism'
  1482. minut -= 2
  1483. gs 'stat'
  1484. if pcs_horny >= 100:
  1485. webpopular -= 1
  1486. mfccum += 1
  1487. pcs_mood = 100
  1488. gs 'stat'
  1489. 'Oh crap! You misjudged your endurance, and suddenly squirm and gasp in front of the camera. You''re having an orgasm!'
  1490. 'When it subsides, you look at your current viewer count. Damn... you just came in front of <<camclients>> users, completely free of charge!'
  1491. $orgasm_or = 'yes'
  1492. gs 'stat'
  1493. end
  1494. act 'Continue':gt 'komp','waitclients'
  1495. end
  1496. end
  1497. if backmfc = 0 and clientask < 74:
  1498. act'Play with your ass':
  1499. menu_off = 1
  1500. *clr & cla
  1501. if webpopular < 15:
  1502. camclients += rand(5,10)
  1503. elseif webpopular >= 15 and webpopular < 35:
  1504. camclients += rand(10,15)
  1505. elseif webpopular >= 35 and webpopular < 75:
  1506. camclients += rand(10,30)
  1507. elseif webpopular >= 75:
  1508. camclients += rand(15,40)
  1509. end
  1510. if pcs_ass < 10:analplay += 1
  1511. mfcclients -= 1
  1512. minut += 2
  1513. pcs_horny += rand(5,10)
  1514. chancetips = rand(0,100)
  1515. if chancetips >= 60:
  1516. tokens += rand(10,20)
  1517. end
  1518. gs 'stat'
  1519. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore45.jpg"></center>'
  1520. '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.'
  1521. gs 'arousal', 'porn', 2, 'exhibitionism'
  1522. gs 'arousal', 'anal_finger', 2, 'exhibitionism'
  1523. minut -= 2
  1524. gs 'stat'
  1525. if pcs_horny >= 100:
  1526. webpopular -= 1
  1527. mfccum += 1
  1528. pcs_mood = 100
  1529. gs 'stat'
  1530. $orgasm_or = 'yes'
  1531. $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...'
  1532. gs 'stat'
  1533. end
  1534. act'Continue':gt'komp','waitclients'
  1535. end
  1536. end
  1537. if topmfc = 0 and pain['nippleR'] < 10 and pain['nippleL'] < 10 and clientask < 74:
  1538. act'Pinch your nipples hard':
  1539. menu_off = 1
  1540. *clr & cla
  1541. if webpopular < 15:
  1542. camclients += rand(5,10)
  1543. elseif webpopular >= 15 and webpopular < 35:
  1544. camclients += rand(10,15)
  1545. elseif webpopular >= 35 and webpopular < 75:
  1546. camclients += rand(10,30)
  1547. elseif webpopular >= 75:
  1548. camclients += rand(15,40)
  1549. end
  1550. mfcclients -= 1
  1551. gs 'pain', 2, 'pinch', 'nipples'
  1552. chancetips = rand(0,100)
  1553. if chancetips >= 75:
  1554. tokens += rand(20,40)
  1555. end
  1556. gs 'stat'
  1557. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore80.jpg"></center>'
  1558. 'You''re getting too turned on, and need to slow yourself down a little!'
  1559. '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.'
  1560. gs 'arousal', 'porn', 2, 'exhibitionism'
  1561. gs 'stat'
  1562. act'Continue':gt'komp','waitclients'
  1563. end
  1564. end
  1565. if anyaloc['inroom'] = 1 and $loc = 'bedrPar':
  1566. *clr & cla
  1567. topmfc = 1
  1568. backmfc = 1
  1569. karta += tokens * 2
  1570. tokens = 0
  1571. gs 'stat'
  1572. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/camwhore2.jpg"></center>'
  1573. '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!"'
  1574. '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.'
  1575. '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.'
  1576. act 'Continue':gt 'komp','mfc'
  1577. else
  1578. act 'Turn off the webcam':gt 'komp','startpagemfc'
  1579. end
  1580. end
  1581. if $ARGS[0] = 'bank':
  1582. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/online_bank.jpg"></center>'
  1583. if karta + bankDebtLimit >= 10:
  1584. *pl
  1585. 'You can buy prepaid internet access online through your bank account. 1 hour of internet only costs 10 <b>₽</b>! *'
  1586. *pl
  1587. if karta >= 0:
  1588. 'You have <<karta>> <b>₽</b> in your account.'
  1589. 'You have an overdraft limit of <font color="blue"><<bankDebtLimit>></font>!'
  1590. else
  1591. 'You are overdrawn by <font color="red"><<-1 * karta>> <b>₽</b></font>.'
  1592. 'You have a remaining credit limit of <font color="blue"><<bankDebtLimit + karta>></font>!'
  1593. end
  1594. *pl
  1595. act 'Buy internet time':
  1596. cla
  1597. intinp = input ("How many hours of internet access do you wish to purchase? (1hr = 10 <b>₽</b>)")
  1598. if intinp <= 0 or intinp * 10 > karta + bankDebtLimit:
  1599. 'Invalid amount.'
  1600. else
  1601. karta -= intinp * 10
  1602. internet += intinp
  1603. 'You pay for <<intinp>> hours of prepaid internet access. You have a total of <<internet>> hours of internet access remaining.'
  1604. '<<intinp * 10>> <b>₽</b> was removed from your account to pay for it.'
  1605. end
  1606. act 'Continue': gt 'komp', 'bank'
  1607. end
  1608. end
  1609. act 'Close your browser':gt 'komp', 'brows'
  1610. end
  1611. if $ARGS[0] = 'fuckornot':
  1612. *clr & cla
  1613. if fuckornot = 2: fuckornot = 3
  1614. '<center><img <<$set_imgh>> src="images/pc/items/accessories/computer/fuckornot/fuckable_list.jpg"></center>'
  1615. gs 'gschool_groups', 'fuckornot'
  1616. '10: Perfection. - Would let her do whatever she wants to me'
  1617. '9: Smoking Hot. - Would eat her ass'
  1618. '8: Hot. - Would fuck that ass'
  1619. '7: Damn girl. - Bragging rights for fucking.'
  1620. '6: Mos def smashable. - Totally fuckable, fuck buddy material'
  1621. '5: Merely fuckable. - wouldn''t mind smashing it, blowjob buddy material.'
  1622. '4: Almost fuckable. - Doable, in the dark or to get a blowjob from.'
  1623. '3: Unattractive. - Doable, if I get myself drunk first, good match for Petria'
  1624. '2: Fugly. - Has potential compared to a trash bin, even Lesco could do better'
  1625. '1: Hideous. - Wouldn''t touch it with a stick'
  1626. act 'Leave the site':
  1627. if $view_location = 'school':
  1628. gt 'gschool_lessons', 'short_break'
  1629. else
  1630. gt 'komp', 'brows'
  1631. end
  1632. end
  1633. end
  1634. if $ARGS[0] = 'hotornot':
  1635. *clr & cla
  1636. if hotornot = 2: hotornot = 3
  1637. '<center><img <<$set_imgh>> src="images/system/image_needed.png"></center>'
  1638. gs 'gschool_groups', 'hotornot'
  1639. '10: Perfection. - Would let him do whatever he wants to me'
  1640. '9: Smoking Hot. - Arm Candy'
  1641. '8: Hot. - Would ride him'
  1642. '7: Damn man. - Bragging rights for fucking.'
  1643. '6: Ridable. - Totally fuckable, fuck buddy material'
  1644. '5: Merely fuckable. - maybe doggy style so I don''t have to look at him.'
  1645. '4: Almost fuckable. - might sit on his face.'
  1646. '3: Unattractive. - Not even Zinaida would be seen with him.'
  1647. '2: Fugly. - Horribly ugly, just being seen with him would lose you social standing.'
  1648. '1: Hideous. - Wouldn''t touch it with a stick, not even Sonia would take his money.'
  1649. act 'Leave the site':
  1650. if $view_location = 'school':
  1651. gt 'gschool_lessons', 'short_break'
  1652. else
  1653. gt 'komp', 'brows'
  1654. end
  1655. end
  1656. end
  1657. if $ARGS[0] = 'fin':
  1658. if $loc = 'shulga_room' or $loc = 'anushapt' or $loc = 'artemhome' or $loc = 'dachain' or $loc = 'albinahome' or $loc = 'pav_library':
  1659. internet = internet_store
  1660. killvar 'internet_store'
  1661. end
  1662. gt $loc, $loc_arg
  1663. end
  1664. --- komp ---------------------------------