Page 1 of 1

[Command] favoriteHome

Posted: Fri Oct 29, 2021 9:03 pm
by Raddeck
Actor.favoriteHome(bool)


USE:
Add or remove this person's home as one of your favorites / shortcuts


TYPE: Command, Reference
RETURNS: /
THEME: Relationships
COMPARE:


EXAMPLE:

Code: Select all

If 1
    "<Actor.name> no longer lives with me and has found another place to live."
    Actor.setLivingWithPlayer(false)
    Actor.favoriteHome()
ElseIf 2
    "<Actor.name> moved out of <Actor.his_or_her> current place and moved in with me."
    Actor.favoriteHome(false)
    Actor.setLivingWithPlayer(true)
EndIf