Komp.qsrc 64 KB

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