12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # VolkovHome
- if $ARGS[0] = 'Niko Bedroom':
- cls
- $metka = 'Niko Bedroom'
- $loc = 'VolkovHome'
- minut += 5
- gs'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/niko/bedroom.jpg"></center>'
- 'Niko''s room is very messy with two lamps, a bed, and various electronics scattered around.'
- act 'Leave bedroom':gt 'VolkovHome', 'Hallway 2'
- end
- if $ARGS[0] = 'Hallway 2':
- cls
- $metka = 'Niko Bedroom'
- $loc = 'VolkovHome'
- minut += 5
- gs'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/hallway2.jpg"></center>'
- if NikoEv = 18:
- 'This is the second floor hallway where the bathroom, Niko''s room and Yurik''s room is located.'
- else
- '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.'
- end
- act 'Head downstairs':gt 'NikoEv2', 'Yurik BJ'
- end
- if $ARGS[0] = 'Bathroom':
- cls
- $metka = 'Bathroom'
- $loc = 'NikoDates'
- $metkaM = 'Bathroom'
- $locM = 'NikoDates'
- $location_type = 'bathroom'
- minut += 5
- gs'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/volkovhome/rooms/bathroom.jpg"></center>'
- '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.'
- act 'Quick wash (0:10)':gt 'NikoDates', 'Quick Wash'
- act 'Leave bathroom':
- if NikoEv = 5:
- gt 'NikoDates', 'Yurik Intro'
- elseif NikoEv = 11:
- gt 'NikoEv2', 'Reward'
- end
- end
- end
- if $ARGS[0] = 'Quick Wash':
- cls
- minut += 10
- cumspclnt = 1
- gs 'cum_cleanup'
- if pcs_sweat < 30:
- pcs_sweat = 15 + rand(0,4)
- else
- pcs_sweat -= 10 + rand(0,4)
- end
- gs'stat'
- '<center><h4><font color="blue">Bathroom</font></h4></center>'
- '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/fedor/fedorev2/movies/restroom/facecleanse.jpg"></center>'
- '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.'
- act 'Dry off':
- if NikoEv = 5:
- gt 'NikoDates', 'Yurik Intro'
- elseif NikoEv = 11:
- gt 'NikoEv2', 'Reward'
- end
- end
- end
- --- VolkovHome ---------------------------------
|