Jump to content

Recommended Posts

Posted
On 9/21/2023 at 6:06 PM, BlackMazeGOD said:

 

If you need, i can explain how behead player and hang just like piece of meat ;D.

and i thought Avengers was my favourite team up ?

 

i can't wait to see what Del can do with these new magics!

Posted

I made some fixes.

 

The last point I have is the meatgirls selection in VIP quests.

 

Here the current script of VIPplayer. VIP simza select scripts are quite the same.

 

;=== Scripts ===

Function SimzaSelectSlave()
    
    if Slave01 != none
        GetSlave(Slave01.getactorref())
    elseif Slave05 != none
        GetSlave(Slave05.getactorref())
    Endif

    if Slave02 != none
        GetSlave(Slave02.getactorref())
    elseif Slave06 != none
        GetSlave(Slave06.getactorref())
    Endif

    if Slave03!= none
        GetSlave(Slave03.getactorref())
    elseif Slave07 != none
        GetSlave(Slave07.getactorref())
    Endif

    if Slave04 != none
        GetSlave(Slave04.getactorref())
    elseif Slave08 != none
        GetSlave(Slave08.getactorref())
    Endif
    

    ;move the girls to the VIP hall
    Meatgirl1.getactorref().moveto(a1R_VIPRoom_Meat1SpotREF)
    Meatgirl2.getactorref().moveto(a1R_VIPRoom_Meat2SpotREF)
    Meatgirl3.getactorref().moveto(a1R_VIPRoom_Meat3SpotREF)
    Meatgirl4.getactorref().moveto(a1R_VIPRoom_Meat4SpotREF)    
    
EndFunction


Function GetSlave(actor ToBeAssigned)

    ; Find an empty spot in the array
        int i = Meatgirls.length
      int pos = -1
    while i
        
            i-=1
            Actor a = Meatgirls.getActorReference()
            if !a || a.isDead()
                    pos = i
                    i = 0
            endIf
        endWhile

    if pos==-1
        ; No empty slots
        debug.notification("No space available")
        return
    endIf

    ;fill the aliases
    if  Meatgirls[pos].getactorref() == none
        debug.notification("Meatgirl position is empty, can be filled.")
        
        Meatgirls[pos].forceRefTo(toBeAssigned)
        ToBeAssigned.addtofaction(a1R_Rep_Vip_SelectedFaction)
    
        ;check if alias is correctly filled.
        if Meatgirls[pos].getactorref().isinfaction(a1R_Rep_Vip_SelectedFaction)
            debug.notification("Meatgirl is registered")
        endif            

    Elseif Meatgirls[pos].getactorref() != none
        debug.notification("Meatgirl position is already filled.")
    EndIf        

EndFunction

 

 

I tried a replacement, but It does't worked.

 

; longueur de l'array
int slavelength = Slaves.length

; Nombre d'acteurs à sélectionner
int selectedActorsCount = 0

; i pour la boucle while
int i = 0

while selectedActorsCount < 4

    while i < slavelength

        Actor a = Slaves[i].getActorReference()

        ; Vérifie que l'alias n'est pas vide et que l'acteur n'est pas mort
        if a != None && !a.IsDead()

            ; Vérifie si l'acteur n'a pas déjà la faction "selectedfaction"
            if a.IsInFaction(a1R_Rep_Vip_SelectedFaction) == false

                debug.notification("Slave found, registering as meatgirl")

                ; Sélectionne l'acteur
                a.AddToFaction(a1R_Rep_Vip_SelectedFaction)
                Meatgirls[selectedActorsCount].ForceRefTo(a)

                ; Incrémente le compteur d'acteurs sélectionnés
                selectedActorsCount += 1

                ; Incrémente i de 1 pour la nouvelle itération
                i += 1
            endif

        endif
    EndWhile
EndWhile
  • 1 month later...
  • 2 weeks later...
Posted (edited)

@Delzaron

It seems that from the cell he only picks girls from 12, 11, 10 and 9. 

 

Bad link to cooked tits

Spoiler

fg.thumb.PNG.27f1d3dec07e5870d4481b4228165e66.PNG

 

When we are a VIP customer and choose meat for appetizer and main course. It's when Simza cuts off a slave's head that she goes to a room with other customers instead of the PC. Setstage 70 causes her to give the our order and fix further quest.

 

Maybe, to minimize the problems it could use that small space that is in front of the entrance to the area with the targets? And there give 3 girls who will be sent to the VIP room (the player continues to be a meat slave).

 

During the player's choice of which meat slave to make as appetizer and main course I would add some more dialogues.

 

To the dialogue "I don't choose you...." I would add:
If not today, another day someone will not choose.
I'm not going anywhere.
I hope you will change your mind.

 

 

 

Edited by killer905
  • 1 month later...
Posted
On 1/17/2024 at 5:09 PM, killer905 said:

@Delzaron

It seems that from the cell he only picks girls from 12, 11, 10 and 9. 

 

Bad link to cooked tits

  Reveal hidden contents

 

When we are a VIP customer and choose meat for appetizer and main course. It's when Simza cuts off a slave's head that she goes to a room with other customers instead of the PC. Setstage 70 causes her to give the our order and fix further quest.

 

Maybe, to minimize the problems it could use that small space that is in front of the entrance to the area with the targets? And there give 3 girls who will be sent to the VIP room (the player continues to be a meat slave).

 

During the player's choice of which meat slave to make as appetizer and main course I would add some more dialogues.

 

To the dialogue "I don't choose you...." I would add:
If not today, another day someone will not choose.
I'm not going anywhere.
I hope you will change your mind.

 

 

 

 

😭

 

On 3/16/2024 at 4:15 AM, killer905 said:

@Delzaron

Sadly no more new things for Deadly Furniture...
https://www.patreon.com/posts/end-of-oldrim-100371108

Yep, no more things for deadly furniture LE... but also SE... I never saw something new from months.

 

I expected that outcome. It's also why i'm converting my mods LE to SE... I develop on LE only because I'm used to it. But one day, I'll need to think about abandonning LE versions.

Ravenous is now mostly a advertising for pama dolcett themed stuff. If implementing a new pama stuff means the abandon of ravenous LE, so be it, only ravenous SE will receive updates.

 

Posted (edited)
3 hours ago, Delzaron said:

 

😭

 

Yep, no more things for deadly furniture LE... but also SE... I never saw something new from months.

 

I expected that outcome. It's also why i'm converting my mods LE to SE... I develop on LE only because I'm used to it. But one day, I'll need to think about abandonning LE versions.

Ravenous is now mostly a advertising for pama dolcett themed stuff. If implementing a new pama stuff means the abandon of ravenous LE, so be it, only ravenous SE will receive updates.

 

Ohh, but remember Pama mod and Ravenous can be backported to LE. Well, if pama give permissions for this... :D

Edited by killer905
Posted
4 hours ago, sierra0251 said:

hi i cant seem to find the people i need to talk to to find camille and lamae. where would i find them. i searched the slave market like it said.

 

Lamae is at solitude.

 

Camille is in a cave nearby Riften, north.

Posted

Quick question .

 

in vip once you selected the 4th meat slave 

the scene will start playing not giving enough time for the slaves to get up stairs . 
 

is there any reason why the trigger could not be a conversation with the vip . 
this would allow the player to control the start of the scene once everyone is in the room .

 

or has this been tried and caused other issues 

 

Posted
45 minutes ago, megger35 said:

Quick question .

 

in vip once you selected the 4th meat slave 

the scene will start playing not giving enough time for the slaves to get up stairs . 
 

is there any reason why the trigger could not be a conversation with the vip . 
this would allow the player to control the start of the scene once everyone is in the room .

 

or has this been tried and caused other issues 

 

 

thx for the remark. I could extend the time, and add a dialogue line to client to increase player control.

Posted (edited)

thanks again for another update to this amazing mod Del!

the impalers look great 😄

you really are leading the forefront for Skyrim dolcett 😁

Edited by VoreQ
Posted

Any sneak peak on the "boiler" and also when the wip have said player and simza is chosen no meat girls comes whit Simza (skyrim LE will go over to SE soon again) 

Posted
On 3/31/2024 at 11:38 AM, VoreQ said:

thanks again for another update to this amazing mod Del!

the impalers look great 😄

you really are leading the forefront for Skyrim dolcett 😁

 

it was not the goal of that rework, but thx !

 

On 4/1/2024 at 1:15 PM, Alex749 said:

Any sneak peak on the "boiler" and also when the wip have said player and simza is chosen no meat girls comes whit Simza (skyrim LE will go over to SE soon again) 

 

no boiler for now, I can't adapt it from zaz 9.0.

you spoken about the vip wuest ? the problem is simza pikcing slaves script : it picks slaves in positions 0 to 2. if there positions are empty, no slaves can be picked. I need to find a replacement, or, ads i done for vip impaler, to let the player chose himself the slaves.

Posted (edited)
49 minutes ago, Delzaron said:

ou spoken about the vip wuest ? the problem is simza pikcing slaves script : it picks slaves in positions 0 to 2. if there positions are empty, no slaves can be picked. I need to find a replacement, or, ads i done for vip impaler, to let the player chose himself the slaves.

I do speak to the wip and he say (the classic, exotic, 3 +player and simza/player etc), i tell Simza she is picked and get 2 more slaves, it's fine up to that but she comes alone. If she is picked (main) Simza say do the slave girl and come back.  

Edited by Alex749
Posted
1 hour ago, Alex749 said:

I do speak to the wip and he say (the classic, exotic, 3 +player and simza/player etc), i tell Simza she is picked and get 2 more slaves, it's fine up to that but she comes alone. If she is picked (main) Simza say do the slave girl and come back.  

 

yep, it's the problem I describe : if the slavestock positons 0 to 2 are empty, Simza can't pick any slave because her script made her pick slaves in these aliases.

I need a design a replacement, or use an alternative method.

Posted
54 minutes ago, Delzaron said:

 

yep, it's the problem I describe : if the slavestock positons 0 to 2 are empty, Simza can't pick any slave because her script made her pick slaves in these aliases.

I need a design a replacement, or use an alternative method.

I would have a few solutions.

There is one empty cell that can be used for this purpose.

Spoiler

20240402214607_1.jpg.4fef23dcda47c7c02ecc06e8b21ec30d.jpg


1) After purchasing slaves (6 in quantity), 4 NPCs will appear in this cell ONLY to be used by Simz for VIP tasks, implanter, PC VIP etc.

2) Allow the player to choose meat slaves instead of Simz.

3) A special task in which Mistress sends us to bring 4 volunteers (they had previously approached her about this matter), which will later be used by Simz for the VIP, Implanter, PC VIP tasks.

4) Similar to the version from point 3, but with the possibility of recruiting followers for it.

Posted
15 hours ago, killer905 said:

I would have a few solutions.

There is one empty cell that can be used for this purpose.

  Hide contents

20240402214607_1.jpg.4fef23dcda47c7c02ecc06e8b21ec30d.jpg


1) After purchasing slaves (6 in quantity), 4 NPCs will appear in this cell ONLY to be used by Simz for VIP tasks, implanter, PC VIP etc.

2) Allow the player to choose meat slaves instead of Simz.

3) A special task in which Mistress sends us to bring 4 volunteers (they had previously approached her about this matter), which will later be used by Simz for the VIP, Implanter, PC VIP tasks.

4) Similar to the version from point 3, but with the possibility of recruiting followers for it.

 

good ideas indeed. I should consider them.

Posted

Author, this mod  has a lot of unfinished tasks, such as: waiter task, butcher task, etc. Including when I look at the mod entry found a lot of not implemented.   Including the latest holiday quest I still don't understand. I wonder if there's a task code。   — v —

Posted
14 hours ago, szy971101 said:

Author, this mod  has a lot of unfinished tasks, such as: waiter task, butcher task, etc. Including when I look at the mod entry found a lot of not implemented.   Including the latest holiday quest I still don't understand. I wonder if there's a task code。   — v —

If you mean working for the mistress after completing the main quest (of course, if you stay alive), then only one quest, VIP service, is not finished. It works every other time and it's better not to touch it. The other three are in perfect order, I have already studied this mod inside and out. The quest with the waitress is also completed, Delzaron does not want to add anything more to it. I may reveal a secret, but the game engine does not allow you to make a fashion quest without bugs at all, even classic quests can stick out of the blue. And by the way, if you find an alternative to such mod, then write right here.

Posted
On 4/3/2024 at 6:51 PM, Delzaron said:

 

good ideas indeed. I should consider them.

One more suggestion then, what if the choice of four meat slaves is deleted from this quest altogether? Leave only one slave, dovakin and simza? By the way, there was no time to ask why the mistress can easily bring Simza back to life if she is chosen to eat, but she does not want to revive dovakin, what discrimination lol! It turns out that she cheats like this, she may not buy slaves at all, but simply revive them endlessly.)

Posted
1 hour ago, coronelwirs said:

One more suggestion then, what if the choice of four meat slaves is deleted from this quest altogether? Leave only one slave, dovakin and simza? By the way, there was no time to ask why the mistress can easily bring Simza back to life if she is chosen to eat, but she does not want to revive dovakin, what discrimination lol! It turns out that she cheats like this, she may not buy slaves at all, but simply revive them endlessly.)

I admit that when I gave this idea of Simza also getting the chance to be the meat on the plate I didn't consider some other aspects. But it can be explained in the way that Mistress can resurrect one person once every "year". Another version is that Mistress is not able to resurrect a player because she is Dragonborn.

 

What about other slaves? Here it can be clarified that it will not waste its powers on easily accessible slaves.

Remember that Simza is also a cannibal, and so Mistress may have a greater desire to keep her alive than PC.

Posted
3 hours ago, killer905 said:

I admit that when I gave this idea of Simza also getting the chance to be the meat on the plate I didn't consider some other aspects. But it can be explained in the way that Mistress can resurrect one person once every "year". Another version is that Mistress is not able to resurrect a player because she is Dragonborn.

 

What about other slaves? Here it can be clarified that it will not waste its powers on easily accessible slaves.

Remember that Simza is also a cannibal, and so Mistress may have a greater desire to keep her alive than PC.

So we initially assume that the mistress knows that Dovakin is in front of her? Is Simza the only cannibal in Skyrim? no, there's a whole pack of Namira fans, led by Eola. One in a year? where it says this, of course, I only went through the mod twice, but she didn't mention it. Well, let's say so, but in defense of dovakin, I will say that unlike Simza, who is only a cook, dovakin is a supplier of human flesh and slaves. Shee can easily get any product, any person, and the three servants that we hired in the story are ordinary empty-headed chickens. Dovakin is able to replace everyone at once, and besides, what kind of idiot would refuse such a warrior on your side?

Posted
7 minutes ago, coronelwirs said:

So we initially assume that the mistress knows that Dovakin is in front of her? Is Simza the only cannibal in Skyrim? no, there's a whole pack of Namira fans, led by Eola. One in a year? where it says this, of course, I only went through the mod twice, but she didn't mention it. Well, let's say so, but in defense of dovakin, I will say that unlike Simza, who is only a cook, dovakin is a supplier of human flesh and slaves. Shee can easily get any product, any person, and the three servants that we hired in the story are ordinary empty-headed chickens. Dovakin is able to replace everyone at once, and besides, what kind of idiot would refuse such a warrior on your side?

Yes, yes you are right, but I was just giving examples of 'why' it might be like this and not like that. It's a matter of getting more specific in the dialogues or adding new ones to make it hold together well.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...