1
0

city_canal.qsrc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # city_canal
  2. !! Date Created: 14th May, 2024
  3. !! Modified date:
  4. !! Version: .01 - initial release
  5. !! Author: Hooded Silence
  6. !!
  7. !! St Petersburg Canals
  8. !!
  9. !! Sub-location in St Petersburg for dates, boat rides and other events
  10. if $args[0] = 'init':
  11. img_sel = rand(1,2)
  12. if daystage = 2 or daystage = 3:
  13. $setloc['StageImage'] = 'city_canals_day_<<img_sel>>'
  14. else
  15. $setloc['StageImage'] = 'city_canals_night_<<img_sel>>'
  16. end
  17. killvar img_sel
  18. end
  19. if $args[0] = 'content':
  20. !! Main location content.
  21. *clr & cla
  22. $setloc['StageTitle'] = 'St Petersburg Canals'
  23. gs 'city_canal', 'init'
  24. $location_type = 'public_outdoors'
  25. gs 'shortgs', 'setloc', 'city_canals', $ARGS[0]
  26. gs 'stat'
  27. gs 'core_library', 'stage_title'
  28. 'You stand gazing at the famous Canals of the North, the hustle and bustle of people on the streets against a backdrop of elegant Russian buildings. You see boatmen plying their trade on the waters below and working on their tour boats.'
  29. !! Navigation
  30. act 'Head to the Arts district': msg 'not implented' & gt 'city_canal', 'content'
  31. act 'Take a boat trip (100)': msg 'not implented' & gt 'city_canal', 'content'
  32. act 'Take the boats to Vasily Island (50)': msg 'not implented' & gt 'city_canal', 'content'
  33. end
  34. if $args[0] = 'dates':
  35. !! For all date related activities.
  36. end
  37. --- city_canal ---------------------------------