[Condition] isAt
Posted: Sun Oct 31, 2021 1:29 am
Actor.isAt(work)
USE:
Check if the player is at a specific location. Frequently used to separate 'WHERE: home' cases of the player being at home and being at their significant other's home.
TYPE: Condition, non-Ref
RETURNS: bool
THEME: Location
COMPARE: isAtHome, isAtDatingHome
EXAMPLE:
USE:
Check if the player is at a specific location. Frequently used to separate 'WHERE: home' cases of the player being at home and being at their significant other's home.
TYPE: Condition, non-Ref
RETURNS: bool
THEME: Location
COMPARE: isAtHome, isAtDatingHome
EXAMPLE:
Code: Select all
If Actor.isAt(work)
"yes"
Else
"no"
Endif