1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # swampspring
- $loc = 'swampspring'
- $metka = ''
- $menu_loc = 'swamp_yard'
- $menu_arg = ''
- menu_off = 0
- $location_type = 'secluded'
- gs 'gadukino_event', 'sound'
- gs 'stat'
- '<center><B>Spring</B></center>'
- if month >= 4 and month <= 10:
- if hour >= 6 and hour < 22:
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring.jpg"></center>'
- else
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_night.jpg"></center>'
- end
- else
- if hour >= 8 and hour < 18:
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter.jpg"></center>'
- else
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter_night.jpg"></center>'
- end
- end
- *nl
- 'You''ve come across a natural spring with pure natural water.'
- act 'Go back to the hut':minut += 5 & gt 'swamp_yard'
- if pcs_hydra < 150:
- act 'Drink the water':
- *clr & cla
- minut += 5
- pcs_breath = 0
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hands.jpg"></center>'
- 'You take a sip of the spring water.'
- if pcs_hydra >= 100:
- pcs_hydra += 25
- else
- pcs_hydra += 50
- end
- cumspclnt = 2
- gs 'cum_cleanup'
- gs 'stat'
- act 'Finish':gt 'swampspring'
- end
- end
- if bucket < 10:
- act 'Collect water in a bucket':
- *clr & cla
- minut += 10
- bucket += 10
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/vedro.jpg"></center>'
- 'You fill the bucket with water.'
- act 'Finish':gt 'swampspring'
- end
- end
- --- swampspring ---------------------------------
|