zaprF 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. # zaprF
  2. if $ARGS[0] = 'start':
  3. $metka = $ARGS[0]
  4. $loc = $CURLOC
  5. cla
  6. clr
  7. *clr
  8. minut += 5
  9. gs 'stat'
  10. '<center><b>Gas Station</b></center>'
  11. '<center><img src="images/locations/shared/gas/zapr.jpg"></center>'
  12. 'The local gas station, the way the cheap pumps work they will only let you fill the tank.'
  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. 'Cost of 1 liter of petrol 30 <b>₽</b>.'
  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:'On refueling costs your <a href="exec:GS ''carF'', ''start''"><<$car>></a>.'
  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 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 src="images/locations/shared/gas/zapr1.jpg"></center>'
  39. '<center><img src="images/locations/shared/gas/zapr1.jpg"></center>'
  40. 'You have filled a full tank and paid <<zprpay>> <b>₽</b>.'
  41. act 'Remove gun':gt 'zaprF', 'start'
  42. end
  43. else
  44. 'You do not have enough money at the gas station.'
  45. end
  46. end
  47. if car > 0:
  48. act 'Buy a canister of gasoline with up to 5 liters of 150 <b>₽</b>':
  49. cla
  50. kanistra += 1
  51. money -= 150
  52. 'You bought a canister of gasoline. (It is automatically added to the trunk)'
  53. act 'Remove gun':gt 'zaprF', 'start'
  54. end
  55. end
  56. act 'Leave':
  57. if cardrive = 6:
  58. gt 'nord'
  59. elseif cardrive = 21:
  60. gt 'pavCommercial'
  61. elseif litltown = 0:
  62. gt 'nord'
  63. elseif litltown = 1:
  64. gt 'pavCommercial'
  65. end
  66. end
  67. end
  68. if $ARGS[0] = 'toilet':
  69. CLOSE ALL
  70. cla
  71. *clr
  72. $locM = 'zaprF'
  73. $metka = 'toilet'
  74. $metkaM = 'toilet'
  75. $loc = 'zaprF'
  76. $location_type = 'bathroom'
  77. $gt1 = 'zaprF'
  78. $gt2 = 'toilet'
  79. minut += 2
  80. '<center><h4>Gas station toilet</h4></center>'
  81. '<center><img src="images/locations/shared/bathroom/toilet.jpg"></center>'
  82. 'You are in a dirty gas station toilet. At least it provides some privacy.'
  83. act 'Look in the mirror':
  84. cla
  85. gt 'portmirror', 'start'
  86. end
  87. if pcs_hairbsh = 0:
  88. act 'Brush your hair': gt 'portmirror', 'brush'
  89. end
  90. if spdirtyc > 0:
  91. act 'Wipe the cum off your clothes (0:10)':
  92. cla
  93. *clr
  94. cumspclnt = 6
  95. gs 'cum_cleanup'
  96. minut += 10
  97. '<center><img src="images/shared/sex/cum/frotsp.jpg"></center>'
  98. 'You spend ten minutes wiping and rinsing the cum stains out of your clothes. By the end, all that remain of them are some damp spots that should dry up in a few minutes.'
  99. act 'Continue':gt 'zaprF', 'toilet'
  100. end
  101. end
  102. dynamic $tampon
  103. dynamic $quickwash
  104. dynamic $basin
  105. act 'Leave the restroom':gt 'zaprF', 'start'
  106. end
  107. --- zaprF ---------------------------------