1
0

gadroad.qsrc 2.1 KB

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