Ravenger6660

Active Member
Sep 14, 2017
841
977
start_relationship_Crazy.lpscene
You don't have permission to view the spoiler content. Log in or register now.
Likes = Companion.GetActorVar(tag_Deflowered)
Likes2 = Companion.GetActorVar(tag_Deflowerer)
"Actor" should be "Companion".

virgin_approaches
You don't have permission to view the spoiler content. Log in or register now.
Actor.isRelative -> Actor.isRelative()
There are many scenes their functions missing "()".

I think "spouses" in hasRelationship(Dating, spouses) needs to be "Spouses" to work.
Thank you for letting me know. My stuff is now fixed.

I don't think I messed with master_to_slave.lpscene. I don't do anything with bondage stuff.
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-4138623

Okay, I have recently updated the vampire race with a new skin texture.

What I did was take an existing skin texture and added a Black & White filter with intensity of 85%. Might adjust it more over time.

With these new skin textures you can have Asian, Black, Latin, etc... race vampires.

I also adjusted the Character presents too.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
 

PuToUtO

Member
Sep 11, 2019
125
58
https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-4138623

Okay, I have recently updated the vampire race with a new skin texture.

What I did was take an existing skin texture and added a Black & White filter with intensity of 85%. Might adjust it more over time.

With these new skin textures you can have Asian, Black, Latin, etc... race vampires.

I also adjusted the Character presents too.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
Why does male pc stop sex when female is pregnant but female pc doesn't in breeder scenes?
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
Why does male pc stop sex when female is pregnant but female pc doesn't in breeder scenes?
I'll be honest having sex three times in a row was how it was code at first. But sometimes I wanted it to stop early if first sex knocked up girl already. But other times I wanted to be a the three.

I might now edit so it reflects how good of a relation ship and/or how perverse the actor is to player.
 

deadrabbit

Member
Nov 16, 2017
113
85
How do you start a scene with multiple actors who share a charactaristic, but ensure that a unique person is taken each time.

For example, I can do:

WHO: Actor = getSpecific(Impregnated)
OTHER: none

SceneStart()

Actor2 = getSpecific(Impregnated)
If Actor2.isValid() && Actor2.isPregnant()



but the result is the only one person is brought in and are set as both Actor and Actor2
 

Pr0GamerJohnny

Conversation Conqueror
Sep 7, 2022
6,562
9,775
How do you start a scene with multiple actors who share a charactaristic, but ensure that a unique person is taken each time.

For example, I can do:

WHO: Actor = getSpecific(Impregnated)
OTHER: none

SceneStart()

Actor2 = getSpecific(Impregnated)
If Actor2.isValid() && Actor2.isPregnant()



but the result is the only one person is brought in and are set as both Actor and Actor2
I dont remember the exact process, I figured stuff like that out awhile ago then forgot...

What I did was look at the existing game scripts for stuff like the swinger party at your house where you invite 2-4 guests; since that has a similar criteria as what you're describing.
 

Icebird

Member
Sep 22, 2017
341
242
How do you start a scene with multiple actors who share a charactaristic, but ensure that a unique person is taken each time.

For example, I can do:

WHO: Actor = getSpecific(Impregnated)
OTHER: none

SceneStart()

Actor2 = getSpecific(Impregnated)
If Actor2.isValid() && Actor2.isPregnant()



but the result is the only one person is brought in and are set as both Actor and Actor2
To better understand 'get' commands:
If you run a 'get' command on npcs a pool/list created in background with that persons id named Actor0, Actor1, Actor2, Actor3,... So the command always pick from this list the first applicable, while you're clearing out with 'cleargetlist' command.
Then you doesn't need use 'getspecific' again just render alias to this list:
MainActor = Actor0
SecondActor = Actor1
If MainActor.isValid() & SecondActor.isValid()
Scenestart()

Other way is using the 'other' headline:
OTHER: Actor0.isValid() & Actor1.isValid()
or stay in the WHO line:
WHO: Actor = getSpecific(Impregnated); If Actor0.isValid() & Actor1.isValid()
In this case if this condition isn't meet the requirement (need at least 2 impregnated npc in the game) the scene will not be run (you can't debug with textlines)

Also a note on the getSpecific(Impregnated) command:
If npc is impregnated (recently) then it doesn't mean she is pregnant! Not until the NPC_discovers_pregnancy.lpscene (or the neutral version) run on them what adds the 'Pregnant' tag to the npc. So there is another aproach if you use getPerson(Pregnant) command instead.
 
Last edited:
  • Like
Reactions: R0y

Dofus 4 life

Newbie
Oct 18, 2023
88
171
Ravenger6660
Why only males have partner ??

I exchange numbers with males and they are in relationships, but not Women , they are all single, can i make it possilbe that women also have boyfriends/husbands?
 

Spamwise

Member
Mar 29, 2020
206
237
yes lol, its a good game but damn, the same game but prettier, or even with different way of controlling your char, like direct control of the movement etc to go to places or idk would be nice
It's schizophrenic to the point that I'd happily take a clean 2D or pixel display to the anarchic unreal hell we have now.
Of course, with the game abandoned or in suspended development, that's not going to happen either.
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
Ravenger6660
Why only males have partner ??

I exchange numbers with males and they are in relationships, but not Women , they are all single, can I make it possilbe that women also have boyfriends/husbands?
With the "meet_new_person" scene If New_Person:attractiontoplayer < -50 it creates a partner.
So if your playing a guy and have a very low chance NPCs being gay/Bi then every male you meet will have a low attractiontoplayer and thus have a partner. Non-lesbian Females will "never start with partner" until another scene gives them one.
 
  • Wow
Reactions: Dofus 4 life
3.30 star(s) 118 Votes