gadroad.qsrc 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # gadroad
  2. $location_type = 'secluded'
  3. $metka = ''
  4. $loc = 'gadroad'
  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 <<$set_imgh>> src="images/locations/gadukino/village/gadroad.jpg"></center>'
  13. else
  14. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadroad_night.jpg"></center>'
  15. end
  16. else
  17. if hour >= 8 and hour < 18:
  18. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadroad_winter.jpg"></center>'
  19. else
  20. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/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 'Go into the woods':minut += 30 & gt'gadforest','1'
  26. if $clothingworntype = 'exercise' and $shoeworntype = 'trainers' and hour >= 6 and hour < 22 and daybegskver ! daystart:
  27. act 'Go for a run (1:00)':
  28. cls
  29. minut += 60
  30. fat -= RAND(5,15)
  31. run_exp += RAND(3,6)
  32. pcs_sweat += 20
  33. daybegskver = daystart
  34. gs'stat'
  35. !gs'time'
  36. if month <= 3 or month >= 11:
  37. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadbeg4.jpg"></center>'
  38. elseif month=9 or month=10 or month=4 or month=5:
  39. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadbeg3.jpg"></center>'
  40. else
  41. if musle >= salo:
  42. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadbeg1.jpg"></center>'
  43. else
  44. '<center><img <<$set_imgh>> src="images/locations/gadukino/village/gadbeg2.jpg"></center>'
  45. end
  46. end
  47. 'You run for an hour enjoying the scenery.'
  48. act 'Further':gt'gadroad'
  49. end
  50. end
  51. act 'Go to Gadukino':minut += 20 & gt'gadukino'
  52. --- gadroad ---------------------------------