city_suburbs.qsrc 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 hour >= 4 and hour <= 23:'The <a href="exec: minut += 5 & gt ''metro'', ''start''">Metro</a> station is only a short walk from here.'
  13. if BDSMClub = 1 or BDSMmeet > 0:
  14. act 'BDSM-club':gt'BDSM_Club','start'
  15. end
  16. if home_owned[5] = 0:
  17. 'There is a vacant piece of land for sale where a large house could be constructed.'
  18. act 'Visit the land for sale': minut += 10 & gt 'youplace'
  19. elseif home_owned[5] < 3:
  20. 'You mansion is partially built near here.'
  21. act 'Visit your mansion': minut += 10 & gt 'youplace'
  22. else
  23. 'One of the most impressive buildings is your newly built mansion.'
  24. act 'Visit your mansion': gt 'youplace'
  25. end
  26. act 'View the insane asylum': minut += 2 & gt 'city_suburbs', 'ps1'
  27. act 'View the creepy old building': minut += 2 & gt 'city_suburbs', 'ps2'
  28. act 'Go to the main road':nroad = 1 & minut += 15 & gt 'road'
  29. if AlexandriaQW = 6:
  30. gs 'willpower', 'misc', 'self', 'easy'
  31. if will_cost <= pcs_willpwr:
  32. act 'Look for Alexandria''s direction (<<will_cost>> Willpower)':
  33. gs 'willpower', 'pay', 'easy'
  34. gt'alexandriaEv','interview1'
  35. end
  36. else
  37. 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>'
  38. end
  39. end
  40. end
  41. if $ARGS[0]='ps1':
  42. cla
  43. *clr
  44. $menu_loc = 'city_suburbs'
  45. $menu_arg = 'ps1'
  46. menu_off = 0
  47. gs'stat'
  48. '<center><H4>Insane asylum<H4></center>'
  49. 'The inscription on the sign by the road reads: "Closed to the public".'
  50. if psiklik = 0:'<center><img <<$set_imgh>> src="images/locations/city/suburb/asylum0.jpg" ></center>'
  51. if psiklik = 1:'<center><img <<$set_imgh>> src="images/locations/city/suburb/asylum1.jpg" ></center>'
  52. act 'Go': minut += 2 & gt'city_suburbs','start'
  53. end
  54. if $ARGS[0]='ps2':
  55. cla
  56. *clr
  57. $menu_loc = 'city_suburbs'
  58. $menu_arg = 'ps2'
  59. menu_off = 0
  60. gs'stat'
  61. '<center><H4>An old abandoned building<H4></center>'
  62. '<center><img <<$set_imgh>> src="images/locations/city/suburb/abandoned.jpg" ></center>'
  63. 'An abandoned building that spoils the local communities appearance and intimidates local residents.'
  64. act 'Go': minut += 2 & gt'city_suburbs','start'
  65. end
  66. --- city_suburbs ---------------------------------