pavSharedApt.qsrc 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. # pavSharedApt
  2. gs 'themes', 'indoors'
  3. if $ARGS[0] = 'update':
  4. rentWeekly = 2000
  5. if rentLeft <= 0:rentLeft = 0
  6. !how much of the unpaid weekly rent is left
  7. if orgB > 100:orgB = 100
  8. price_cook = 50
  9. price_clean = 50
  10. price_handjob = 50
  11. price_blowjob = 100
  12. price_vaginal = 150
  13. price_anal = 200
  14. price_special = 250
  15. ! time calculations
  16. weekNum = (daystart - (daystart mod 7)) / 7
  17. ! pcs setup
  18. $pcs_font = '990099'
  19. !pink
  20. ! servitudeLvl = 0 - no service, pays rent
  21. ! servitudeLvl = 1 - nonsexual service
  22. ! servitudeLvl = 2 - sexual and nonsexual service
  23. ! nerd guy
  24. ! shy, polite, but latent kink (giving golden shower, etc.)
  25. ! brown hair, hairy, pale skin
  26. ! average dick, hairy balls
  27. ! not paying attention to his own image and looks, wears glasses
  28. $nd_name = 'Oleg'
  29. $nd_font = '0096FF'
  30. !blue
  31. nd_leaves = 9
  32. nd_comes = 18
  33. nd_sleeps = 23
  34. nd_wakes = 8
  35. if nd_rel > 100: nd_rel = 100
  36. if nd_rel < 0: nd_rel = 0
  37. ndDick = 17
  38. nd_cumMax = 80
  39. nd_cumMin = 15
  40. if nd_cumVol > nd_cumMax:nd_cumVol = nd_cumMax
  41. if nd_cumVol < nd_cumMin:nd_cumVol = nd_cumMin
  42. nd_horny = (nd_cumVol * 10000 / nd_cumMax) / 100
  43. if nd_served = 1:nd_hadSex = 1
  44. !flag if there was already a sex between him and Sveta
  45. !sex flags: nd_bj ; nd_bjDeep ; nd_swall ; nd_vag ; nd_vagCumInside ; nd_vagCumInsideUnwanted ; nd_anal ; nd_analCumInside ; nd_analCumInsideUnwanted
  46. !unlocked sex: nd_doAnal ; nd_doPornpos
  47. !nd_cleaned = 1 - if was cleaned this day already
  48. ! gopnik guy
  49. ! rude, the younger the better, aggresive, hard
  50. ! dark hair, dark skin
  51. ! above average dick, somehow maintained hairs; event: he will take some enlarging pills testing his monster cock on Sveta
  52. $gp_name = 'Nestor'
  53. $gp_font = 'CC0000'
  54. !red
  55. gp_leaves = 11
  56. gp_comes = 19
  57. gp_sleeps = 23
  58. gp_wakes = 9
  59. if gp_rel > 100: gp_rel = 100
  60. if gp_rel < 0: gp_rel = 0
  61. gpDick = 22
  62. gp_cumMax = 100
  63. gp_cumMin = 30
  64. if gp_cumVol > gp_cumMax:gp_cumVol = gp_cumMax
  65. if gp_cumVol < gp_cumMin:gp_cumVol = gp_cumMin
  66. gp_horny = (gp_cumVol * 10000 / gp_cumMax) / 100
  67. if gp_served = 1:gp_hadSex = 1
  68. !flag if there was already a sex between him and Sveta
  69. !gp_bj ; gp_bjDeep ; gp_swall ; gp_vag ; gp_vagCumInside ; gp_vagCumInsideUnwanted ; gp_anal ; gp_analCumInside ; gp_analCumInsideUnwanted
  70. !unlocked sex: gp_doAnal ; gp_doPornpos ; gp_doVacuum
  71. ! sportsman guy
  72. ! blond hair, tanned
  73. ! latent gay, muscular and athletic, secret fantasies of being used by femboy (or at least a girl with strapon)
  74. ! bellow average dick, shaved
  75. $sp_name = 'Yakov'
  76. $sp_font = '009900'
  77. !green
  78. sp_leaves = 7
  79. sp_comes = 16
  80. sp_sleeps = 22
  81. sp_wakes = 5
  82. if sp_rel > 100: sp_rel = 100
  83. if sp_rel < 0: sp_rel = 0
  84. spDick = 14
  85. sp_cumMax = 60
  86. sp_cumMin = 10
  87. sp_horny = (sp_cumVol * 10000 / sp_cumMax) / 100
  88. if sp_cumVol > sp_cumMax:sp_cumVol = sp_cumMax
  89. if sp_cumVol < sp_cumMin:sp_cumVol = sp_cumMin
  90. if sp_served = 1:sp_hadSex = 1
  91. !flag if there was already a sex between him and Sveta
  92. !sp_bj ; sp_bjDeep ; sp_swall ; sp_vag ; sp_vagCumInside ; sp_vagCumInsideUnwanted ; sp_anal ; sp_analCumInside ; sp_analCumInsideUnwanted
  93. !mood setup
  94. if nd_mood = 1:$nd_mood = 'very good'
  95. if nd_mood = 2:$nd_mood = 'good'
  96. if nd_mood = 3:$nd_mood = 'normal'
  97. if nd_mood = 4:$nd_mood = 'bad'
  98. if nd_mood = 5:$nd_mood = 'very bad'
  99. if gp_mood = 1:$gp_mood = 'very good'
  100. if gp_mood = 2:$gp_mood = 'good'
  101. if gp_mood = 3:$gp_mood = 'normal'
  102. if gp_mood = 4:$gp_mood = 'bad'
  103. if gp_mood = 5:$gp_mood = 'very bad'
  104. if sp_mood = 1:$sp_mood = 'very good'
  105. if sp_mood = 2:$sp_mood = 'good'
  106. if sp_mood = 3:$sp_mood = 'normal'
  107. if sp_mood = 4:$sp_mood = 'bad'
  108. if sp_mood = 5:$sp_mood = 'very bad'
  109. gs 'stat'
  110. if pavSharedAptDebug = 0:
  111. elseif pavSharedAptDebug = 1:
  112. '<a href="exec:pavSharedAptDebug=2">Debug</a>'
  113. elseif pavSharedAptDebug = 2:
  114. '<a href="exec:pavSharedAptDebug=1">Debug Close</a>'
  115. '<a href="exec:pavSharedAptDebug=0">Debug Disable</a>'
  116. $nd_name+' relation: '+nd_rel
  117. $gp_name+' relation: '+gp_rel
  118. $sp_name+' relation: '+sp_rel
  119. 'rentLeft: '+rentLeft
  120. 'weekNum: '+weekNum
  121. 'rentWeekNum: '+rentWeekNum
  122. 'servitudeLvl: '+servitudeLvl
  123. 'servicePaid: '+servicePaid
  124. 'cashPaid: '+cashPaid
  125. 'step: '+step
  126. 'subStep: '+subStep
  127. 'gp_mood: '+gp_mood
  128. 'gp_cumVol: '+gp_cumVol
  129. 'gp_cumVag: '+gp_cumVag
  130. 'gp_cumAnal: '+gp_cumAnal
  131. 'gp_cumSwall: '+gp_cumSwall
  132. 'nd_cumVol: '+nd_cumVol
  133. 'nd_cumMax: '+nd_cumMax
  134. 'nd_horny: '+nd_horny
  135. 'gp_horny: '+gp_horny
  136. 'sp_horny: '+sp_horny
  137. ''
  138. nd_served = 0
  139. nd_mood = 2
  140. gp_served = 0
  141. gp_mood = 2
  142. sp_mood = 2
  143. sp_served = 0
  144. end
  145. end
  146. ! accomodation advert
  147. if $ARGS[0] = 'advertNo30':
  148. $menu_loc = 'pavSharedApt'
  149. $menu_arg = 'advertNo30'
  150. menu_off = 1
  151. minut += 2
  152. seenAd = 1
  153. gs 'stat'
  154. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/aptno3door.jpg"></center>'
  155. '<br>As you pass by one of the apartments, you notice a sign stuck on the door - "сдаeтся в аренду комната" (Room for rent!).'
  156. act 'Check it out':gt 'pavSharedApt', 'doorNo30'
  157. act 'Go back':gt 'pavComplexb3', 'etaj_4'
  158. end
  159. ! door No 3 - shared
  160. if $ARGS[0] = 'doorNo30':
  161. $menu_loc = 'pavSharedApt'
  162. $menu_arg = 'doorNo30'
  163. menu_off = 1
  164. if pavSharedAptEnabled = 1:
  165. '<center><img <<$set_imgh>> src="images/locations/shared/apartment/podezdhr.jpg"></center>'
  166. '<br>You stand before the entry door to apartment No 30. The apartment you share with three others'
  167. act 'Go inside':gt 'pavSharedApt', 'start'
  168. else
  169. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/aptno3door.jpg"></center>'
  170. '<br>You stand before the entry door to apartment No 30. There is a sign on the door saying - "сдаeтся в аренду комната" (Room for rent).'
  171. act 'Knock on the door':gt 'pavSharedApt', 'intro'
  172. end
  173. act 'Go back':gt 'pavComplexb3', 'etaj_4'
  174. end
  175. ! apt hall
  176. if $ARGS[0] = 'start':
  177. $menu_loc = 'pavSharedApt'
  178. $menu_arg = 'start'
  179. menu_off = 0
  180. $locM = 'pavSharedApt'
  181. $metkaM = 'start'
  182. $loc = 'pavSharedApt'
  183. $metka = 'start'
  184. $goBack = $metka
  185. $location_type = 'private'
  186. killvar '$locclass'
  187. gs 'pavSharedApt', 'update'
  188. if introDone = 0:gt 'pavSharedApt', 'intro'
  189. minut += 2
  190. gs 'stat'
  191. if courtletter_date <= daystart and courtletter_date ! 0:
  192. gt 'sentence', 'letter'
  193. end
  194. ! do this once a day
  195. if daystart >= tomorrow:
  196. tomorrow = daystart + 1
  197. nd_mood = rand (1, 5)
  198. nd_served = 0
  199. nd_cleaned = 0
  200. nd_cumVol += rand(15, 30)
  201. gp_mood = rand (1, 5)
  202. gp_served = 0
  203. gp_cleaned = 0
  204. gp_cumVol = rand(20, 40)
  205. sp_mood = rand (1, 5)
  206. sp_served = 0
  207. sp_cleaned = 0
  208. sp_cumVol += rand(5, 20)
  209. end
  210. ! do this every time
  211. rentLeft = rentWeekly - servicePaid - cashPaid
  212. '<center><h3>Hallway</h3></center>'
  213. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/hallway.jpg"></center>'
  214. 'It is week number <<weekNum>>.'
  215. if weekNum < rentWeekNum:
  216. if rentLeft > 0:
  217. 'You have left <<rentLeft>> <b>₽</b> of rent to pay for the next week.'
  218. if servitudeLvl >= 1:
  219. 'You may still pay it in <a href="exec:gt ''pavSharedApt'', ''payCash''">cash</a>, if you want.'
  220. else
  221. 'Pay it in <a href="exec:gt ''pavSharedApt'', ''payCash''">cash</a>.'
  222. end
  223. else
  224. 'You have already paid the whole rent for the next week.'
  225. end
  226. elseif weekNum >= rentWeekNum:
  227. if rentLeft = 0:
  228. !rent was forepaid, everything OK, proceed to next week
  229. rentLeft += 2000
  230. cashPaid = 0
  231. rentWeekNum = weekNum + 1
  232. elseif rentLeft > 0:
  233. !rent was not fully paid
  234. 'You did not pay the whole rent for this week. You still have to pay <<rentLeft>> <b>₽</b>.'
  235. if money >= rentLeft:
  236. !not enough cash to pay it manually
  237. 'You still can pay it in <a href="exec:gt ''pavSharedApt'', ''payCash''">cash</a>, otwerwise you''ll be kicked out!'
  238. else
  239. !in future add some way to serve your way out
  240. 'You do not have enough money to pay the rest of the rent in cash, even if you wanted to. Guess you''ll have to find a new living place...'
  241. rentPaid = 0
  242. pavSharedAptEnabled = 0
  243. end
  244. end
  245. end
  246. if rentPaid = 1:
  247. 'A large apartment currently serves as shared living. As well as the normal living spaces, there are four bedrooms, one rented by you and three occupied by <a href="exec: gt ''pavShared_nd'', ''ndDick''"><font color=#<<$nd_font>>><<$nd_name>></font></a>, <a href="exec: gt ''pavShared_gp'', ''gpDick''"><font color=#<<$gp_font>>><<$gp_name>></font></a>, <a href="exec: gt ''pavShared_sp'', ''spDick''"><font color=#<<$sp_font>>><<$sp_name>></font></a>.'
  248. 'You stand in the hallway. '
  249. ''
  250. 'From the hallway several doors lead to <a href="exec:gt ''pavSharedApt'', ''ndRoom''"><<$nd_name>>''s</a>, <a href="exec:gt ''pavSharedApt'', ''gpRoom''"><<$gp_name>>''s</a> and <a href="exec:gt ''pavSharedApt'', ''spRoom''"><<$sp_name>>''s</a> rooms.'
  251. 'The last doors lead to the <a href="exec:gt ''pavSharedApt'', ''pcsRoom''">room</a> you have rented.'
  252. ''
  253. 'There are several <a href="exec:gt ''wardrobe'', ''start''">closets</a>, that you can use to store your clothes</a>, and a large tall <a href="exec:gt ''mirror'', ''start''">mirror</a>.'
  254. ''
  255. if servitudeLvl >= 1:'A computer printed <a href="exec:gt ''pavSharedApt'', ''list''">list</a> hangs on the exit door.'
  256. act 'Living room (your room)':gt 'pavSharedApt', 'pcsRoom'
  257. act 'Bathroom':gt 'pavSharedApt', 'bathroom'
  258. act 'Kitchen':gt 'pavSharedApt', 'kitchen'
  259. act '<font color=#<<$nd_font>>><<$nd_name>>''s room</font>':gt 'pavSharedApt', 'ndRoom'
  260. act '<font color=#<<$gp_font>>><<$gp_name>>''s room</font>':gt 'pavSharedApt', 'gpRoom'
  261. act '<font color=#<<$sp_font>>><<$sp_name>>''s room</font>':gt 'pavSharedApt', 'spRoom'
  262. end
  263. if home_owned[2] = 0 and kid > 0:
  264. *clr & cla
  265. pavIntroStep = 0
  266. introDone = 0
  267. minut = 5
  268. !Need to have some actual story to this with NPC reactions.
  269. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/dimka/revenge/crying.jpg"></center>'
  270. 'You''ve been kicked out of the apartment due to having children.'
  271. pavSharedAptEnabled = 0
  272. act 'Leave':gt 'pavComplexb3', 'etaj_4'
  273. end
  274. act '<font color = maroon>Leave and go to the stairwell.</font>':
  275. if $clothingworntype ! 'nude':
  276. gt 'pavComplexb3', 'etaj_4'
  277. else
  278. msg'<b><font color = red>You need to get dressed.</font></b>'
  279. gt 'pavSharedApt', 'start'
  280. end
  281. end
  282. act '<font color = maroon><b>Leave and go outside</b></font>':
  283. if $clothingworntype ! 'nude':
  284. gt 'pavResidential'
  285. else
  286. msg'<b><font color = red>You need to get dressed.</font></b>'
  287. gt 'pavSharedApt', 'start'
  288. end
  289. end
  290. end
  291. if $ARGS[0] = 'payCash':
  292. menu_off = 1
  293. minut += 2
  294. cash = rentLeft
  295. if money >= cash:
  296. 'You have decided to pay the remainder of the weekly rent in cash. It makes '+cash+' <b>₽</b>.'
  297. cashPaid += cash
  298. money -= cash
  299. rentPaid = 1
  300. pavSharedAptEnabled = 1
  301. else
  302. 'You do not have enough money to pay it.'
  303. end
  304. act 'Proceed':gt 'pavSharedApt', 'start'
  305. end
  306. if $ARGS[0] = 'payService':
  307. menu_off = 1
  308. minut += 1
  309. 'The amount '+price+' <b>₽</b> was taken in account of your weekly rent.'
  310. servicePaid += price
  311. act 'Continue':gt 'pavSharedApt', 'start'
  312. end
  313. if $ARGS[0] = 'rentSetup':
  314. menu_off = 1
  315. minut += 2
  316. 'You get a list of paper, saying the weekly rent fee is <<rentWeekly>> rubles.'
  317. rentPaid = 1
  318. introDone = 1
  319. rentWeekNum = (daystart - (daystart mod 7)) / 7 + 1
  320. act 'Continue':gt 'pavSharedApt', 'start'
  321. end
  322. if $ARGS[0] = 'intro':
  323. menu_off = 1
  324. gs 'pavSharedApt', 'update'
  325. if step > 0:
  326. '<center><img border="5" bordercolor="<<$sp_font>>" height="150" src="images/locations/pavlovsk/resident/sharedapt/sp/sp.jpg"> <img height="150" src="images/locations/pavlovsk/resident/sharedapt/gp/gp.jpg"> <img height="150" src="images/locations/pavlovsk/resident/sharedapt/nd/nd.jpg"></center>'
  327. ''
  328. end
  329. if pavIntroStep = 0:
  330. minut += 2
  331. pavIntroStep = 1
  332. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/sp/sp.jpg"></center>'
  333. ''
  334. 'The door are opened by a young, nice looking athletic man.'
  335. '<font color=#<<$sp_font>>>"Hi sweetie! What do you need?"</font>'
  336. '<font color=#<<$pcs_font>>>"Hello, my name is <<$pcs_firstname>> <<$pcs_lastname>>. I''ve seen the advert that someone here have a spare room for rent?"</font>'
  337. '<font color=#<<$sp_font>>>"Yeah, that''s true. Come in, I''ll call the guys and we can talk about it. I''m <<$sp_name>> by the way."</font>'
  338. act 'Go in':gt 'pavSharedApt', 'intro'
  339. elseif pavIntroStep = 1:
  340. minut += 3
  341. pavIntroStep = 2
  342. 'You go through the door in a hallway. By the amount of coats and shoes you guess there are about 3 or 4 people living here.'
  343. 'The guy disappears in one of the doors and you can hear talking him to someone.'
  344. 'They seem to be trying to talk quietly, but you can hear a sentence or two..:'
  345. ''
  346. '"..a girl I tell you.." "..nice one, really, with nice round tits man.." "..better than another dick, idiot.." "..ok ok just be done with it.."'
  347. ''
  348. 'In a while three young guys appear in the hallway.'
  349. '<font color=#<<$sp_font>>>"So that''s her guys. <<$pcs_firstname>>, could you introduce yourself to guys?"</font>'
  350. '<font color=#<<$pcs_font>>>"Hello, my name is <<$pcs_firstname>> <<$pcs_lastname>>. I would like to rent the empty room in your apartment."</font>'
  351. '<font color=#<<$gp_font>>>"Well now that''s what I like! Finally this won''t be such a gay party!"</font>'
  352. '<font color=#<<$nd_font>>>"<<$pcs_firstname>> please excuse my friend <<$gp_name>>, he is such a rude prick to everyone. My name is <<$nd_name>>."</font>'
  353. '<font color=#<<$gp_font>>>"Yup, I''m <<$gp_name>>."</font>'
  354. '<font color=#<<$nd_font>>>"So you would like to live here with us?"</font>'
  355. '<font color=#<<$pcs_font>>>"Yes. I need a new place to stay."</font>'
  356. '<font color=#<<$gp_font>>>"How old are you girl?"</font>'
  357. '<font color=#<<$nd_font>>>"<<$gp_name>>! Not this again!"</font>'
  358. '<font color=#<<$pcs_font>>>"It''s OK. I am actually <<age>> years old. Why do you ask?"</font>'
  359. '<font color=#<<$nd_font>>>"He''s just idiot, don''t listen to him."</font>'
  360. if age < 18:
  361. '(You can see <<$gp_name>> rub his crotch just a brief moment after you told him your age. What''s he up to?)'
  362. end
  363. if knowpreg = 1:
  364. act 'Ask about children':
  365. cla
  366. pavIntroStep = 50
  367. '<font color=#<<$pcs_font>>>"I thought I should tell you, I''m currently pregnant. How you feel about having children in the apartment, will this be a problem?"</font>'
  368. act 'continue':gt 'pavSharedApt', 'intro'
  369. end
  370. elseif kid > 0:
  371. act 'Ask about children':
  372. cla
  373. pavIntroStep = 50
  374. '<font color=#<<$pcs_font>>>"I thought I should tell, I''m mother. How you feel about having children in the apartment, will this be a problem?"</font>'
  375. act 'continue':gt 'pavSharedApt', 'intro'
  376. end
  377. else
  378. act 'Continue':gt 'pavSharedApt', 'intro'
  379. end
  380. elseif pavIntroStep = 2:
  381. minut += 3
  382. pavIntroStep = 3
  383. '<font color=#<<$pcs_font>>>"So what do you guys say, will you take me in?"</font>'
  384. '<font color=#<<$nd_font>>>"We may. But first, do you have the money to pay the rent?"</font>'
  385. '<font color=#<<$pcs_font>>>"Well, of course I don''t expect to let me live here for free. But I hope the rent is reasonable.."</font>'
  386. '<font color=#<<$nd_font>>>"It is indeed."</font>'
  387. '<font color=#<<$sp_font>>>"<<rentWeekly>> rubles. Per week."</font>'
  388. '<font color=#<<$pcs_font>>>"Uhm. That''s quite a lot. I''m not sure if I''ll be able to afford this.."</font>'
  389. '<font color=#<<$gp_font>>>"You can pay other ways if you''d like!"</font>'
  390. '<font color=#<<$nd_font>>>"<<$gp_name>>!"</font>'
  391. '<font color=#<<$pcs_font>>>"What do you mean by other ways?"</font>'
  392. '<font color=#<<$sp_font>>>"Well <<$pcs_firstname>>, since we are just guys here, and since we suck at these things, we could use someone as you, a girl I mean, to be something like our, let''s say, handmaiden. If you know what I mean."</font>'
  393. '<font color=#<<$pcs_font>>>"Like cooking and cleaning?"</font>'
  394. '<font color=#<<$sp_font>>>"Yes, exactly."</font>'
  395. '<font color=#<<$gp_font>>>"And more."</font>'
  396. '<font color=#<<$nd_font>>>"Oh my... I give up."</font>'
  397. act 'More what?':gt 'pavSharedApt', 'intro'
  398. elseif pavIntroStep = 3:
  399. minut += 3
  400. '<font color=#<<$gp_font>>>"More services."</font>'
  401. '<font color=#<<$pcs_font>>>"What kind of ''more services''?"</font>'
  402. '<font color=#<<$sp_font>>>"Girl to guys kind of services."</font>'
  403. '<font color=#<<$pcs_font>>>"You mean to be a whore for you? Instead of paying the rent???"</font>'
  404. '<font color=#<<$nd_font>>>"Please <<$pcs_firstname>>, don''t get mad. <<$gp_name>> is not just idiot, he is a rude idiot. We are definitely not asking you to be our whore or something like that."</font>'
  405. '<font color=#<<$nd_font>>>"As <<$sp_name>> told you, we could decrease your rent if you would do some homekeeping stuff we really suck at. But only if you want, of course."</font>'
  406. '<font color=#<<$sp_font>>>"So what do you say <<$pcs_firstname>>?"</font>'
  407. act 'Say you will pay the rent the normal way':pavSharedAptEnabled = 1 & pavIntroStep = 10 & gt 'pavSharedApt', 'intro'
  408. act 'Say you don''t mind doing the homekeeping stuff':pavSharedAptEnabled = 1 & pavIntroStep = 20 & gt 'pavSharedApt', 'intro'
  409. act 'Say you don''t mind anything':pavSharedAptEnabled = 1 & pavIntroStep = 30 & gt 'pavSharedApt', 'intro'
  410. act 'Say that you changed your mind about this':pavIntroStep = 40 & gt 'pavSharedApt', 'intro'
  411. elseif pavIntroStep = 10:
  412. minut += 2
  413. '<font color=#<<$sp_font>>>"Fine. So the rest of this week you have for free, but you need to prepay the next week. OK?"</font>'
  414. '<font color=#<<$pcs_font>>>"Yes, OK, I understand."</font>'
  415. '<font color=#<<$sp_font>>>"So the room is over there.</font>'
  416. '<font color=#<<$pcs_font>>>"Wait, Isn''t that the living room?"</font>'
  417. '<font color=#<<$sp_font>>>"Yes it is, but we don''t use it, so we are renting it out. There is all you need, a bed, a table with chair, all this stuff, we even put a curtain over the doorway. Just move in when you want. See you later <<$pcs_firstname>>!"</font>'
  418. '<font color=#<<$nd_font>>>"Have a nice day <<$pcs_firstname>>."</font>'
  419. '<font color=#<<$gp_font>>>"See ya later girlie..."</font>'
  420. '<font color=#<<$pcs_font>>>"Later guys!"</font>'
  421. servitudeLvl = 0
  422. act 'Continue':pavIntroStep = 0 & gt 'pavSharedApt', 'rentSetup'
  423. elseif pavIntroStep = 20:
  424. minut += 2
  425. '<font color=#<<$sp_font>>>"Fine. So the rest of this week you have for free, but you need to prepay the next week. OK?"</font>'
  426. '<font color=#<<$pcs_font>>>"Yes, OK, I understand."</font>'
  427. '<font color=#<<$nd_font>>>"We will pepare a list of the charges for the homekeeping services you may want to do, so it''s clear how much will be deducted form your rent."</font>'
  428. '<font color=#<<$pcs_font>>>"Cool!"</font>'
  429. '<font color=#<<$sp_font>>>"So the room is over there.</font>'
  430. '<font color=#<<$pcs_font>>>"Wait, Isn''t that the living room?"</font>'
  431. '<font color=#<<$sp_font>>>"Yes it is, but we don''t use it, so we are renting it out. There is all you need, a bed, a table with chair, all this stuff, we even put a curtain over the doorway. Just move in when you want. See you later <<$pcs_firstname>>!"</font>'
  432. '<font color=#<<$nd_font>>>"Have a nice day <<$pcs_firstname>>."</font>'
  433. '<font color=#<<$gp_font>>>"See ya later girlie..."</font>'
  434. '<font color=#<<$pcs_font>>>"Later guys!"</font>'
  435. servitudeLvl = 1
  436. act 'Continue':pavIntroStep = 0 & gt 'pavSharedApt', 'rentSetup'
  437. elseif pavIntroStep = 30:
  438. minut += 2
  439. '<font color=#<<$sp_font>>>"Fine. So the rest of this week you have for free, but you need to prepay the next week. OK?"</font>'
  440. '<font color=#<<$pcs_font>>>"Yes, OK, I understand."</font>'
  441. '<font color=#<<$nd_font>>>"We will pepare a list of the charges for the homekeeping services you may want to do, so it''s clear how much will be deducted form your rent."</font>'
  442. '<font color=#<<$gp_font>>>"The extra stuff services will be there too, girl."</font>'
  443. '<font color=#<<$pcs_font>>>"OK.."</font>'
  444. '<font color=#<<$sp_font>>>"So the room is over there.</font>'
  445. '<font color=#<<$pcs_font>>>"Wait, Isn''t that the living room?"</font>'
  446. '<font color=#<<$sp_font>>>"Yes it is, but we don''t use it, so we are renting it out. There is all you need, a bed, a table with chair, all this stuff. Just move in when you want, we even put a curtain over the doorway. See you later <<$pcs_firstname>>!"</font>'
  447. '<font color=#<<$nd_font>>>"Have a nice day <<$pcs_firstname>>."</font>'
  448. '<font color=#<<$gp_font>>>"See ya later girlie..."</font>'
  449. '<font color=#<<$pcs_font>>>"Later guys!"</font>'
  450. servitudeLvl = 2
  451. act 'Continue':pavIntroStep = 0 & gt 'pavSharedApt', 'rentSetup'
  452. elseif pavIntroStep = 40:
  453. minut += 2
  454. '<font color=#<<$nd_font>>>"I told you idiot not to scare her away!"</font>'
  455. '<font color=#<<$gp_font>>>"Sorry man! We can still lock her to the radiator like I suggested in the first place.."</font>'
  456. '<font color=#<<$nd_font>>>"Just shut up already!"</font>'
  457. ''
  458. '<font color=#<<$sp_font>>>"Sorry <<$pcs_firstname>>. We respect your decision. If you change your mind and room is still empty, let us know and we can talk again. Goodbye!"</font>'
  459. act 'Tell them goodbye and leave':pavIntroStep = 0 & gt 'pavComplexb3', 'etaj_4'
  460. elseif pavIntroStep = 50:
  461. minut += 2
  462. !add dialogue for returning after being previously expelled from apartment
  463. '<font color=#<<$nd_font>>>"I''m sorry <<$pcs_firstname>>, but we don''t want children or pets in the apartment!"</font>'
  464. '<font color=#<<$gp_font>>>"If you get rid of the kid, come back and see us."</font>'
  465. '<font color=#<<$sp_font>>>"Don''t mind him. There''s simply not enough room for 4 people, plus kids or pets. I hope you understand"</font>'
  466. if home_owned[2] = 1:
  467. act 'Suggest a compromise':
  468. cla
  469. pavIntroStep = 2
  470. '<font color=#<<$pcs_font>>>"I can leave them with my parents for the time being, and keep them away from the apartment, how does this sound?'
  471. '<font color=#<<$sp_font>>>"Are you certain you want to do this?"</font>'
  472. '<font color=#<<$gp_font>>>"Sounds good to me!"</font>'
  473. '<font color=#<<$nd_font>>>"hmmmm"</font>'
  474. act 'Continue':gt 'pavSharedApt', 'intro'
  475. end
  476. act 'I wont leave my children':
  477. cla
  478. pavIntroStep = 0
  479. '<font color=#<<$pcs_font>>>"OK, I will make do with my current accomodation.'
  480. '<font color=#<<$sp_font>>>"We understand"</font>'
  481. '<font color=#<<$gp_font>>>"Damn"</font>'
  482. '<font color=#<<$nd_font>>>"No problem <<$pcs_firstname>>"</font>'
  483. act 'Continue':gt 'pavSharedApt', 'intro'
  484. end
  485. else
  486. '<font color=#<<$pcs_font>>>OK, I understand.</font>'
  487. act 'Thank them and leave':pavIntroStep = 0 & gt 'pavComplexb3', 'etaj_4'
  488. end
  489. end
  490. end
  491. ! the pricelist
  492. if $ARGS[0] = 'list':
  493. menu_off = 1
  494. $metka = 'list'
  495. minut += 2
  496. $goBack = $metka
  497. '<center><h3><<$pcs_firstname>>''s pricelist</h3></center>'
  498. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/list.jpg"></center>'
  499. ''
  500. 'The basic weekly rent is <<rentWeekly>> rubles.'
  501. 'It is possible to pay it in cash, or offer services instead. The prices are folllowing:'
  502. ''
  503. '---------------'
  504. ''
  505. 'Cooking a warm meal: '+price_cook
  506. 'Cleaning the apartment: '+price_clean
  507. if servitudeLvl >= 2:
  508. ''
  509. 'Handjob: '+price_handjob
  510. 'Blowjob: '+price_blowjob
  511. 'Sex: '+price_vaginal
  512. 'Anal sex: '+price_anal
  513. 'Special treats: '+price_special
  514. end
  515. ''
  516. '---------------'
  517. ''
  518. 'Not having paid the full weekly rent at the beginning of a new week will lead to termination of the accommodation services.'
  519. 'Signed: <a href="exec: gt ''pavShared_nd'', ''ndDick''"><font color=#<<$nd_font>>><<$nd_name>></font></a>, <a href="exec: gt ''pavShared_gp'', ''gpDick''"><font color=#<<$gp_font>>><<$gp_name>></font></a>, <a href="exec: gt ''pavShared_sp'', ''spDick''"><font color=#<<$sp_font>>><<$sp_name>></font></a>, <<$pcs_firstname>>.'
  520. ''
  521. '---------------'
  522. act 'Continue':gt 'pavSharedApt', 'start'
  523. end
  524. ! paying with money
  525. if $ARGS[0] = 'payRent':
  526. menu_off = 1
  527. minut += 1
  528. 'You decided to give the guys money, instead of serving them.'
  529. 'You just spent <<paid_rent>> cash.'
  530. money -= paid_rent
  531. gs 'stat'
  532. act 'Continue': gs 'pavSharedApt', 'start'
  533. end
  534. if $ARGS[0] = 'bathroom':
  535. $menu_loc = 'pavSharedApt'
  536. $menu_arg = 'bathroom'
  537. menu_off = 0
  538. minut += 1
  539. $location_type = 'bathroom'
  540. $loc = 'pavSharedApt'
  541. $metka = 'bathroom'
  542. $metkaM = 'bathroom'
  543. $locM = 'pavSharedApt'
  544. '<center><h3>Bathroom</h3></center>'
  545. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/vanrpar.jpg"></center>'
  546. *nl
  547. 'Modest bathroom, containing all that young people need for their daily life, such as:'
  548. 'A Shower, toilet, <a href="exec:GT ''mirror'',''start''">mirror</a>, where you can ' + iif(pcs_hairbsh = 0,'<a href="exec:GT ''mirror'',''brush''">brush</a>','brush') + ' your hair, a sink and even a bath tub.'
  549. *nl
  550. gs 'din_van', 'private'
  551. gs 'stat'
  552. act 'Leave':gt 'pavSharedApt', 'start'
  553. end
  554. if $ARGS[0] = 'kitchen':
  555. $menu_loc = 'pavSharedApt'
  556. $menu_arg = 'kitchen'
  557. menu_off = 0
  558. *clr & cla
  559. minut += 2
  560. $loc = 'pavSharedApt'
  561. $metka = 'kitchen'
  562. $locclass = 'kitr'
  563. gs 'stat'
  564. gs 'kit_din'
  565. '<center><h3>Kitchen</h3></center>'
  566. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/kuhrpar.jpg"></center>'
  567. 'It''s a modest kitchen, but has all that is needed.'
  568. ! dishes
  569. if cltarelka > 0:
  570. 'Above the sink are <b><<cltarelka>></b> the clean plates'
  571. else
  572. '<b><font color = red>You have no clean dishes left.</font></b>'
  573. end
  574. if dirttarelka > 0:'The sink has <b><<dirttarelka>></b> dirty dishes. <a href="exec: dynamic $dirtarm">that need to be washed</a>.'
  575. if fairy > 0:
  576. 'Above the sink is some detergent to wash the dishes with. There is enough for <b><<fairy>></b> uses.'
  577. else
  578. '<b><font color = red>You do not have enough detergent, you should buy some from the supermarket.</font></b>'
  579. end
  580. ! food
  581. if eda > 0:
  582. if cltarelka = 0 or edahot > 0:$edagot = ''
  583. if cltarelka > 0 and edahot = 0:
  584. $edagot = '<a href="exec:dynamic $edagotd">Cook a meal for yourself (0:30)</a>'
  585. end
  586. 'In the refrigerator there''s enough (your own) food for <b><<eda>></b> servings. <<$edagot>>'
  587. end
  588. if edahot > 0:'<a href="exec: dynamic $edahotd ">On the table is ready meal (0:30).</a>'
  589. if edaD = 0 and eda = 0:'<b><font color="red">You have nothing to eat, the refrigerator is empty!</font></b>'
  590. if eda >= 3:
  591. '<a href="exec: gt ''pavSharedApt'', ''cookForGuys''">Cook meal (1:30) for the guys</a>'
  592. end
  593. dynamic $edasnack
  594. dynamic $driwater
  595. dynamic $dritea
  596. dynamic $pranik
  597. dynamic $edaD
  598. dynamic $fatdel
  599. dynamic $lekarstvo
  600. act 'Leave':gt 'pavSharedApt', 'start'
  601. end
  602. if $ARGS[0] = 'cookForGuys':
  603. menu_off = 1
  604. cla
  605. *clr
  606. $loc = 'pavSharedApt'
  607. $metka = 'kitchen'
  608. minut += 90
  609. eda -= 3
  610. kuhdrova = 0
  611. pcs_mood -= 10
  612. gs 'stat'
  613. '<center><img <<$set_imgh>> src="images/shared/home/kitchen/cook.jpg"></center>'
  614. 'You prepare three meals.'
  615. price = price_cook
  616. act 'Leave the meal':gt 'pavSharedApt', 'payService'
  617. end
  618. if $ARGS[0] = 'cleanForGuys':
  619. menu_off = 1
  620. cla
  621. *clr
  622. minut += 60
  623. poroshok -= 3
  624. pcs_mood -= 10
  625. gs 'stat'
  626. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/stir.jpg"></center>'
  627. price = price_clean
  628. *nl
  629. 'You collect piles piles of dirty clothes around the room, carry them into the bathroom, put them in a basin and then pour washing powder on them. You wash them until they are finally clean.'
  630. cumStainCh = rand (0, 100)
  631. if servitudeLvl = 2 and cumStainCh <= 50:'<i>You notice bedsheets with what seems as dried out cum. Probably remainder of one of yours "servings". Maybe it is really better to swallow everytime, you wonder?</i>'
  632. act 'Hang them to dry out and leave':gt 'pavSharedApt', 'payService'
  633. end
  634. ! living room & pc bedroom
  635. if $ARGS[0] = 'pcsRoom':
  636. $menu_loc = 'pavSharedApt'
  637. $menu_arg = 'pcsRoom'
  638. menu_off = 0
  639. $loc = 'pavSharedApt'
  640. $metka = 'pcsRoom'
  641. $location_type = 'private'
  642. $locclass = 'bedr'
  643. minut += 2
  644. gs 'stat'
  645. gs 'pavSharedApt', 'update'
  646. '<center><b><font color="maroon">Living Room</font></b></center>'
  647. '<center><img <<$set_imgh>> src="images/shared/sharedapt/bedroom/sofabed.jpg"></center>'
  648. ''
  649. 'The living room wasn''t in use by the other apartment occupants, so it is now rented to use as a bedroom. It''s sparsly decorated, with, a <a href="exec:gt ''bed'', ''start''">sofa bed</a>, against the back wall.'
  650. ''
  651. 'Beside the sofa bed, is an old cabinet, with your <a href="exec:gt ''budilnik'', ''start''">alarm clock</a> on top.'
  652. if budilnikOn = 0:
  653. 'Your <a href="exec:gt ''budilnik'', ''start''">alarm clock</a> is set for <<timer>> hours <<timerM>> minutes and currently turned <a href="exec: budilnikOn = 1 & GT ''pavSharedApt'',''pcsRoom''">off</a>.'
  654. else
  655. 'Your <a href="exec:gt ''budilnik'', ''start''">alarm clock</a> is set for <<timer>> hours <<timerM>> minutes and currently turned <a href="exec: budilnikOn = 0 & GT ''pavSharedApt'',''pcsRoom''">on</a>.'
  656. end
  657. ''
  658. if TV = 0:$TV = 'a great place for a TV, if you had one.'
  659. if TV = 1:$TV = 'an old CRT <a href="exec:gt ''TV'', ''start''">TV</a> sits on the shelf'
  660. 'There is an wall unit at the other side of the room, <<$TV>>. Everyone in the household spends their time in their own rooms, so there was never a reason to use the living room for its intended purpose.'
  661. ''
  662. 'On the other side of the sofa bed are your old <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">suitcases</a>, which you could use to store the clothes you don''t often wear.'
  663. ''
  664. 'There is no door to the living room, instead there''s <a href="exec:view''images/shared/sharedapt/bedroom/curtain.jpg''">curtain</a> covering entry to the room, which gives you a modicum of privacy; not much better than the state of the non-existant window curtains'
  665. act '<b>Leave the room</b>':gt 'pavSharedApt', 'start'
  666. act 'Sit on the sofa bed':gt 'pavSharedApt', 'sofabed'
  667. if obruch > 0: '<br>A hula hoop stands in corner of the room. '
  668. if skak > 0: 'A jump rope is on a shelf. '
  669. if bookYog > 0: 'A yoga mat is rolled up in a corner. '
  670. gs 'exercise', 'start'
  671. ''
  672. if komp = 1:'Your <a href="exec:gorodokKomp = 1 & GT ''Komp'',''start''">laptop</a> is sitting on small table.'
  673. if student > 0 and kursovik < 100:
  674. act 'Do coursework (1:00)':
  675. cla
  676. *clr
  677. minut += 60
  678. kursovik += rand(pcs_intel / 20, pcs_intel / 10)
  679. if kursovik > 100:kursovik = 100
  680. pcs_mood -= 10
  681. '<center><img <<$set_imgh>> src="images/pc/activities/study.jpg"></center>'
  682. 'You sit down on the sofa bed and do your coursework, you''ve finished <<kursovik>> percent of it.'
  683. act 'Stand up':gt 'pavSharedApt', 'pcsRoom'
  684. end
  685. end
  686. if vcard > 0:
  687. act 'View your vintage porn cards':card_deck = 0 & gt 'card'
  688. end
  689. if card > 0:
  690. act 'View your new porn cards':card_deck = 1 & gt 'card'
  691. end
  692. if dur > 0:'You have <<dur>> doses of Pale Lady, hidden from the other housemates.'
  693. if dur > 0 and narkday ! daystart:
  694. act 'Use some Pale Lady (0:05)':
  695. cla
  696. *clr
  697. minut += 5
  698. narkday = daystart
  699. pcs_health = pcs_vital * 10 + pcs_stren * 5
  700. pcs_willpwr = pcs_intel * 5 + pcs_sprt * 5
  701. pcs_mood = 100
  702. pcs_horny = 100
  703. nark += 10
  704. dur -= 1
  705. gs 'stat'
  706. '<center><img <<$set_imgh>> src="images/shared/drugs/dur.jpg"></center>'
  707. 'You snort some Pale Lady, feeling dizzy for just a moment. After that you feel fantastic, and incredibly horny.'
  708. act 'Continue':gt 'pavSharedApt', 'pcsRoom'
  709. end
  710. end
  711. if gobelen>0:'You have <<gobelen>> completed tapestries.'
  712. if pcs_sewng >= 40 and tkan > 0:'You have enough fabric for <<tkan>> lessons.'
  713. if pcs_sewng >= 40 and tkan <= 0:'You do not have any fabric.'
  714. if pcs_sewng >= 80:
  715. if newgobelen = 0 and tkan > 0:
  716. act'Start a new tapestry':
  717. cls
  718. tkan -= 1
  719. newgobelen = 1
  720. minut += 15
  721. gs'stat'
  722. 'You spend 15 minutes at the embroidery frame, preparing the fabric and outlining the pattern for the tapestry.'
  723. act'Set the tapestry aside':gt 'pavSharedApt', 'pcsRoom'
  724. end
  725. end
  726. if newgobelen>=1:
  727. 'Your tapestry is <<newgobelen/10>> percent finished.'
  728. act'Work on the tapestry for an hour':
  729. cls
  730. minut+=60
  731. sewng_exp += rand(pcs_intel/10, pcs_intel/5)
  732. gobramax = (pcs_sewng - 70) * 6
  733. gobramin = (pcs_sewng - 70) * 2
  734. newgobelen += rand(gobramin,gobramax)
  735. gs'stat'
  736. if newgobelen < 1000:'You spent an hour working on your tapestry, which is now <<newgobelen/10>> percent finished.'
  737. if newgobelen >= 1000:
  738. newgobelen = 0
  739. gobelen += 1
  740. 'Your work on the tapestry is done.'
  741. end
  742. act'Set the tapestry aside':gt 'pavSharedApt', 'pcsRoom'
  743. end
  744. end
  745. end
  746. if tabletki > 0 and prezik + prezikcount + preziksabo > 0:
  747. 'Your <a href="exec:gt ''stol'', ''bc''">birth control</a> tablets are in the cabinet next to your bed, along with some <a href="exec:gt ''stol'', ''bc''">condoms</a>.'
  748. elseif tabletki > 0:
  749. 'Your <a href="exec:gt ''stol'', ''bc''">birth control</a> tablets are in the cabinet next to your bed.'
  750. elseif prezik + prezikcount + preziksabo > 0:
  751. 'Your <a href="exec:gt ''stol'', ''bc''">condoms</a> are in the cabinet next to your bed.'
  752. end
  753. ''
  754. if sewing_kit = 1:
  755. 'Your <a href="exec:gt ''sewing'',''start''">sewing kit</a> is stored on a shelf.'
  756. end
  757. if tovarL > 0:'You currently have <<tovarL>> trinkets to sell at the station. The maximum you can carry with you is 30.'
  758. dynamic $wearpan
  759. dynamic $removepan
  760. !gs 'subkid'
  761. act 'Relax on your bed': gt 'bed', 'start'
  762. end
  763. if $ARGS[0] = 'sofabed':
  764. $menu_loc = 'pavSharedApt'
  765. $menu_arg = 'sofabed'
  766. menu_off = 0
  767. $loc = 'pavSharedApt'
  768. $metka = 'sofabed'
  769. *clr & cla
  770. gs 'stat'
  771. '<center><img <<$set_imgh>> src="images/shared/sharedapt/bedroom/sofabed.jpg"></center>'
  772. '<center>A small sofa bed, when not unfolded, is just big enough for you to curl up on and take a nap.</center>'
  773. if TV = 1:
  774. act 'Watch some TV':gt 'TV', 'start'
  775. end
  776. if pornMagazine > 0:'<br>There is a porn magazine under the sofa cushions'
  777. gs 'events', 'read_porn'
  778. gs 'events', 'read'
  779. if pcs_horny >= 50:
  780. act 'Masturbate':gt 'selfplay', 'start'
  781. end
  782. act 'Take a nap (1:00)':
  783. if pcs_sleep < 90:
  784. pcs_sleep += 10
  785. pcs_health += 5
  786. minut += 60
  787. gs 'stat'
  788. 'You sleep about an hour.'
  789. else
  790. minut += 5
  791. gs 'stat'
  792. 'You are not tired enough to sleep, even for a short nap.'
  793. end
  794. end
  795. act 'Get up':gt 'pavSharedApt', 'pcsRoom'
  796. end
  797. if $ARGS[0] = 'ndRoom':
  798. $menu_loc = 'pavSharedApt'
  799. $menu_arg = 'ndRoom'
  800. menu_off = 0
  801. $loc = 'pavSharedApt'
  802. $metka = 'ndRoom'
  803. minut += 2
  804. '<center><h3><font color=#<<$nd_font>>><<$nd_name>>''s room</font></h3></center>'
  805. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/nd/room.jpg"></center>'
  806. ''
  807. 'The room is surprisingly not as messy as one would expect, given that <<$nd_name>> is an IT guy.'
  808. 'There is one large window with bed bellow it, but the whole room is dominated by a large table with several computers and monitors.'
  809. 'Looking at it one would say that this must be a den of a hacker.'
  810. if hour >= nd_sleeps and hour < nd_wakes:
  811. '<<$nd_name>> is sleeping in his bed.'
  812. elseif hour >= nd_wakes and hour < nd_leaves:
  813. '<<$nd_name>> is already awake, getting ready to leave.'
  814. act 'Approach him': gt 'pavShared_nd', 'nd'
  815. elseif hour >= nd_leaves and hour < nd_comes:
  816. '<<$nd_name>> is not here.'
  817. elseif hour >= nd_comes and hour < nd_sleeps:
  818. '<<$nd_name>> is currently behind his desk, doing some clever IT stuff.'
  819. act 'Approach him': gt 'pavShared_nd', 'nd'
  820. end
  821. if servitudeLvl >= 1 and nd_cleaned = 0:
  822. if poroshok >= 1:
  823. act 'Clean the room':nd_cleaned = 1 & gt 'pavSharedApt', 'cleanForGuys'
  824. else
  825. 'You don''t have enough laundry detergent to clean the room'
  826. end
  827. end
  828. act 'Leave':gt 'pavSharedApt', 'start'
  829. end
  830. if $ARGS[0] = 'gpRoom':
  831. $menu_loc = 'pavSharedApt'
  832. $menu_arg = 'gpRoom'
  833. menu_off = 0
  834. $loc = 'pavSharedApt'
  835. $metka = 'gpRoom'
  836. minut += 2
  837. '<center><h3><font color=#<<$gp_font>>><<$gp_name>>''s room</font></h3></center>'
  838. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/gp/room.jpg"></center>'
  839. ''
  840. 'Messy room. Clothes everywhere.'
  841. if hour >= gp_wakes and hour < gp_leaves:
  842. '<<$gp_name>> is already awake, getting ready to leave.'
  843. act 'Approach him': gt 'pavShared_gp', 'gp'
  844. elseif hour >= gp_leaves and hour < gp_comes:
  845. '<<$gp_name>> is not here.'
  846. elseif hour >= gp_comes and hour < gp_sleeps:
  847. '<<$gp_name>> is currently on his bed, listing through some magazines.'
  848. act 'Approach him': gt 'pavShared_gp', 'gp'
  849. elseif hour >= gp_sleeps or hour < gp_wakes:
  850. '<<$gp_name>> is sleeping in his bed.'
  851. end
  852. if servitudeLvl >= 1 and gp_cleaned = 0:
  853. if poroshok >= 1:
  854. act 'Clean the room':gp_cleaned = 1 & gt 'pavSharedApt', 'cleanForGuys'
  855. else
  856. 'You don''t have enough laundry detergent to clean the room'
  857. end
  858. end
  859. act 'Leave':gt 'pavSharedApt', 'start'
  860. end
  861. if $ARGS[0] = 'spRoom':
  862. $menu_loc = 'pavSharedApt'
  863. $menu_arg = 'spRoom'
  864. menu_off = 0
  865. $loc = 'pavSharedApt'
  866. $metka = 'spRoom'
  867. minut += 2
  868. '<center><h3><font color=#<<$sp_font>>><<$sp_name>>''s room</font></h3></center>'
  869. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/sp/room.jpg"></center>'
  870. ''
  871. 'Tidy room full of sporting stuff like dresses, equipment and trophys. On the walls hang several posters of famous sport guys.'
  872. if hour >= sp_wakes and hour < sp_leaves:
  873. '<<$sp_name>> is already awake, packing his bags to leave.'
  874. act 'Approach him': gt 'pavShared_sp', 'sp'
  875. elseif hour >= sp_leaves and hour < sp_comes:
  876. '<<$sp_name>> is not here.'
  877. elseif hour >= sp_comes and hour < sp_sleeps:
  878. doesStuff = rand (0, 100)
  879. if doesStuff < 50:'<<$sp_name>> is currently on his bed, listing through sport magazines.'
  880. if doesStuff >= 50:'<<$sp_name>> is working out on the floor.'
  881. act 'Approach him': gt 'pavShared_sp', 'sp'
  882. elseif hour >= sp_sleeps or hour < sp_wakes:
  883. '<<$sp_name>> is sleeping in his bed.'
  884. end
  885. if servitudeLvl >= 1 and sp_cleaned = 0:
  886. if poroshok >= 1:
  887. act 'Clean the room':sp_cleaned = 1 & gt 'pavSharedApt', 'cleanForGuys'
  888. else
  889. 'You don''t have enough laundry detergent to clean the room'
  890. end
  891. end
  892. act 'Leave':gt 'pavSharedApt', 'start'
  893. end
  894. --- pavSharedApt ---------------------------------