VolkovHome.qsrc 2.4 KB

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