city_island.qsrc 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # city_island
  2. $loc_arg = ''
  3. $loc = 'city_island'
  4. $location_type = 'public_outdoors'
  5. $menu_loc = 'city_island'
  6. $menu_arg = ''
  7. menu_off = 0
  8. CLOSE ALL
  9. if sound = 0:
  10. if month >=11 and month <= 12 or month >=1 and month <=3:
  11. if hour >= 8 and hour <= 23: PLAY 'sound/street_noise_siren.mp3',30 & PLAY 'sound/street.mp3',30 & PLAY 'sound/street7.mp3',30 & PLAY 'sound/zima.mp3',30
  12. if hour >= 0 and hour <= 7: PLAY 'sound/street_noise_siren.mp3',30 & PLAY 'sound/street_night.mp3',30 & PLAY 'sound/zima.mp3',30
  13. else
  14. if hour >= 8 and hour <= 23: PLAY 'sound/street_noise_siren.mp3',30 & PLAY 'sound/street.mp3',30 & PLAY 'sound/street7.mp3',30 & PLAY 'sound/street_leto.mp3',30
  15. if hour >= 0 and hour <= 7: PLAY 'sound/street_noise_siren.mp3',30 & PLAY 'sound/street_night_leto.mp3' & PLAY 'sound/street_night.mp3',30
  16. end
  17. end
  18. clr
  19. gs 'stat'
  20. '<center><h2>St. Petersburg</h2></center>'
  21. '<center><b>Vasilyevsky Island</b></center>'
  22. if month >= 11 or month <= 3:
  23. if hour >= 8 and hour <= 21:
  24. '<center><img <<$set_imgh>> src="images/locations/city/island/islandw.jpg"></center>'
  25. else
  26. '<center><img <<$set_imgh>> src="images/locations/city/island/islandwn.jpg"></center>'
  27. end
  28. else
  29. if hour >= 8 and hour <= 21:
  30. '<center><img <<$set_imgh>> src="images/locations/city/island/island.jpg"></center>'
  31. else
  32. '<center><img <<$set_imgh>> src="images/locations/city/island/islandn.jpg"></center>'
  33. end
  34. end
  35. 'The University area of the city, the University, shops, clubs and the like that cater to the college kids dominate this area of the city. There is only three bridges onto and off the island, plus the metro line.'
  36. !call random events from [street_events], and display them before show location.
  37. gs'street_event','city_island' & if streetrand = -1:exit
  38. if student > 0:act '<b>GO HOME</b> (University dorm)':gt 'dorm', 'start'
  39. if car > 0 and cardrive = 25:'In the parking stands your <a href="exec:GS ''carF'', ''start''"><<$car>></a>.'
  40. act 'Wait':gs 'obj_din', 'wait'
  41. gs 'taxi'
  42. if hour >= 8 and hour <= 22:'You can see the <a href="exec:$loc = ''city_island'' & minut += 1 & gt ''kiosk'', ''start''">kiosk</a> selling cigarettes and magazines.'
  43. if hour >= 8 and hour <= 22:'You can see the <a href="exec:gt ''dolls'', ''start''">Patch Work Dolls</a> is a clothing store that caters to Alternative styles, like gothic, punk, skater, and the like.'
  44. if hour >= 4 and hour <= 23:'The <a href="exec:minut += 5 & gt ''metro'', ''start''">Metro</a> Station is within a 5 minute walk from here.'
  45. if week < 6 and hour >= 7:'At the <a href="exec:gt ''univer'', ''start''">University</a> where you can earn your bachelors degree.'
  46. if student > 0 or (hour >= 6 and hour <= 23):'The <a href="exec:gt ''dorm'', ''start''">University dorms</a> offers small, but cheap, living space, for university students.'
  47. --- city_island ---------------------------------