-
Posts
130 -
Joined
-
Last visited
-
Days Won
36
Content Type
Profiles
Forums
Gallery
Downloads
News Articles
Modding Wiki
RDR2 Native Database
RDR2 Native Parameters
RDR2 Player Clothes Database
RDR2 Ped Voices Database
RDR2 Ped Speech Lines
RDR Modding Tutorials
RDR2 Ped Model Database
RDR2 Animations Database
RDRFR Changelog
RDRFR Installation Guide
RDRFR Features
RDRFR Settings
LML User Contributions
Everything posted by AnymYo
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
-
-
Lenny's Simple Trainer RDR 1 PC
AnymYo commented on LMS's file in Red Dead Redemption 1 (PC) All Mods
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Make sure that this is the only mod which is using "physicstasks.ymt" and "weapons.ymt". CERR 2.0 is EA because all this is still WIP. A lot has changed recently. New parameters have been unhashed, there are new ways to create reactions and there is a hot reloader for the physics stuff now. All of this prompted me to start from scratch so that I could realize things the way I imagined them without the limitations of the existing CERR version (which is the same file since day 1). Like every euphoria mod, CERR 2.0 is a matter of taste. There is still the option of using version 1.08 or AREP. -
A.R.E.P (AnymYo's Reworked Euphoria Physics)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
The tuning set which is triggered when the health is 0 is "FatallyInjured". Changes in configureBalance can affect the stumbling or you can set the FatallyInjured set to <Enabled value="false"/>. The falling is caused by the bullet force + hit angle and a single CNmParameterRandomBool called "failMustCollide". Its tweaked to 0.5 (50% chance to be "true"). You can change it to 1.0. That forces a NPC to balance until the upper body hits the floor. Also adding the following to configureBalance in FatallyInjured: <Item type="CNmParameterFloat"><!--fallMult--> <Name>fallMult</Name> <Value value="0.2"/> </Item> <Item type="CNmParameterInt"><!--maxSteps--> <Name>maxSteps</Name> <Value value="10"/> </Item> That should increase the balancetime even more. -
A.R.E.P (AnymYo's Reworked Euphoria Physics)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Thanks! The headshot preset in AREP 1.1 also contains "dramatic" results but these are depending on chances. I dont want the headshots to be too repetetive, thats why I set the chance to 10% dramatic, 90% drop. But its easy to tweak it. You need to open "physicstasks.ymt" with Notepad++. I recomment installing the "xml plugin" so you can collapse all sections in the file by pressing ALT+SHIFT+0. Search for: 0x51109753 This will lead you to the headshot preset which will look like this: The easiest way to make NPCs grabbing headshot wounds and stumble around is changing <Enabled value="true"> to <Enabled value="false">. If you want to try to change the parameters which are affecting the random behavior output, you need take a look to the <Messages> section. You can change the values from these parameters to make significant changes on headshots in AREP: <Name>maxBalanceTime</Name> is controlling how long a NPC is allowed to balance. Minimum 0.0 seconds, Maximum 3.0 seconds. <Name>giveUpHeight</Name> is the allowed distance from the lowest foot and the "center of mass" of the NPCs body. Lower values preventing NPCs from falling. Minimum 0.30, Maximum 1.10. (Change it to Min: 0.10, Max: 0.10 or delete it completely) <Name>useCStrModulation</Name> is activating a custom upper and lower body strength of the NPC. The chance that this is "true" is at 0.8 (80%). If its "true", the NPC will collapse much faster (due to the 4 parameters below). Set smaller values to decrease the chance of collapse (try 0.1 - 0.0). <Name>enabled</Name> is controlling if woundreaching is allowed or not. Its 0.25 (25% chance of reaching). Wound reaching happens when the NPC standing still. If you want to increase the chance, try higher values like 0.7 - 1.0. I recomment using the physicstasks hotreloader from @TuffyTown. This allowes you simply press F10 while the game is running and it reloads "physicstasks.ymt" directly to the game. (You dont need to restart it to see your changes in the file) Link: https://www.nexusmods.com/reddeadredemption2/mods/4162 -
A.R.E.P (AnymYo's Reworked Euphoria Physics)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
@AaronPvP Yes! In AREPS physicstasks file you'll find a few new tuning sets but those were WIP and are unfinished -> Means that these tunigsets can lead to unwanted or unfitting NPC shotreactions. But to create a new output from existing tuning sets, you can mix them in weapons.ymt. For example, you can also use <NmShotTuningSet>BOW</NmShotTuningSet> for a pistol. The game would execute the BOW tuning set with all the impulses and damage properties of a pistol. That would lead to a slightly different BOW tuning set output as well when you apply it to a pistol and use this pistol ingame. If you like to play around with weapons.ymt file, you might find the following parameters interesting because all of them are doing something with the physics: IMPORTANT: I use a really low global impulse for AREP and impulse parameters which can lead to a kind of impulse limit (these could limit the impulse mag from weapons.ymt as well). <CWeaponInfoBlob> -> <Infos> The first info section is for general ammo types. These ammo changes counting globally -> Means: What you change here is affecting this ammo type, no matter which weapon is used. The second info section contains weapons and damage modes (ammo types with specific parameters especially for THAT weapon): Example: <Name>WEAPON_REVOLVER_CATTLEMAN</Name> Ammo types (high velocity in this example) <WeaponForce> (you can add more Bone-Items in <OverrideForces> to add more areas on the NPCs body where the bullet force is different): FragImpulse: <WeaponNM> Changes here counting for the weapon base. If you add a tuningset here and to a damageMode, you mix them together. I assume that "KnockdownCount" will execute the "knockdown" tuning set after a specifit amount of hits or time (seconds). In that case that wouldnt do any difference becasue this tuningset is disabled in AREP physicstasks.ymt. I recomment using the rampage trainer in combination with "Main and Legal Menu Skip 1.0.0" to reload weapons.ymt without closing the game. If you made your change in weapons.ymt and want to test it, open the trainer ingame, go to SETTINGS -> CORE -> LANDING PAGE. Youll get much shorter loading screen and the game will also load your new weapons.ymt file to the running game. Do these steps after each change you made in weapons.ymt. -
A.R.E.P (AnymYo's Reworked Euphoria Physics)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
You can try it but I havent tested anything about that. You will have different bullet forces and mixed ragdoll sets but I really dont know if that works well or not. Also, I cant remember if there are completely new created ragdoll sets in C.E.R.R 2.0 which are called by weapons.ymt. If yes, the game wont find them in A.R.E.P physicstasks.ymt and will execute the A.R.E.P "base" ragdoll behavior which is a kind of default reaction in A.R.E.P. -
A.R.E.P (AnymYo's Reworked Euphoria Physics)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
I implemented bleedout stumbling with the chance to recover back to standing animation instead of falling always. Im happy that someone noticed 😄 At the moment, Im trying to create 2 more optional versions which are limiting the stumbling on rifle shots and overall (just in case someone preferes this). After that, this project is finished and I will create a little showcase video. Edit: I think the versions are on hold for now but I uploaded a preview video. -
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Thank you! I got some feedback on nexus mods as well from people who are asking for the new CERR update. I want to release it when Im happy with it and I really dont know when this will be. This is why I took a nearly finished CERR update (which I created before the physicstasks hotreloader-tool was released) and merged some of the new stuff from the current CERR update to it. I will release it as a standalone ragdoll mod (without weapons.ymt customisation) to share something of the new stuff with you. I will name it "Arep" (Anymyos Reworked Euphoria Physics) and it will provide western style tuned exaggerated shot reactions. Ill try to release it later this day. Stay tuned! -
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Previously I thought that I could increase the fire writhe time with some modifications in explosion.ymt but unfortunately that was not the case so I decided to remove it from the mod. It doesnt matter if you have mutliple mods which are using the same files because to my information, lml is just picking the mod with the highest priority and use the files from it (loadorder). So it doesnt matter if its using the weapons.ymt file from RDOFF or CERR because both files are the same. So lml will always load the weapons.ymt file which is compatible with CERR, no matter if its using the one from RDOFF or from CERR. But it can be problematic when lml loads a weapons.ymt file from a complete different mod. -
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Hi! This is new to me. The game is using a bunch of RIG presets which are affecting the ragdoll slightly (big, thin, small, male, female). In addition to this, the game differentiates between armed and unarmed NPCs as well as NPCs which are holding a single handed or a two handed weapon. You also need to take into account that all weapon and ammo types are affecting the ragdoll behavior of any NPC. Besides that, bleeding shots are disabled for story NPC by default. This could cause the game to unload the bleedout preset which could affect the ragdoll a little but not in a way that its complete different or extreme noticable... -
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc
Thanks! The problem is that these two mods are sharing the same file (weapons.ymt). I will put my weapon.ymt changes in a file called "weapons_mp.meta" in the future. When certain conditions are matched, the game should be able to combine all values from weapons_mp.meta and weapons.ymt but I really cant tell if the mod will work properly with that. The reason why as good as nobody wants to make compatibility patches is that you have to maintain your patches in case that the creator of the other mod is releasing a update. We will see what the future brings 🙂 -
@Gunter Severloh Just played the first hosea hunting mission and got ambushed by bandids while I was sitting on the campfire and crafting stuff. I saw that there is a setting in the .ini file called "DISABLE_DURING_MISSIONS". When I set this to 1, do I have to restart the game after each completed mission to re-enable the hideouts?
- 34 comments
-
- 1
-
-
- roaming bandits
- hired gunmen
- (and 3 more)
-
Cineastic Euphoria Ragdoll Rework (C.E.R.R)
AnymYo commented on AnymYo's file in Red Dead Redemption 2 Misc