VolkovHome.qsrc 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # VolkovHome
  2. if $ARGS[0] = 'Niko Bedroom':
  3. cls
  4. $loc_arg = 'Niko Bedroom'
  5. $loc = 'VolkovHome'
  6. minut += 5
  7. $location_type = 'private'
  8. $locclass = 'bedr'
  9. $menu_loc = 'VolkovHome'
  10. $menu_arg = 'Niko Bedroom'
  11. menu_off = 0
  12. gs'stat'
  13. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovHome/Rooms/Niko/bedroom.jpg"></center>'
  14. 'Niko''s room is very messy with two lamps, a bed, and various electronics scattered around.'
  15. act 'Leave bedroom':gt 'VolkovHome', 'Hallway 2'
  16. end
  17. if $ARGS[0] = 'Hallway 2':
  18. cls
  19. $loc_arg = 'Niko Bedroom'
  20. $loc = 'VolkovHome'
  21. minut += 5
  22. $location_type = 'private'
  23. killvar '$locclass'
  24. $menu_loc = 'VolkovHome'
  25. $menu_arg = 'Niko Bedroom'
  26. menu_off = 0
  27. gs'stat'
  28. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovHome/Rooms/Hallway2.jpg"></center>'
  29. if NikoEv = 18:
  30. 'This is the second floor hallway where the bathroom, Niko''s room and Yurik''s room are located.'
  31. else
  32. 'This is the second floor hallway where the <a href="exec:gt ''VolkovHome'', ''Bathroom''">bathroom</a>, <a href="exec:gt ''VolkovHome'', ''Niko Bedroom''">Niko''s room</a> and <a href="exec:gt ''VolkovHome'', ''Yurik Bedroom''">Yurik''s room</a> are located.'
  33. end
  34. act 'Head downstairs':gt 'NikoEv2', 'Yurik BJ'
  35. end
  36. if $ARGS[0] = 'Bathroom':
  37. cls
  38. $loc_arg = 'Bathroom'
  39. $loc = 'NikoDates'
  40. $locM_arg = 'Bathroom'
  41. $locM = 'NikoDates'
  42. $location_type = 'bathroom'
  43. minut += 5
  44. $menu_loc = 'VolkovHome'
  45. $menu_arg = 'Bathroom'
  46. menu_off = 0
  47. gs'stat'
  48. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovHome/Rooms/bathroom.jpg"></center>'
  49. 'This bathroom seems rather clean and has two towels, two bathrobes, a sink, a toilet, a <a href="exec:gt ''mirror'', ''start''">mirror</a>, and a bathtub.'
  50. act 'Quick wash (0:10)':gt 'NikoDates', 'Quick Wash'
  51. act 'Leave bathroom':
  52. if NikoEv = 5:
  53. gt 'NikoDates', 'Yurik Intro'
  54. elseif NikoEv = 11:
  55. gt 'NikoEv2', 'Reward'
  56. end
  57. end
  58. end
  59. if $ARGS[0] = 'Quick Wash':
  60. cls
  61. minut += 10
  62. cumspclnt = 1
  63. gs 'cum_cleanup'
  64. if pcs_sweat < 30:
  65. pcs_sweat = 15 + rand(0,4)
  66. else
  67. pcs_sweat -= 10 + rand(0,4)
  68. end
  69. gs'stat'
  70. '<center><h4><font color="blue">Bathroom</font></h4></center>'
  71. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/Restroom/facecleanse.jpg"></center>'
  72. 'You grab a few paper towels then approach the sink to clean yourself as thoroughly as possible. You take a few seconds to enjoy a splash of warm water on your face, leaving you feeling refreshed as you finish up and walk away from the sink.'
  73. act 'Dry off':
  74. if NikoEv = 5:
  75. gt 'NikoDates', 'Yurik Intro'
  76. elseif NikoEv = 11:
  77. gt 'NikoEv2', 'Reward'
  78. end
  79. end
  80. end
  81. --- VolkovHome ---------------------------------