UnionFaps
Ersh from patreon
Ersh patreon

Open Animation Replacer 0.9.0

🕑 Added 2023-05-15 18:37:01 +0000 UTC

Comments

I don't think I have it anymore if it's not uploaded here. Why would you want it? It's massively outdated.

Would you send me the exact version 0.9.0? I would really be thankful.

I'll have a thread on the Nexus page for more condition suggestions :D

vai1lyn

The new conditions are a game changer! For instance Scale/Height in regards to something like Animated Traversal, or IsCurrentPackage in scenes :D

Smooth

I'm excited to be able to apply multiple animations with MovementSpeed

All of them (well aside from pre 1.5.97 but nobody should care about those)

theoneGalen

I apologize for the ignorance, but which versions of the game does this plugin work with? I am building a list from 1.6.640.

yup!

VioLeTXD

Will this work out of the gate with any existing DAR-based animation mods I have installed?

Thanks for the detailed report! Seems like an oversight, should be a simple fix.

vai1lyn

Hey! Using version 0.9.X, I have noticed that some of attacko's bosses (f.i. Nirwinye) don't use their full moveset anymore. I have debugged this using the ingame GUI, and it looks like the runtime legacy condition converter seems to incorrectly convert some percent checks to static value checks. For instance, Nirwinye has a second phase that triggers at less than 66% percent of health. Here is the original DAR condition, as provided in attacko's mod: NOT IsActorBase("Skyrim.esm" | 0x000007) AND IsEquippedRight("ShadowofMereth v 0.1.esp"|0x02e80a) AND IsActorValuePercentageLessThan(24, 0.66) AND NOT HasMagicEffect("ShadowofMereth v 0.1.esp"|0x06127D) AND Random(0.99) However, ingame, the health check fails, even if the boss is largely below the threshold. Here is a screenshot of the OAR GUI (note: priorities have been altered compared to original mod): https://imgur.com/a/76dbvqh This shows that the health check is still red, despite the boss being damaged enough (as displayed in the boss bar). Furthermore, it says that the compared value is interpreted as a static 0.66, instead of the 66% of the original. I know that I can manually fix it by converting & adapting the configs, but I just wanted to mention it since it breaks out-of-the-box backwards-compatibility and might confuse a lot of users at release :) Edit: forgot to add the screenshot link :D

Yeah. New features like keyword literals aren't supported in the legacy format anymore. That was a leftover from the early stages of OAR when I hadn't finalized the new structure yet. The support actually broke by accident when I reworked some things recently, and you just made me aware of that. However I was already considering removing support, because it ultimately makes no sense (and possibly sends the wrong message) - keyword literals are not in DAR, so this legacy structure would fail to be read correctly if the user has DAR installed, anyway. So any sort of dual compatibility where a mod would work both in DAR and OAR is not possible in this case. To use new features, use the new structure, basically. Don't expect any new stuff to work in legacy structured mods - there's 100% backwards compatibility with DAR structured mods, but no new things. There's a super easy way to convert a DAR config to OAR - when a legacy mod is loaded, it's automatically converted to the new format, with all the new features disabled like they would be with DAR. So when you find it in the ingame UI, you can turn on author mode and click "copy submod config to clipboard" - everything will be in OAR format ready to be pasted into a config.json into your OAR structured mod. Or you can turn on user mode and save a user config, and copy that user config into your folder and rename it to config.json. Both ways result in the same thing and will save you a bunch of time. You could also copy/paste the condition set if you have both the legacy version and new version loaded.

vai1lyn

There seems to be an issue with some legacy conditions using v0.9.2 in my game. I want to have specific idle animations when the player is wearing a spell in the left hand, and certain types of weapons in the right. To minimize the conditions, I have generated keywords "AnimCndSp", "AnimCndM1" and "AnimCndM2", and distributed it to spells and weapons using Keyword Item Distributor. Then, I have the following (legacy) condition for the idle: IsEquippedRightHasKeyword("AnimCndM1") OR IsEquippedRightHasKeyword("AnimCndM2") AND IsEquippedLeftHasKeyword("AnimCndSp") However, the animation is not triggered ingame. This approach worked fine using v0.8. The IsEquipped*Type conditions don't seem to be affected by this, since most of my MCO movesets use this and still work. I have checked the KID log, and the keyword is distributed correctly in the runs for 0.9, so I don't think it is a KID issue. Edit: to confirm that Type conditions aren't affected, here is a conditions.txt for a dagger moveset: A: IsEquippedRightType(2) AND B: IsEquippedLeftType(0) OR C: IsEquippedLeftHasKeyword("AnimCndSp") This moveset works fine when wearing only a dagger (A -> true, B -> true, C -> false, global -> true), but doesn't work when having a spell in the left hand (even though it should, since A -> true, B -> false, C -> true, global -> true)

0.9.2 - Everything is working like a Charm! +++++++

Post a crash log? Sounds like your game went pretty crazy though.

DarkPhoenix

I just had a game where it started loading random animations right at the beginning (I believe it activated the animations for There Is No Umbra even though I'd just started and hadn't even begun the quest yet), and when I cleared out the cache, I got a consistent CTD on startup afterwards.

Like I said, it was just a bug. Things happen. Delete the .ini (SKSE\Plugins\OpenAnimationReplacer_beta.ini, if you're using Mod Organizer 2 it'll be in the overwrite folder) so it's regenerated on launch with the correct default button.

Daniel Mezentsev

I'm using 0.9.2 and I cannot play normally because the left mouse button switches the overlay of your mod. I don't understand how to change this button either... I'm not a modder, I just want to play with the installed animations, I don't want to make any changes, It was working fine for me before this issue. Please help to solve the issue, otherwise I will return to DAR.

0.9.0 and 0.9.1 had a bug that caused the menu key to not be initialized to Insert correctly. Either rebind the key in Settings menu or delete the ini so it's recreated.

Daniel Mezentsev

Hey Ersh. Sorry for the stupid question, but how can I close your mod menu and play the game? Every time I click LB - your mod menu shows up.

Okay so it stopped after pressing tab again, so it breaks if I switch via ALT + TAB. Well that's interesting. Anyway another problem I found: The legacy condition IsEquippedRightHasKeyword(WeapTypeKatana) is incorrectly read, it reads the keyword as WeapTypeKatana). Also if I want to change the keyword, there are two input fields for the keyword to enter, but only the one below works. :) Edit: These two mentioned input fields are saved into the config.json, which results in: "conditions": [ { "condition": "IsEquippedHasKeyword", "requiredVersion": "1.0.0.0", "Keyword": { "editorID": "WeapTypeKatana" }, "Keyword": { "editorID": "WeapTypeKatana" }, "Left hand": false } Edit 2: IsEquippedRightHasKeyword(WeapTypeKatana) AND is read as "WeapTypeKatana) AND" so it seems that you forgot to include the end ) as a limit when you're reading the string, at least I think that's the problem. :D

Hi Ersh, I seem to have a weird bug with the GUI. Whenever I try to update (legacy) conditions and I click in one of the input fields, it starts selecting every input field in a loop, which stops me from editing the one input field I actually want to edit. Edit: It worked again after I restarted Skyrim, but that's still weird and I'm not sure what happened.

Have you updated EVG Conditional Idles OAR? I've uploaded a new archive because of the changes to the json format in 0.9.0, the old version could probably result in injured/tired animations playing like that. Forgot to mention that you should reinstall them.

Jake0233

Thanks for the update, but somehow when I installed OAR even with the EVG Conditionals OAR led to unusual animations which led to my characters and my own run like this https://imgur.com/a/y3VdRvU. Note that I'm using a couple of DAR animations like Gesture Animation and Lively Animation Remix mods. I'm also using 1.6.640 (AE). Hope this will be resolved. Though my animations are back to normal when I converted back to DAR. Thanks again for the update and look forward for the release.

Smooth

It's amazing how close the official release is! thank you

Thank you Ersh. The latest 0.8.1 was already very good in term of DAR compatibility. In fact, I didn't experience any problem since installing it. Great work!

metrocube

I can't wait to try. Thank you very much!


More Creators