xseno Posted June 21, 2021 Posted June 21, 2021 Yay an update and I was just about to finalize my SSE mod load. Now I got to wait for the conversion
prologue1337 Posted June 22, 2021 Posted June 22, 2021 Hreinn is not in the Dark Arena, am I missing something? I came in the Dark Arena via Simple Slavery and didn't do any of the questing.
tedii Posted June 22, 2021 Posted June 22, 2021 There's 3 conditions from what I can see in TES5Edit for the "Become a Bard" mod to activate. I think you have got two of the three. I am not sure what the third one is. It is not clear to me unfortunately. But I definitely think it would be a great addition, especially with some sexy time linkage to this mod haha 1
tedii Posted June 23, 2021 Posted June 23, 2021 On a side note, what are the instructions for updating the mod? Does it require a clean save or can we just overwrite the existing?
aspirine2 Posted June 23, 2021 Posted June 23, 2021 (edited) many of the Dark arena attendants run scared when pit fights start Irellen too..i read you adjusted them at the log..but this still occurs .. -some times when pc bets on fights the pit fighters get through one of the doors ..the left or the right to complete the fight ..is there any solution so they are forced to not leave the pit fight area ..!? -is there somehow way to block the prostitution jobs from running it ctd's my game once pc gets the dress..other than that the mod runs smooth so far..beside the know your debts message isn't showing any debt information !? Edited June 23, 2021 by aspirine2
Delzaron Posted June 23, 2021 Author Posted June 23, 2021 1 hour ago, aspirine2 said: many of the Dark arena attendants run scared when pit fights start Irellen too..i read you adjusted them at the log..but this still occurs .. -some times when pc bets on fights the pit fighters get through one of the doors ..the left or the right to complete the fight ..is there any solution so they are forced to not leave the pit fight area ..!? -is there somehow way to block the prostitution jobs from running it ctd's my game once pc gets the dress..other than that the mod runs smooth so far..beside the know your debts message isn't showing any debt information !? I set them "brave" in their ai package... i'll try something else... - I know, locking these doors just before the fight and unlock it at the end will sove that issue. - ??? that's simple : you put the dress on your back, you find a client, do your business, get payed... and etc... until you served 3 clients. - I didn't... the script sounds good, it call the appropriate int... On 6/22/2021 at 11:48 AM, prologue1337 said: Hreinn is not in the Dark Arena, am I missing something? I came in the Dark Arena via Simple Slavery and didn't do any of the questing. ? The only package he have locks him to the counter... where he could be gone ? Of course, you need him for the quests...
aspirine2 Posted June 23, 2021 Posted June 23, 2021 Just now, Delzaron said: - ??? that's simple : you put the dress on your back, you find a client, do your business, get payed... and etc... until you served 3 clients. on back how !?
mogon Posted June 24, 2021 Posted June 24, 2021 16 hours ago, Delzaron said: - I didn't... the script sounds good, it call the appropriate int... When i ask Lisskit about my debt, i dont get a number, but something like ~ "globalVariable <ada_playerdeptInt>" - maybe a typo? (dept/debt)?
Delzaron Posted June 24, 2021 Author Posted June 24, 2021 9 minutes ago, mogon said: When i ask Lisskit about my debt, i dont get a number, but something like ~ "globalVariable <ada_playerdeptInt>" - maybe a typo? (dept/debt)? I see... I refered to the int in the script, not the globalvariable i set to better manage the dept... So, unused variable, it stay at 0... oh dumb i am...
kxenxo Posted June 26, 2021 Posted June 26, 2021 The sex don't work when i loose the fight in the pit, even in the work dance or prostitute. What can i do to fix that?
Delzaron Posted June 26, 2021 Author Posted June 26, 2021 7 minutes ago, kxenxo said: The sex don't work when i loose the fight in the pit, even in the work dance or prostitute. What can i do to fix that? Did you met the problem with another sexlab based mod ? If yes, check your sexlab installation. Did you get a line related to that problem in your log ?
kxenxo Posted June 26, 2021 Posted June 26, 2021 4 minutes ago, Delzaron said: Did you met the problem with another sexlab based mod ? If yes, check your sexlab installation. Did you get a line related to that problem in your log ? Where i can see that log? all the sexlab mods i have is: Sexlab Framework, Sexlab Defeat SLAL NibblesANIMS Creature Framework and others
kxenxo Posted June 26, 2021 Posted June 26, 2021 1 minute ago, kxenxo said: Where i can see that log? all the sexlab mods i have is: Sexlab Framework, Sexlab Defeat SLAL NibblesANIMS Creature Framework and others on the screen, when losing the fight, or doing a prostitution job, Sexlab jumps up and says that an animation will be activated, but this never happens
Delzaron Posted June 26, 2021 Author Posted June 26, 2021 1 hour ago, kxenxo said: on the screen, when losing the fight, or doing a prostitution job, Sexlab jumps up and says that an animation will be activated, but this never happens Ok, the script for lisskit tell you how much you own to the dark arena is done now. This is the sex script of the raping in pitgirl jobs. For convinience (I installed only sexlab and leito anim pack), I only let "anal" as condition for getting an anim. Not even "rape" or "aggresive". Function RapePitGirl() int button Button = aDA_ArenaPlayeRapeMessage.show() if Button == 0 debug.messagebox("I refused to rape my opponent") ElseIf Button == 1 actor[] sexActors = new actor[2] ;its an 2 actor anim sexActors[0] = PitGirl.getactorref() ;actor in female role. Its an alias thats why that .GetActorRef() is needed. If it would be property it would be just Vess (or whatever else that property would be named) sexActors[1] = Game.GetPlayer() ; actor in male role. For player you can use Game.GetPlayer() sslBaseAnimation[] anims = SL.GetAnimationsByTags(2, "anal") ;here you choose animation to be played. This one is by tags. It means it will pick random animation made for 2 actors which has both of those tags. You can also add tags to suppress for example SL.GetAnimationsByTags(2, "Aggressive,vaginal", "missionary") would still play random animation of vaginal aggressive sex but rough missionary animation would not be allowed. RegisterForModEvent("AnimationEnd_AFS", "AFS") ;this is for hooks. SL.StartSex(sexActors, anims, victim = pitgirl.getactorref(), allowbed=false, hook="AFS") Endif EndFunction Function RapePlayer() actor[] sexActors = new actor[2] ;its an 2 actor anim sexActors[0] = Game.GetPlayer() ;actor in female role. Its an alias thats why that .GetActorRef() is needed. If it would be property it would be just Vess (or whatever else that property would be named) sexActors[1] = PitGirl.getactorref() ; actor in male role. For player you can use Game.GetPlayer() sslBaseAnimation[] anims = SL.GetAnimationsByTags(2, "anal") ;here you choose animation to be played. This one is by tags. It means it will pick random animation made for 2 actors which has both of those tags. You can also add tags to suppress for example SL.GetAnimationsByTags(2, "Aggressive,vaginal", "missionary") would still play random animation of vaginal aggressive sex but rough missionary animation would not be allowed. RegisterForModEvent("AnimationEnd_AFS", "AFS") ;this is for hooks. SL.StartSex(sexActors, anims, victim = playerref, allowbed=false, hook="AFS") ; and this starts the action. victim = Vess.GetActorRef() means this actor is considered as victim and other one as aggressor. allowbed=false means sexlab wont allow use of beds. hook="AQSS" and this is a hook, it allows you to do something on "AnimationEnd" in this example EndFunction Yes, the crown around the arena still run away during the fight... I'll make some tests with Irellen by impriving her aggressivity... let's see what it occur.
kxenxo Posted June 27, 2021 Posted June 27, 2021 7 hours ago, Delzaron said: Ok, the script for lisskit tell you how much you own to the dark arena is done now. This is the sex script of the raping in pitgirl jobs. For convinience (I installed only sexlab and leito anim pack), I only let "anal" as condition for getting an anim. Not even "rape" or "aggresive". Function RapePitGirl() int button Button = aDA_ArenaPlayeRapeMessage.show() if Button == 0 debug.messagebox("I refused to rape my opponent") ElseIf Button == 1 actor[] sexActors = new actor[2] ;its an 2 actor anim sexActors[0] = PitGirl.getactorref() ;actor in female role. Its an alias thats why that .GetActorRef() is needed. If it would be property it would be just Vess (or whatever else that property would be named) sexActors[1] = Game.GetPlayer() ; actor in male role. For player you can use Game.GetPlayer() sslBaseAnimation[] anims = SL.GetAnimationsByTags(2, "anal") ;here you choose animation to be played. This one is by tags. It means it will pick random animation made for 2 actors which has both of those tags. You can also add tags to suppress for example SL.GetAnimationsByTags(2, "Aggressive,vaginal", "missionary") would still play random animation of vaginal aggressive sex but rough missionary animation would not be allowed. RegisterForModEvent("AnimationEnd_AFS", "AFS") ;this is for hooks. SL.StartSex(sexActors, anims, victim = pitgirl.getactorref(), allowbed=false, hook="AFS") Endif EndFunction Function RapePlayer() actor[] sexActors = new actor[2] ;its an 2 actor anim sexActors[0] = Game.GetPlayer() ;actor in female role. Its an alias thats why that .GetActorRef() is needed. If it would be property it would be just Vess (or whatever else that property would be named) sexActors[1] = PitGirl.getactorref() ; actor in male role. For player you can use Game.GetPlayer() sslBaseAnimation[] anims = SL.GetAnimationsByTags(2, "anal") ;here you choose animation to be played. This one is by tags. It means it will pick random animation made for 2 actors which has both of those tags. You can also add tags to suppress for example SL.GetAnimationsByTags(2, "Aggressive,vaginal", "missionary") would still play random animation of vaginal aggressive sex but rough missionary animation would not be allowed. RegisterForModEvent("AnimationEnd_AFS", "AFS") ;this is for hooks. SL.StartSex(sexActors, anims, victim = playerref, allowbed=false, hook="AFS") ; and this starts the action. victim = Vess.GetActorRef() means this actor is considered as victim and other one as aggressor. allowbed=false means sexlab wont allow use of beds. hook="AQSS" and this is a hook, it allows you to do something on "AnimationEnd" in this example EndFunction Yes, the crown around the arena still run away during the fight... I'll make some tests with Irellen by impriving her aggressivity... let's see what it occur. idk exactly what i have to do with this information u gave me >.<
Delzaron Posted June 27, 2021 Author Posted June 27, 2021 8 hours ago, kxenxo said: idk exactly what i have to do with this information u gave me >.< It's just the part of the code which trigger the sex scene. It descrive the actors involved, the number of actors (2), if it's a rape (there is a victim), and the animation condition. So, you just need an anal tagged condition to get the script works as expected. Edit : i added a door system to the arena : locked during the fight, open after. The place deserves a music....
kxenxo Posted June 27, 2021 Posted June 27, 2021 (edited) 9 hours ago, Delzaron said: It's just the part of the code which trigger the sex scene. It descrive the actors involved, the number of actors (2), if it's a rape (there is a victim), and the animation condition. So, you just need an anal tagged condition to get the script works as expected. Edit : i added a door system to the arena : locked during the fight, open after. The place deserves a music.... I suposse all i had to do now is wait for u to upload a new patch for this, or...? (sorry for so much questions i idk so much about modding :C ) edit: btw has i said i have a problem with the whore and dancer job: sex scenes never happen in that ocations, just like in the pit Edited June 27, 2021 by kxenxo
Delzaron Posted June 27, 2021 Author Posted June 27, 2021 2 hours ago, kxenxo said: I suposse all i had to do now is wait for u to upload a new patch for this, or...? (sorry for so much questions i idk so much about modding :C ) edit: btw has i said i have a problem with the whore and dancer job: sex scenes never happen in that ocations, just like in the pit And other sexlab mods ?
kxenxo Posted June 27, 2021 Posted June 27, 2021 2 hours ago, Delzaron said: And other sexlab mods ? nop, it only happens with Dark Arena
Mike-Long Posted June 28, 2021 Posted June 28, 2021 Delzaron, thank you for this GREAT MOD, I've tested about 4-5 hours and there's what I've seen -I've changed myself the music to "Tavern", I know this is a "dark" place (mod's name says) but in a sense of illegal activities, people here is gambling, fucking, drinking and having fun, therefore "Dungeon" music seems inappropriate to me... but this is a personal opinion -lightning is terrible, with objects, walls, stairs and even NPCs (or PC) completely black, depending on the camera angle... I play with Enhanced Lights and FX, compatibility issue? Maybe for the objects, but the characters? -sometimes, quests don't trigger after dialogue and you must repeat the conversation -when you're in a job or if you're a slave, there are all the other job options visible in the dialogue menu -in the whore jobs, when the client accept, the dialogue menu closes and you must activate again the NPC to say "Follow me", and at that point the dialogue menu won't close and you must exit manually -I talk to Lisskit with the option "can you forgive my dept?" and they say I've been sold to the slave market, but nothing happens, exit the dialogue and I can't take more tasks or jobs. I have installed Simple Slavery++, the mod recognized yours in the MCM, maybe a conflict issue? -when I ask for my dept amount, I obtain a strange message with a numeric data (I can't remember) -in some games (especially blackjack) if you play a second time in a row the girl accepts your bet, but nothing happens The rest that I've tested works as intended, the sex acts, the pit fights, the dancing jobs, the main quest... Waiting for the next update!!! Thanks again!!!
Delzaron Posted June 28, 2021 Author Posted June 28, 2021 4 hours ago, Mike-Long said: Delzaron, thank you for this GREAT MOD, I've tested about 4-5 hours and there's what I've seen -I've changed myself the music to "Tavern", I know this is a "dark" place (mod's name says) but in a sense of illegal activities, people here is gambling, fucking, drinking and having fun, therefore "Dungeon" music seems inappropriate to me... but this is a personal opinion -lightning is terrible, with objects, walls, stairs and even NPCs (or PC) completely black, depending on the camera angle... I play with Enhanced Lights and FX, compatibility issue? Maybe for the objects, but the characters? -sometimes, quests don't trigger after dialogue and you must repeat the conversation -when you're in a job or if you're a slave, there are all the other job options visible in the dialogue menu -in the whore jobs, when the client accept, the dialogue menu closes and you must activate again the NPC to say "Follow me", and at that point the dialogue menu won't close and you must exit manually -I talk to Lisskit with the option "can you forgive my dept?" and they say I've been sold to the slave market, but nothing happens, exit the dialogue and I can't take more tasks or jobs. I have installed Simple Slavery++, the mod recognized yours in the MCM, maybe a conflict issue? -when I ask for my dept amount, I obtain a strange message with a numeric data (I can't remember) -in some games (especially blackjack) if you play a second time in a row the girl accepts your bet, but nothing happens The rest that I've tested works as intended, the sex acts, the pit fights, the dancing jobs, the main quest... Waiting for the next update!!! Thanks again!!! - i done the same... - I know, but I don't know what to do for fixing lightning... I used firecamp vanilla light object mostly. - the scripts are here... placed at the end of the conversation. if something interrup it, the script can't start, so you need to repeat. - curious... the whore job was modified to fit that way : get client, tell him to follow you, tell him that's a good place, fuck him, and ask for your pay. - maybe... - dept amount is related to a globalvariable. You'll get a message with a number inside, which is your current dept. - ah... after asking to game and get the dilaogue "faites vos jeux, rien ne va plus !". you need to wait the message box about the game option (your score, draw a card, launch a dice, etc...).
Mike-Long Posted July 2, 2021 Posted July 2, 2021 Also, very important: if you play with Defeat, is better to deactivate the mod meanwhile you're inside the Arena or the pit fights can become a massive battle...
Omartwo Posted July 4, 2021 Posted July 4, 2021 On 5/18/2021 at 12:37 AM, Phelps1247 said: Yup, dancer outfit was the problem. Open the creation kit, go to 'file', then 'data', find zdarkarena.esp, click on 'set as active file' and then ok. Once it loads click on 'actors' under the 'actor' tab on the left, look for the 4 dancers under 'aDA_Dancer_(dancer'sname)', double click on them and then under default outfit swap it to 'none'. After doing that for all 4 go to 'file' and hit save. i keep getting a error when i load it
SkyrimSL02 Posted July 4, 2021 Posted July 4, 2021 Hello, I m in the Arena. When i try to : - ask for job - ask for a figth in the pit - have a debt ...game crash Somone have an idea ? What can i do ?
Delzaron Posted July 6, 2021 Author Posted July 6, 2021 On 7/4/2021 at 11:59 PM, SkyrimSL02 said: Hello, I m in the Arena. When i try to : - ask for job - ask for a figth in the pit - have a debt ...game crash Somone have an idea ? What can i do ? Not at all... you didn't got any error message in your log ? I think one object could causes crashes is the dancer topless dress. Replace it just to check. Thanks to the co author of the 1.12 version, some points rerlated to that dress were fixed.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now