Lupine00 Posted February 7, 2019 Posted February 7, 2019 3 hours ago, Lozeak said: It is kind of easy but time-consuming cause it's a lot of data entry... I did automate but it took like 5-6 minutes to initialize and I don't like that so I have to manually put stuff in. Generate arrays in code that has an ESP, using all the "automation" you like, slow DD calls, etc. Save arrays out as JSON with JsonUtil. Load them back whenever you need them, they are cached, so you don't need to worry about the loads being slow. Player can even edit the JSON if they want, but they better be careful If you want to save outfit sets, there is no quick and lazy way to get that - either you pull it off the PC's state, or you have an MCM to make it. The former is obviously the easiest, but then the PC has to get into that state so you can copy it, and how do they do that? You can save a small array that lists what goes in each slot once you have the state.
bathoz Posted February 9, 2019 Posted February 9, 2019 Re device adding tool, is there any reason something like Devious Device Equip couldn't work?
DustyEverman Posted February 9, 2019 Posted February 9, 2019 On 1/9/2019 at 3:18 AM, HexBolt8 said: Just wanted to say that I really like how this idea turns the relationship around in a way that feels natural for a weaker or insecure PC, while still motivating the player to play Skyrim and attempt to make money for that bonus amount. This is probably way to late to respond to this, but if you want to roleplay as a Follower, then you might like this mod: https://www.nexusmods.com/skyrim/mods/95036 It adds the 'Dovahkiin' as a Follower, basically allowing you to roleplay the Main Quest as the Dragonborn's Follower, instead of as the Dragonborn.
Hex Bolt Posted February 9, 2019 Posted February 9, 2019 2 hours ago, DustyEverman said: On 1/8/2019 at 9:18 PM, HexBolt8 said: Just wanted to say that I really like how this idea turns the relationship around in a way that feels natural for a weaker or insecure PC, while still motivating the player to play Skyrim and attempt to make money for that bonus amount. This is probably way to late to respond to this, but if you want to roleplay as a Follower, then you might like this mod: https://www.nexusmods.com/skyrim/mods/95036 It adds the 'Dovahkiin' as a Follower, basically allowing you to roleplay the Main Quest as the Dragonborn's Follower, instead of as the Dragonborn. Thank you for the suggestion. It's interesting that someone made a mod for that! I use Skyrim Unbound and usually make my character non-Dragonborn with no shouting ability. In my current game my character is Dragonborn, but was in service to a follower at the time of the first dragon attack (which with Skyrim Unbound I delayed until later in game, and it occurred randomly, outside Riften). I role played this as the follower taking credit, bribing the lone guard who was a witness. Now my character is forbidden to shout and must address the follower as "Dragonborn" (edited a few lines of follower dialog). It's a lie, but that's the life of a slave. So I got there, just in a different way.
Lozeak Posted February 9, 2019 Author Posted February 9, 2019 5 hours ago, bathoz said: Re device adding tool, is there any reason something like Devious Device Equip couldn't work? Cause it's a player tool not a modder tool. Basically, I'd need to make it a requirement which means it's not possible. The thing I'm making is close to done now anyway customizable in a json and esp free meaning it can be used cross mod without requirements outside of DD that is. So i never need to make it again and people can steal it! There are a few more hoops/error catches for me to do and hopefully add a ton of useful function and a way to have themes.
CuriouslyMods Posted February 10, 2019 Posted February 10, 2019 Would I have permission to convert this mod to work in SSE? I'd like to post the conversion in this thread for you to then have available to distribute to others.
qtpie Posted February 10, 2019 Posted February 10, 2019 Is there a workaround for Stenvar? His recruitment dialogue doesn't work
Lozeak Posted February 10, 2019 Author Posted February 10, 2019 4 hours ago, CuriouslyMods said: Would I have permission to convert this mod to work in SSE? I'd like to post the conversion in this thread for you to then have available to distribute to others. Yes. You can post it up as mod as well if you want since i have no immediate plans to move to SE just yet.
Lupine00 Posted February 10, 2019 Posted February 10, 2019 2 hours ago, qtpie said: Is there a workaround for Stenvar? His recruitment dialogue doesn't work I think all genuine mercenaries are broken, and have been since the beginning. You can recruit them in some backwards way though, where they give you the dialogue about you owing a debt they'll recover for someone. I think in that case, you just talk to them, without any existing follower, but after having had a DF previously, and they join. You don't have to invite them. They join whether you want them or not. But my memory is hazy TBH.
Lozeak Posted February 11, 2019 Author Posted February 11, 2019 @Lupine00 Have a look at this if you feel like it! So I'll upload this script now it's nearing completion... it took a lot of work! It's not finished (some tidying and reordering) I've finally finished this thing and maybe I put too much work in but I think it's an incredible tool that works cross mod! So here it is .... a cross mod random device adder that can use sets and be customized via a Json it creates. Once the Json is built it runs pretty fast. Maybe it was too much work for something no one but me will use but at least when I get to making my next mod and can just copy and paste this script! Sample Json it creates! _LDC.psc Device Settings.json 1
Lupine00 Posted February 11, 2019 Posted February 11, 2019 4 hours ago, Lozeak said: too much work in Surely, no such thing? RegisterCatsuitSockandHand ... why not RegisterCatsuitBootsAndGloves? Because Papyrus sucks so much, you might want to factor out things like... int n = StorageUtil.FormListCount(kw, "LDCDevices") ... while n > 0 && i < n ... endWhile To if n while i < n ... endwhile endif Because the Papyrus compiler has no optimizer, but you can avoid testing n>0 every iteration if you promote it out of the loop. But you can avoid doing searches like that if you store more data. If you pair up lists with the name and the form, then you can use Find to get the index of the name, then get the from by fetching that index. No search loop required - the iteration is all done in native code, which is a few thousand times faster. You don't want that duplicate data in your json, but you can build it into StorageUtil when traversing the json.
hdevore Posted February 11, 2019 Posted February 11, 2019 Hi Just wanted to say thanks to Lozeak (and everyone else, especially Lupine) for creating and contributing to this. This is probably the mod I’ve got the most out of in play-time - DCL complements it nicely and CD is a great mod but this one is excellent for replayability ??? thanks 1
Kalthen Posted February 12, 2019 Posted February 12, 2019 On 2/6/2019 at 9:49 PM, Lozeak said: Building a Device controller tool Maybe you could hook into intes DD Equip. It let's you save personal device prefs. 1
Lozeak Posted February 12, 2019 Author Posted February 12, 2019 5 hours ago, Kalthen said: Maybe you could hook into intes DD Equip. It let's you save personal device prefs. I will take this into consideration once the script is complete since I always found it a shame when you set up DDe and no mods really used it. On release, if a mod adds DDe (I may do this myself) items to _LDC then you could select sets via a string and also deleting unwanted items in the JSON meaning you could kind of configure what items are used. I think _LDC pulling info from DDe MCM would be a good expansion to the system and I should be able to do but I don't think I'll do it until I have Devious Follower 2.0 out cause there is still a ton of work to do on that first. 1
Kalthen Posted February 12, 2019 Posted February 12, 2019 7 minutes ago, Lozeak said: I will take this into consideration once the script is complete since I always found it a shame when you set up DDe and no mods really used it. Right? Was wondering the same thing. But hey man, you do you;) Still having a blast with the current version. Works damn better without EFF and other Frameworks. So thanks for considering them in 2.0. I tried to patch in RDO with EFF but I soon realised how much work it is.
Lupine00 Posted February 12, 2019 Posted February 12, 2019 1 hour ago, Kalthen said: 1 hour ago, Lozeak said: I will take this into consideration once the script is complete since I always found it a shame when you set up DDe and no mods really used it. Right? Was wondering the same thing. But hey man, you do you;) Still having a blast with the current version. Works damn better without EFF and other Frameworks. So thanks for considering them in 2.0. I tried to patch in RDO with EFF but I soon realised how much work it is. Right now, the problem with DDe is that it's dead in the water. How can a DD mod that refuses to update to DD4 have any meaningful future? A DD mod that doesn't work with DD? It makes no sense. Sure, it appears to work, until you try to remove some heavy bondage, and then it doesn't. Its items are essentially corrupt. DDe has intentionally refused to patch or update for 4.2 Users have to modify the keywords on items in DDe using Tes5Edit themselves if they want it to work. As far as PoP goes, it makes more sense to not use DD in PoP, and not install DDe unless you maintain your own copy of it. I'm not surprised that Kimy perceives DDe as a calculated attempt to fragment and block DD development. Inte has released multiple updates to it - over a year - and all of them really only work with DD 3.X - a mod you can't download, filled with bugs, that won't even work with newer mods at all. That's a statement right there. I don't really know what it's trying to say ... but what I hear is "DDe is designed to make users think that DD4 is broken." DD4 is not all perfect, but there is no path back to the DD3.X days. DDe refuses to acknowledge this. DD4 is substantially better than DD3. The MCM was a shock after DD3, but you get used to it. For new users, it might genuinely be better. DD4 improves over 3 is almost every other respect. People have forgotten how broken corset+chastity belt was under 3, or how pointless the inventory locking was, or how often the animations didn't apply properly. I think it's fine for PoP to not support DD; Zaz is quite suitable for what PoP does, and PoP needs Zaz for furniture anyway, but PoP does not need DD, or DDe. DDe either needs to be updated properly, or admit it's broken, abandon it, move on, and remove it from PoP. Currently, new users are being misled into downloading a mod that doesn't work, and then installing for use with another mod, so it breaks it. 6
Darkwing241 Posted February 13, 2019 Posted February 13, 2019 2 hours ago, Lozeak said: I will take this into consideration once the script is complete since I always found it a shame when you set up DDe and no mods really used it. On release, if a mod adds DDe (I may do this myself) items to _LDC then you could select sets via a string and also deleting unwanted items in the JSON meaning you could kind of configure what items are used. I think _LDC pulling info from DDe MCM would be a good expansion to the system and I should be able to do but I don't think I'll do it until I have Devious Follower 2.0 out cause there is still a ton of work to do on that first. Wasn't there some issue with DDe being forever non-compatible with up to date DD? I recall some drama but I don't know if it ever got worked out. If that community split is still going on I would hate to see your mod become suddenly incompatible with the majority of other kink mods. As I understand it the reason no mods interact with DDe is 100% DDe's fault. DDe refusing to update to modern versions of its supports mods is frankly pretty scummy IMO. There was always kind of a rule in the modding world that you update your mods to work with their modern counterparts, otherwise everything fall apart. As a fan, I would really rather not see you split off on that path. 2
kurotatsu Posted February 13, 2019 Posted February 13, 2019 14 hours ago, Kalthen said: Maybe you could hook into intes DD Equip. It let's you save personal device prefs. i think adding DD Equip dependncy is a bad idea until it gets properly updated to DD4. It's still intentionally being kept as DD3-compatible, which is no good. 3
Kalthen Posted February 13, 2019 Posted February 13, 2019 14 hours ago, Lupine00 said: A DD mod that doesn't work with DD? It makes no sense I didn't realize... I just thought it sad that the approach was something that never got used. I also don't get milage from DDe. Anyhow, I am all for choice and customizing DD to taste. So I really love that DDF 2.0 has customization in mind however its' players taste.
DarmanSejuk Posted February 13, 2019 Posted February 13, 2019 Is the slavetats section under 'other mod settings' just a place holder for now? Or is there a way to enable it?
Lupine00 Posted February 14, 2019 Posted February 14, 2019 10 hours ago, DarmanSejuk said: Is the slavetats section under 'other mod settings' just a place holder for now? Or is there a way to enable it? It depends on a specific pack being installed. I forget which. Possibly the "sluts" pack?
Lozeak Posted February 14, 2019 Author Posted February 14, 2019 19 hours ago, DarmanSejuk said: Is the slavetats section under 'other mod settings' just a place holder for now? Or is there a way to enable it? You need rapetattoo mod and slavetats plus all it's requirments. It sends mod event to rape tattoos so the setting on there it will follow.
Lozeak Posted February 14, 2019 Author Posted February 14, 2019 19 hours ago, DarmanSejuk said: Is the slavetats section under 'other mod settings' just a place holder for now? Or is there a way to enable it? You need rapetattoo mod and slavetats plus all it's requirments. It sends mod event to rape tattoos so the setting on there it will follow.
Lozeak Posted February 14, 2019 Author Posted February 14, 2019 19 hours ago, DarmanSejuk said: Is the slavetats section under 'other mod settings' just a place holder for now? Or is there a way to enable it? You need rapetattoo mod and slavetats plus all it's requirments. It sends mod event to rape tattoos so the setting on there it will follow
Lozeak Posted February 14, 2019 Author Posted February 14, 2019 So I finished the script and started to implement on exsisting content. Deals give random device then follow a theme once one locks into the script. Nice to see different gags boots and stuff too. On device removal i made it so device is destroyed on removal rather than let you keep it. Now I'm back to working on modular deals which iono could take a few more days. I still have the issue of displaying rules to player in a convenient way that will work with localization methods that isn't a mountain of message boxs. Still long way from release tho! 5
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