[Condition] isFemale - isMale

Post Reply
User avatar
Raddeck
LP Manager
Reactions: 1
Posts: 508
Joined: Sat Oct 16, 2021 6:22 pm
Location: LpWorld
Contact:

Post 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
Like my work? Buy me a coffee or support me on Patreon to keep it coming. :ugeek:
-Don't PM me for support-
Top
Post Reply