Ravenger6660
Active Member
- Sep 14, 2017
- 879
- 1,038
- 372
For calling up other scenes there is the command.Is there a way to call other scenes from an existing scene? Or for that matter, calling other actions from an existing scene? I know how to do it via action files, but I want something where the player is given a menu and can choose which scene to start. Think similar to the "head_outdoor.lpscene", only instead of merely overwriting locations, it starts different scenes/actions.
Actor.passOn() //for passing a single Permanent actor from one scene to another.
followUp(Scene_Name_Here) //Go to named scene when this scene finishes.
There is no way to call for an action, like "sleep.lpaction".
This command makes you character move to a "nearby" building, though I find it unreliable for finding a close location.
Loc = findNearbyBuilding(home)
Loc = findNearbyBuilding(bar)
moveTo(Loc)
My house party stuff from my mods is good example to look at for study.
Last edited:
