gadroad 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # gadroad
  2. $location_type = 'secluded'
  3. $metka = $ARGS[0]
  4. $loc = $CURLOC
  5. gs 'gadukino_event', 'sound'
  6. clr
  7. gs'stat'
  8. !gs'time'
  9. '<center><H4>Forest road</H4></center>'
  10. if month >= 4 and month <= 10:
  11. if hour >= 6 and hour < 22:
  12. '<center><img src="images/qwest/gadukino/gadroad/gadroad.jpg"></center>'
  13. else
  14. '<center><img src="images/qwest/gadukino/gadroad/gadroad_night.jpg"></center>'
  15. end
  16. else
  17. if hour >= 8 and hour < 18:
  18. '<center><img src="images/qwest/gadukino/gadroad/gadroad_winter.jpg"></center>'
  19. else
  20. '<center><img src="images/qwest/gadukino/gadroad/gadroad_winter_night.jpg"></center>'
  21. end
  22. end
  23. 'A dirt road leading to the forest. You are surrounded by grainfields where the grains appear reaching all the way to the heavens.'
  24. act 'Take a detour to the field':minut += 10 & gt'gadfield','field'
  25. act 'Enter the woods':minut += 30 & gt'gadforest','1'
  26. if $clothingworntype = 'exercise' and hour >= 6 and hour < 22 and daybegskver ! daystart:
  27. act 'Go for a run (1:00)':
  28. cls
  29. minut += 60
  30. if salo > 3:salo -= RAND(1,3)
  31. fat -= RAND(5,15)
  32. run_exp += RAND(3,6)
  33. pcs_sweat += 20
  34. daybegskver = daystart
  35. gs'stat'
  36. !gs'time'
  37. if month <= 3 or month >= 11:
  38. '<center><img src="images/qwest/gadukino/gadroad/gadbeg4.jpg"></center>'
  39. elseif month=9 or month=10 or month=4 or month=5:
  40. '<center><img src="images/qwest/gadukino/gadroad/gadbeg3.jpg"></center>'
  41. else
  42. if musle >= salo:
  43. '<center><img src="images/qwest/gadukino/gadroad/gadbeg1.jpg"></center>'
  44. else
  45. '<center><img src="images/qwest/gadukino/gadroad/gadbeg2.jpg"></center>'
  46. end
  47. end
  48. 'You run for an hour enjoying the scenery.'
  49. act 'Further':gt'gadroad'
  50. end
  51. end
  52. act '<b>Return to the village</b>':minut += 20 & gt'gadukino'
  53. --- gadroad ---------------------------------