Page 1 of 1

[Condition] isFemale - isMale

Posted: Sun Oct 31, 2021 6:57 pm
by Raddeck
Actor.isMale() and Actor.isFemale()


USE:
isMale() = Check if the actor is male.
sFemale() = Check if the actor is female.


TYPE: Condition, Reference
RETURNS: bool
THEME: Gender
COMPARE: isDominantSex, isSameGender, isInterestedIn


EXAMPLE:

Code: Select all

    If John.isMale()
        "<John.name> is a dude!"
    Endif
Or to check is a female:

Code: Select all

    If Sally.isFemale()
        "<Sally.name> is a girl!"
    Endif
OTHER EXAMPLES:
If you do !Player.isMale() = Maybe a female or a trans
If you do !Player.isFemale() = Maybe a male or a trans
If you do Player.isMale() && !Player.isTrans() = you got a male no trans