island.qsrc 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # island
  2. !!new island main page
  3. $metka = ''
  4. $loc = 'island'
  5. $location_type = 'public_outdoors'
  6. CLOSE ALL
  7. if sound = 0:
  8. if month >=11 and month <= 12 or month >=1 and month <=3:
  9. 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
  10. if hour >= 0 and hour <= 7: PLAY 'sound/street_noise_siren.mp3',30 & PLAY 'sound/street_night.mp3',30 & PLAY 'sound/zima.mp3',30
  11. else
  12. 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
  13. 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
  14. end
  15. end
  16. clr
  17. gs 'stat'
  18. '<center><h2>St. Petersburg</h2></center>'
  19. '<center><b>Vasilyevsky Island</b></center>'
  20. if month >= 11 or month <= 3:
  21. if hour >= 8 and hour <= 21:
  22. '<center><img <<$set_imgh>> src="images/locations/city/island/islandw.jpg"></center>'
  23. else
  24. '<center><img <<$set_imgh>> src="images/locations/city/island/islandwn.jpg"></center>'
  25. end
  26. else
  27. if hour >= 8 and hour <= 21:
  28. '<center><img <<$set_imgh>> src="images/locations/city/island/island.jpg"></center>'
  29. else
  30. '<center><img <<$set_imgh>> src="images/locations/city/island/islandn.jpg"></center>'
  31. end
  32. end
  33. '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.'
  34. !call random events from [street_events], and display them before show location.
  35. gs'street_event','island' & if streetrand = -1:exit
  36. if student > 0:act '<b>GO HOME</b> (University dorm)':gt 'dorm', 'start'
  37. if car > 0 and cardrive = 25:'In the parking stands your <a href="exec:GS ''carF'', ''start''"><<$car>></a>.'
  38. act 'Wait':
  39. cla
  40. waiting = input ("How long would you like to wait? (Not more than 120 minutes)")
  41. if waiting <= 0 or waiting > 120:
  42. minut += 15
  43. elseif waiting > 0 and waiting <= 120:
  44. minut += waiting
  45. end
  46. act 'Take a look at the clock':gt curloc
  47. end
  48. gs 'taxi'
  49. if hour >= 8 and hour <= 22:'You can see the <a href="exec:$locM = ''island'' & minut += 1 & gt ''kiosk'', ''start''">kiosk</a> selling cigarettes and magazines.'
  50. 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.'
  51. if hour >= 4 and hour <= 23:'The <a href="exec:gt ''metro'', ''start''">Metro</a> Station is within a 5 minute walk from here.'
  52. if week < 6 and hour >= 7:'At the <a href="exec:gt ''univer'', ''start''">University</a> where you can earn your bachelors degree.'
  53. 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.'
  54. --- island ---------------------------------