12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # home_family_init
- !! Date Created: 31st March, 2024
- !! Author: Myles
- !!
- !! Version: .01 - initial release
- !!
- !! Desc: Initialisation file for family residence in Pavlosk, default functions, tasks and misc for all internal rooms.
- !! Related files:
- !! Internal rooms to location: BedrPar, BedrPar2, korrPar, kuhrPar, sitrPar, vanrPar
- !! External links to location: pav_residential, pod_ezd
- if $ARGS[0] = '' or $ARGS[0] = 'init':
- !! Set up default image paths for npc and location:
- $default_img_path = 'locations/pavlovsk/resident/apartment/home'
- $mother_img_path = 'images/characters/pavlovsk/resident/mom/'
- !! clear and initialise location for content:
- *clr & cla
- CLOSE ALL
- music_loop = 0
- !! enable sidebar menu for locations
- menu_off = 0
- !! set internal location type
- $location_type = 'private'
- gs 'themes', 'indoors'
- !! Update all initial stats for location
- gs 'stat'
- !! Display the header text and banner image
- gs 'core_library', 'stage_title'
- !! Now track quests, NPCs and any pets:
- gs 'home_family_init', 'trackers'
- end
- !! Pull Quest trackers
- if $ARGS[0] = 'trackers':
- !! Pull the family tracker
- gs 'family_schedule'
- !! TODO: Finish pet tracker.
- !! Pull pet schedule:
- !! gs 'pet_init', 'init', 'mc'
- !! Init ballet career quest tracker
- gs 'core_library', 'init'
- end
- --- home_family_init ---------------------------------
|