zaprF 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. # zaprF
  2. if $ARGS[0] = 'start':
  3. $metka = 'start'
  4. $loc = 'zaprF'
  5. $location_type = 'public_outdoors'
  6. cla
  7. *clr
  8. gs 'stat'
  9. '<center><b>Gas Station</b></center>'
  10. '<center><img <<$set_imgh>> src="images/locations/shared/gas/zapr.jpg"></center>'
  11. 'The local gas station, the cheap pumps are limited in functionality and will always fill the tank up completely.'
  12. *nl
  13. 'When the weather is nice sometimes girls will offer a car washing service for some tips, there''s no structure to it so you could always try it.'
  14. 'The petrol price is 30 <b>₽</b> per liter.'
  15. *nl
  16. if hour < 9:
  17. 'It''s too early to wash cars.'
  18. elseif hour > 19:
  19. 'It''s too late to wash cars.'
  20. else
  21. act 'Wash car windows (1:00)':gt 'zaprFWash', 'start'
  22. end
  23. act 'Go to the toilet':gt 'zaprF', 'toilet'
  24. if car > 0:
  25. if cardrive = 6 or cardrive = 21:'Your <a href="exec:GS ''carF'', ''start''"><<$car>></a> is parked here.'
  26. end
  27. zprbenz = 40 - benz
  28. if benz < 40 and car > 0 and cardrive = 6 or benz < 40 and car > 0 and cardrive = 21:
  29. zprbenz = 40 - benz
  30. if zprbenz * 30 <= money:
  31. act 'Fill the tank with petrol':
  32. cla
  33. *clr
  34. benz = 40
  35. zprpay = zprbenz * 30
  36. money -= zprpay
  37. ! WD: Uninitialised ~ 'pol'
  38. ! if pol > 0:'<center><img <<$set_imgh>> src="images/locations/shared/gas/zapr1.jpg"></center>'
  39. '<center><img <<$set_imgh>> src="images/locations/shared/gas/zapr1.jpg"></center>'
  40. 'You filled the tank and paid <<zprpay>> <b>₽</b>.'
  41. act 'Disengage from the pump':gt 'zaprF', 'start'
  42. end
  43. else
  44. 'You do not have enough money to refuel.'
  45. end
  46. end
  47. if car > 0:
  48. act 'Buy a canister able to contain up to 5 liters of gasoline for 150 <b>₽</b>':
  49. cla
  50. kanistra += 1
  51. money -= 150
  52. 'You bought a canister of gasoline. (It was automatically put in the trunk)'
  53. act 'Disengage from the pump':gt 'zaprF', 'start'
  54. end
  55. end
  56. act 'Leave':
  57. if cardrive = 6:
  58. gt 'nord'
  59. elseif cardrive = 21:
  60. minut += 5
  61. gt 'pavCommercial'
  62. elseif litltown = 0:
  63. gt 'nord'
  64. elseif litltown = 1:
  65. minut += 5
  66. gt 'pavCommercial'
  67. end
  68. end
  69. end
  70. if $ARGS[0] = 'toilet':
  71. CLOSE ALL
  72. if night_mode = 1:
  73. fcolor = rgb(255, 255, 255)
  74. bcolor = rgb(0, 0, 0)
  75. lcolor = rgb(106, 90, 205)
  76. else
  77. fcolor = rgb(0, 0, 0)
  78. bcolor = rgb(255, 255, 255)
  79. lcolor = rgb(106, 90, 205)
  80. end
  81. cla
  82. *clr
  83. $metka = 'toilet'
  84. $loc = 'zaprF'
  85. $location_type = 'bathroom'
  86. $locM = 'zaprF'
  87. $metkaM = 'toilet'
  88. minut += 2
  89. gs 'stat'
  90. '<center><h4>Gas station toilet</h4></center>'
  91. '<center><img <<$set_imgh>> src="images/locations/shared/bathroom/toilet.jpg"></center>'
  92. 'You are in a dirty gas station toilet. At least it provides some privacy.'
  93. act 'Look in the mirror': gt 'mirror', 'start'
  94. if pcs_hairbsh = 0: act 'Brush your hair': gt 'mirror', 'brush'
  95. if (cumloc[6] = 1 or cumloc[7] = 1):
  96. act 'Wipe the cum off your clothes (0:10)':
  97. cla
  98. *clr
  99. cumspclnt = 6
  100. gs 'cum_cleanup'
  101. minut += 10
  102. '<center><img <<$set_imgh>> src="images/shared/sex/cum/frotsp.jpg"></center>'
  103. 'You spend ten minutes wiping and rinsing the cum stains out of your clothes. In the end, all that remains of the stains are some damp spots that should dry up in a few minutes.'
  104. act 'Continue':gt 'zaprF', 'toilet'
  105. end
  106. end
  107. dynamic $tampon
  108. dynamic $quickwash
  109. dynamic $basin
  110. act 'Leave the restroom':gt 'zaprF', 'start'
  111. end
  112. --- zaprF ---------------------------------