city_suburbs.qsrc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # city_suburbs
  2. $location_type = 'public_outdoors'
  3. if $ARGS[0]='start':
  4. $loc = 'city_suburbs'
  5. $loc_arg = 'start'
  6. $menu_loc = 'city_suburbs'
  7. $menu_arg = 'start'
  8. menu_off = 0
  9. gs'stat'
  10. '<center><H4>Elite settlement<H4></center>'
  11. '<left><img <<$set_imgh>> src="images/locations/city/suburb/settlement.jpg" ></left>'
  12. if car > 0 and cardrive = 28:'Your <a href="exec:GS ''carF'', ''start''"><<$car>></a> stands on the street.'
  13. if hour >= 4 and hour <= 23:'The <a href="exec: minut += 20 & gt ''metro'', ''start''">Metro</a> station is a 20 minut walk from here.'
  14. gs 'taxi'
  15. if AlexandriaQW > 6:
  16. if hour > 7 and hour < 20:'You can visit <a href="exec: minut += 5 & gt ''AlexandriaHome'', ''intercom''">Aleksei''s home</a> if you want to see the cranky wizard.'
  17. end
  18. if BDSMClub = 1 or BDSMmeet > 0:
  19. act 'BDSM-club':gt'BDSM_Club','start'
  20. end
  21. if home_owned[5] = 0:
  22. 'There is a vacant piece of land for sale where a large house could be constructed.'
  23. act 'Visit the land for sale': minut += 10 & gt 'youplace'
  24. elseif home_owned[5] < 3:
  25. 'You mansion is partially built near here.'
  26. act 'Visit your mansion': minut += 10 & gt 'youplace'
  27. else
  28. 'One of the most impressive buildings is your newly built mansion.'
  29. act 'Visit your mansion': gt 'youplace'
  30. end
  31. act 'View the insane asylum': minut += 2 & gt 'city_suburbs', 'ps1'
  32. act 'View the creepy old building': minut += 2 & gt 'city_suburbs', 'ps2'
  33. act 'Go to the main road':nroad = 1 & minut += 15 & gt 'road'
  34. if AlexandriaQW = 6:
  35. gs 'willpower', 'misc', 'self', 'easy'
  36. if will_cost <= pcs_willpwr:
  37. act 'Look for Alexandria''s direction (<<will_cost>> Willpower)':
  38. gs 'willpower', 'pay', 'easy'
  39. gt'alexandriaEv','interview1'
  40. end
  41. else
  42. act 'Look for Alexandria''s direction (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  43. end
  44. end
  45. end
  46. if $ARGS[0]='ps1':
  47. cla
  48. *clr
  49. $menu_loc = 'city_suburbs'
  50. $menu_arg = 'ps1'
  51. menu_off = 0
  52. gs'stat'
  53. '<center><H4>Insane asylum<H4></center>'
  54. 'The inscription on the sign by the road reads: "Closed to the public".'
  55. if psiklik = 0:'<center><img <<$set_imgh>> src="images/locations/city/suburb/asylum0.jpg" ></center>'
  56. if psiklik = 1:'<center><img <<$set_imgh>> src="images/locations/city/suburb/asylum1.jpg" ></center>'
  57. act 'Go': minut += 2 & gt'city_suburbs','start'
  58. end
  59. if $ARGS[0]='ps2':
  60. cla
  61. *clr
  62. $menu_loc = 'city_suburbs'
  63. $menu_arg = 'ps2'
  64. menu_off = 0
  65. gs'stat'
  66. '<center><H4>An old abandoned building<H4></center>'
  67. '<center><img <<$set_imgh>> src="images/locations/city/suburb/abandoned.jpg" ></center>'
  68. 'An abandoned building that spoils the local communities appearance and intimidates local residents.'
  69. act 'Go': minut += 2 & gt'city_suburbs','start'
  70. end
  71. --- city_suburbs ---------------------------------