gdktoilet.tw 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. :: gdktoilet
  2. <<set $here = 'gdktoilet'>>
  3. <<set $ARGS = $location_var[$here]>>
  4. <<set $location_type = 'public_indoors'>>
  5. <<set $menu_loc = 'gdktoilet'>>
  6. <<set $loc = 'gdktoilet'>>
  7. <<if $location_var[$here][0] == 'start'>>
  8. <<set $menu_arg = 'start'>>
  9. <<set $loc_arg = 'start'>>
  10. <<set $locclass to null>>
  11. <<set $menu_off = 0>>
  12. <<set $time.minutes += 1>>
  13. <<set $ghnow = 0>>
  14. <h2>Community Center - Restrooms</h2>
  15. <<image "locations/pavlovsk/community/bathroom/bathroom_entrance.jpg">>
  16. There is a <<link "drinking fountain">><<gt 'food' 'watercooler'>><</link>> near the doors to the bathrooms.
  17. <<act 'Go outside'>>
  18. <<gt 'pav_commcenter'>>
  19. <</act>>
  20. <<if $time.hour >= 8 and $time.hour <= 23>>
  21. <<gs 'willpower' 'exhib' 'self'>>
  22. <<if $will_cost <= $pc.willpower>>
  23. <<actCLA 'Enter the men`s restroom (will_cost Willpower)'>>
  24. <<gs 'willpower' 'exhib' 'self'>>
  25. <<gs 'willpower' 'pay' 'self'>>
  26. <<gt 'gdktoilet_mens' 'mens_entrance_events'>>
  27. <</actCLA>>
  28. <<else>>
  29. <<actCLA `'Enter the men""s restroom ('+$will_cost+')'`>><font color=red><br/>You don`t have enough willpower to use this action.</font><</actCLA>>
  30. <</if>>
  31. <<act 'Enter the women`s restroom'>>
  32. <<gt 'gdktoilet_womens' 'womens'>>
  33. <</act>>
  34. <</if>>
  35. <<if $time.hour >= 20 and $time.hour <= 23 and $time.weekday >= 5 and $time.weekday < 7>>
  36. <<if getvar("$music_on") == 1>>
  37. <<set $track_loop = 'sound/komb.mp3'>>
  38. <<set $volume = 50>>
  39. <<set $music_loop = 1>>
  40. <<link "Turn off the music">><<set $music_on = 0>> <<gt 'gdktoilet' 'start'>><</link>>
  41. <<else>>
  42. <<set $music_loop = 0>>
  43. <<link "Play music">><<set $music_on = 1>> <<gt 'gdktoilet' 'start'>><</link>>
  44. <</if>>
  45. <<if $gdkincum == $time.daystart and ($pc.cumAtLocation(6) == 0 and $pc.cumAtLocation(7) == 0) and $pc.cumAtLocation(11) == 0>>
  46. <<set $gdkincum = 0>>
  47. <</if>>
  48. <<if $gdkincum != $time.daystart>>
  49. <<if $pav_disco_in == $time.daystart>>
  50. <<act 'Return to the dance'>>
  51. <<gt 'pav_disco'>>
  52. <</act>>
  53. <<elseif $finances.cash >= 25>>
  54. <<actCLA 'Go to the dance (25 <b>₽</b>)'>>
  55. <<set $finances.cash -= 25>>
  56. <<set $time.minutes += 5>>
  57. <<gt 'pav_disco'>>
  58. <</actCLA>>
  59. <</if>>
  60. <<else>>
  61. <<if ($pc.cumAtLocation(6) == 1 or $pc.cumAtLocation(7) == 1) and $pc.cumAtLocation(11) == 1>>
  62. You should clean the cum off your face and clothes before heading back to the dance.
  63. <<elseif $pc.cumAtLocation(11) == 1>>
  64. You should clean the cum off your face before heading back to the dance.
  65. <<elseif $pc.cumAtLocation(6) == 1 or $pc.cumAtLocation(7) == 1>>
  66. You should clean the cum off your clothes before heading back to the dance.
  67. <</if>>
  68. <</if>>
  69. <<else>>
  70. <<set $music_loop = 0>>
  71. <</if>>
  72. <<if $time.hour >= 8 and $time.hour <= 18>>
  73. <<act 'Go to the library'>>
  74. <<gt 'pav_library'>>
  75. <</act>>
  76. <</if>>
  77. <<if $time.hour >= 12 and $time.hour <= 20>>
  78. <<act 'Go upstairs to the hobby clubs'>>
  79. <<gt 'pav_commclubs'>>
  80. <</act>>
  81. <</if>>
  82. <<if ($time.weekday < 6 and $time.hour >= 14 and $time.hour < 20) or ($time.weekday >= 6 and $time.hour >= 9 and $time.hour < 20)>>
  83. <<act 'Go to the gym'>>
  84. <<gt 'gdksport' 'start'>>
  85. <</act>>
  86. <</if>>
  87. <</if>>