123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- # fuelstation
- if $ARGS[0] = 'start':
- $loc_arg = 'start'
- $loc = 'fuelstation'
- $menu_loc = 'fuelstation'
- $menu_arg = 'start'
- menu_off = 0
- $location_type = 'public_outdoors'
- cla & *clr
- gs 'stat'
- '<center><b>Gas Station</b></center>'
- if hour < 8 or hour > 21:
- '<center><img <<$set_imgh>> src="images/locations/shared/gas/gazprom_night.jpg"></center>'
- else
- '<center><img <<$set_imgh>> src="images/locations/shared/gas/gazprom_day.jpg"></center>'
- end
- 'The local gas station, the cheap pumps are limited in functionality and will always fill the tank up completely.'
- 'The petrol price is 30 <b>₽</b> per liter.'
- *nl
- 'When the weather is nice, girls will sometimes offer a car washing service for some tips. There''s no structure to it, so you could always try it.'
- act 'Leave':
- if $region = 'city':
- minut += 5
- gt 'city_industrial'
- elseif $region = 'pav':
- minut += 5
- gt 'pav_commercial'
- end
- end
- if temper < 10:
- 'It''s too cold to wash cars. You''re more likely to get ill than make money. Maybe try again when the weather is warmer?'
- elseif sunWeather = 0:
- 'You can''t wash cars if it''s raining outside! Maybe try again on a sunny day?'
- elseif hour < 8:
- 'It''s too early to wash cars.'
- elseif hour >= 21:
- 'It''s too late to wash cars.'
- else
- act 'Wash car windows (1:00)': gt 'fuelstation_carwash', 'start'
- end
- act 'Go to the toilet': gt 'fuelstation', 'toilet'
- if car > 0:
- if cardrive = 6 and $region = 'city': 'Your <a href="exec: gs ''carF'', ''start''"><<$car>></a> is parked here.'
- if cardrive = 21 and $region = 'pav': 'Your <a href="exec: gs ''carF'', ''start''"><<$car>></a> is parked here.'
- if kanistra < 5:
- act 'Buy a canister and fill it with 5 liters of gasoline (150 <b>₽</b>)':
- cla
- kanistra += 1
- money -= 150
- 'You buy a canister of gasoline. (It will automatically be put in the trunk of your car)'
- act 'Disengage from the pump': gt 'fuelstation', 'start'
- end
- end
- if benz < 50 and (cardrive = 6 or cardrive = 21):
- zprbenz = 50 - benz
- if zprbenz * 30 <= money:
- act 'Fill the tank with petrol':
- *clr & cla
- benz = 50
- zprpay = zprbenz * 30
- money -= zprpay
- ! WD: Uninitialised ~ 'pol'
- ! if pol > 0:'<center><img <<$set_imgh>> src="images/locations/shared/gas/zapr1.jpg"></center>'
- '<center><img <<$set_imgh>> src="images/locations/shared/gas/zapr1.jpg"></center>'
- 'You fill the tank and pay <<zprpay>> <b>₽</b>.'
- act 'Disengage from the pump': gt 'fuelstation', 'start'
- end
- else
- 'You do not have enough money to refuel your car.'
- end
- end
- end
- end
- if $ARGS[0] = 'toilet':
- CLOSE ALL
- gs 'themes', 'indoors'
- cla & *clr
- $loc_arg = 'toilet'
- $loc = 'fuelstation'
- $location_type = 'bathroom'
- $locM = 'fuelstation'
- $locM_arg = 'toilet'
- minut += 2
- $menu_loc = 'fuelstation'
- $menu_arg = 'toilet'
- menu_off = 0
- gs 'stat'
- '<center><h4>Gas station toilet</h4></center>'
- '<center><img <<$set_imgh>> src="images/locations/shared/bathroom/toilet.jpg"></center>'
- 'You are in a dirty gas station toilet. At least it provides some privacy.'
- act 'Leave the restroom': gt 'fuelstation', 'start'
- act 'Look in the mirror': gt 'mirror', 'start'
- if pcs_hairbsh < 1: act 'Brush your hair': gt 'mirror', 'brush'
- dynamic $tampon
- dynamic $quickwash
- dynamic $basin
- dynamic $publicpan
- gs 'din_van', 'pblc_pee'
- end
- --- fuelstation ---------------------------------
|