Page 1 of 1

[Condition] isDating

Posted: Sun Oct 31, 2021 1:43 am
by Raddeck
Actor.isDating()


USE:
Check if the actor is in a relationship with the player.
Alternatively, if the Actor is Player then it checks whether the player is currently in a relationship at all.


TYPE: Condition, Reference
RETURNS: bool
THEME: Relationships
COMPARE: loseDating, setDating, getSpecific(Dating)


EXAMPLE:

Code: Select all

    If Player.isDating()
        "I'm dating someone ..."
        If John.isDating()
            "And <John.name> is my <John.boyfriend_or_girlfriend>."
        Else
            "But my significant other isn't <John.name>."
        Endif
    Endif