VolkovHome 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # VolkovHome
  2. if $ARGS[0] = 'Niko Bedroom':
  3. cls
  4. $metka = 'Niko Bedroom'
  5. $loc = 'VolkovHome'
  6. $metkaM = 'Niko Bedroom'
  7. $locM = 'VolkovHome'
  8. minut += 5
  9. gs'stat'
  10. '<center><img src="images/locations/pavlovsk/resident/Volkovhome/rooms/niko/bedroom.jpg"></center>'
  11. 'Niko''s room is very messy with two lamps, a bed, and various electronics scattered around.'
  12. act 'Leave bedroom':gt 'VolkovHome', 'Hallway 2'
  13. end
  14. if $ARGS[0] = 'Hallway 2':
  15. cls
  16. $metka = 'Niko Bedroom'
  17. $loc = 'VolkovHome'
  18. $metkaM = 'Niko Bedroom'
  19. $locM = 'VolkovHome'
  20. minut += 5
  21. gs'stat'
  22. '<center><img src="images/locations/pavlovsk/resident/Volkovhome/rooms/hallway2.jpg"></center>'
  23. if NikoEv = 18:
  24. 'This is the second floor hallway where the bathroom, Niko''s room and Yurik''s room is located.'
  25. else
  26. '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> is located.'
  27. end
  28. act 'Head downstairs':gt 'NikoEv2', 'Yurik BJ'
  29. end
  30. if $ARGS[0] = 'Bathroom':
  31. cls
  32. $metka = 'Bathroom'
  33. $loc = 'NikoDates'
  34. $metkaM = 'Bathroom'
  35. $locM = 'NikoDates'
  36. $location_type = 'bathroom'
  37. minut += 5
  38. gs'stat'
  39. '<center><img src="images/locations/pavlovsk/resident/Volkovhome/rooms/bathroom.jpg"></center>'
  40. '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.'
  41. act 'Quick wash (0:10)':gt 'NikoDates', 'Quick Wash'
  42. act 'Leave bathroom':
  43. if NikoEv = 5:
  44. gt 'NikoDates', 'Yurik Intro'
  45. elseif NikoEv 11:
  46. gt 'NikoEv2', 'Reward'
  47. end
  48. end
  49. end
  50. if $ARGS[0] = 'Quick Wash':
  51. cls
  52. minut += 10
  53. cumspclnt = 1
  54. gs 'cum_cleanup'
  55. if pcs_sweat < 30:
  56. pcs_sweat = 15 + rand(0,4)
  57. else
  58. pcs_sweat -= 10 + rand(0,4)
  59. end
  60. gs'stat'
  61. '<center><h4><font color="blue">Bathroom</font></h4></center>'
  62. '<center><img src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
  63. 'You grab a few paper towels then approach the sink to clean yourself, as thoroughly, as possible while taking 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.'
  64. act 'Dry off':
  65. if NikoEv = 5:
  66. gt 'NikoDates', 'Yurik Intro'
  67. elseif NikoEv 11:
  68. gt 'NikoEv2', 'Reward'
  69. end
  70. end
  71. end
  72. --- VolkovHome ---------------------------------