[Condition] hadSex

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.hadSex()


USE:
Check if this actor has had sex with the player at any point in this playthrough


TYPE: Condition, Reference
RETURNS: bool
THEME: Sex
COMPARE: sex()


EXAMPLE:
In lpscene:

Code: Select all

If Actor.hadSex() || Random(40, 70) < Actor:perversion
    Raise = true
    Actor:: "Okay ... I could really do with the extra cash."
    Sex(Player, Actor)
    If HungerEnable > 0
        Player.modifyActorVar(rk_VB_Hunger, -1)
    EndIf
Else
    Raise = false
    Actor:: "Sorry, but I can't do that ..."
Endif

In lpaction:

Code: Select all

WHO: Actor = getTarget(); If !Actor.isCreature() && [Actor.hadSex() || Actor.isDating()]
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