Page 1 of 1

[Condition] isAt

Posted: Sun Oct 31, 2021 1:29 am
by Raddeck
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:

Code: Select all

    If Actor.isAt(work)
        "yes"
    Else
        "no"
    Endif