Komp.qsrc 63 KB

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