swampspring.qsrc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # swampspring
  2. $loc = 'swampspring'
  3. $metka = ''
  4. $menu_loc = 'swamp_yard'
  5. $menu_arg = ''
  6. menu_off = 0
  7. $location_type = 'secluded'
  8. gs 'gadukino_event', 'sound'
  9. gs 'stat'
  10. '<center><B>Spring</B></center>'
  11. if month >= 4 and month <= 10:
  12. if hour >= 6 and hour < 22:
  13. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring.jpg"></center>'
  14. else
  15. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_night.jpg"></center>'
  16. end
  17. else
  18. if hour >= 8 and hour < 18:
  19. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter.jpg"></center>'
  20. else
  21. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter_night.jpg"></center>'
  22. end
  23. end
  24. *nl
  25. 'You''ve come across a natural spring with pure natural water.'
  26. act 'Go back to the hut':minut += 5 & gt 'swamp_yard', 'start'
  27. if pcs_hydra < 150:
  28. act 'Drink the water':
  29. *clr & cla
  30. minut += 5
  31. pcs_breath = 0
  32. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hands.jpg"></center>'
  33. 'You take a sip of the spring water.'
  34. if pcs_hydra >= 100:
  35. pcs_hydra += 25
  36. else
  37. pcs_hydra += 50
  38. end
  39. cumspclnt = 2
  40. gs 'cum_cleanup'
  41. gs 'stat'
  42. act 'Finish':gt 'swampspring'
  43. end
  44. end
  45. if bucket < 10:
  46. act 'Collect water in a bucket':
  47. *clr & cla
  48. minut += 10
  49. bucket += 10
  50. gs 'stat'
  51. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/vedro.jpg"></center>'
  52. 'You fill the bucket with water.'
  53. act 'Finish':gt 'swampspring'
  54. end
  55. end
  56. --- swampspring ---------------------------------