Jump to content

unuroboros

Premium Member
  • Posts

    66
  • Joined

  • Last visited

Everything posted by unuroboros

  1. Awesome. :) In case it helps for this kind of thing in the future, Tes5Edit has a related feature that makes finding merge conflicts super-easy. Load all your mods at the start, wait til background processing is done, then right-click anywhere on the left and choose "Apply Filter For Cleaning". This can take a while. With 100+ mods it can take 5+ minutes. When it's done, you get everything color-coded, and red means a merge conflict. Even better, you can now right-click on the right side and choose to "Hide no conflict rows" to focus on only the diff's. Happy munging. ;)
  2. I'm using these three mods as well, so I'll take a stab at those questions: Make sure you only ever have one of the WIC ESP's active - NMM may activate them all, so double-check. I think in some previous version of W&C you had to use the player-only version of WIC, but the current version states, "If any of the main plugins are installed, fur cloaks will be equipped by NPCs as part of Cold Gear." Any time you've got two mod's changing the same leveled lists, you'll unfortunately need a merge. My advice is to learn to make these yourself, since mod authors won't always release them, or they may be out of date. Plus you may have three mods touching the same LL, and then you have no choice but to make your own merge. Wrye Bash is the tool most people recommend for this job, but I use Tes5Edit myself because I prefer the hands-on drive-it-like-a-stick approach. Neither is that hard to learn, there are lots of tutorials out there. I'll have to speculate on this one, but my hunch is that this may not be safe, depending on circumstances - which NPC's currently have cloaks, or which cloaks you currently have, cloaks that have been loaded into non-respawning containers, that kind of thing. Best case scenario you'd have just a little more bloat in your save... worst case you get CTD's. :\
  3. I'm guessing you needed a clean save? That happens to me a lot, I keep a clean on-hand at all times now. :p I am a big fan of double-tap keybinds in other games (GW2 in particular) so I'm glad you got it worked out! Is this a mod you'll be releasing on Nexus?
  4. While I can't help you out over Skype, I can recommend you read through / watch as many tutorials as you can stomach for Tes5Edit. For merging and cleaning this is the most powerful tool you can get your hands on. You could use it for your first item too, though that might be more straightforward in the CK itself. For your last item, you just need the CK itself. Tes5Edit isn't that tough to learn if you're already pretty familiar with Skyrim in general. Being able to drag-drop values between ESP's and colorize / filter for diff's makes this tool pretty much a must-have for the kind of work you're looking to do.
  5. You do this with Tes5Edit, it's one of the things that tool is very good for. There are plenty of tutorials out there already, but here's the essence of what you'll need to do: Launch Tes5Edit, right-click the list that first shows up, 'Select None'. Then check-box only The Art of Magicka. You may need to look up what its actual ESP file is, sometimes they're named differently. The list is in the same order as your load order, that should help. Expand the mod's node, then expand the Armor node. There should be records for each of the robes you listed. You'll also notice that Tes5Edit shows you two columns: the first column is the original record from Skyrim.esp, and the second column shows how this ESP is overwriting that record. Delete the record in The Art of Magicka. By deleting the record that is overwriting Skyrim.esp's record, the original Skyrim.esp record once again takes effect. Tes5Edit will warn you about the action, since of course you are making changes to The Art of Magicka. If you re-install that ESP, your changes will be lost. A cleaner way to do it is to make an "override": On each of the armor records, right-click the column header for Skyrim.esp and choose "Copy as override into." Tes5Edit lets you create your own new ESP this way. By putting it lower in the load order than The Art of Magicka, you can have Skyrim.esp's original record data overwrite (back to original values) the records for those armors.Sorry for the terse tutorial - as I said, there's more and better information out there on how to use Tes5Edit, if you need something more in-depth. Or PM me if you get stuck on a particular step. I've used Tes5Edit for this kind of editing before, once you get the hang of it you'll see how invaluable the tool is. :)
  6. Papyrus requires you to qualify the script that a function is in, unless you "import" it. GetMappedKey is in the Input script. So you need to call it with "Input.GetMappedKey", or use "import Input". Also, make 200% certain that you actually have Input.pex in your Data\Scripts folder.
  7. I've passed around Actors (and every other kind of type) between functions without problems. The only time you do have to be careful is with an ObjectReference changing containers, since the reference ceases to exist when it goes into a(nother) container - meaning OnContainerChanged can only really make use of its 'self' when dropping items. z, I'm kinda stumped, but I think you're on the right track with the Debug "breakpoints", and I'd suggest adding two more: a TEST4 just inside the IsEquipped block, and a TEST5 just inside the While block. One of those has got to be the culprit, but which?
  8. Here's a quote from the Cinematic ENB that may help: I don't run nVidia on my gaming rig, but I think you almost certainly want AO turned Off, FXAA Off, and AF "Application controlled" - then set Skyrim's own option to at least 8. The INI settings above then tell Skyrim not to request those features either - the goal is to let ENB handle all of this, not Skyrim, not your GPU. I can't attest to it firsthand, but apparently having the nVidia settings on doubles your performance penalty. If you're not sure if ENB is working at all, it probably isn't. Any recent version of ENB puts a super-obvious series of text strings in the upper-left of the game as it's starting (right at the logo), the first of which gives you the version / watermark, the second telling you if ENB's SSAO is on or off.
  9. Script is attached to the armor object, I'm assuming. You've double-checked the value of the Armor1 Property? Tried a clean save? (Changes to Properties can behave strangely in a savegame where that script already exists, already with that Property.) The only thing that really stands out to me is that your while loop depends on both the armor being equipped and CountVal already being greater than 3. Maybe try: Debug.Notification("TEST3. CountVal is: " + CountVal)
  10. CTD at the logo is ALWAYS a dependency conflict. The good news is that finding the problem itself is pretty easy. Bad news is you might not be happy to find out one of the mods you really like (now) requires DLC you don't have. There are many, many posts already about this problem, but here's the gist: Download Tes5Edit, run it and look for the last error it reports. It will tell you exactly which mod has a dependency you are missing.
×
×
  • Create New...