0 of 0

File information

Last updated

Original upload

Created by

Helgerd

Uploaded by

Helgerd

Virus scan

Safe to use

Tags for this mod

17 comments

  1. NylinTheBlade
    NylinTheBlade
    • member
    • 0 kudos
    Hey, 

    I came across your mod after trying to get a fix for my characters silly choice of stance during combat. I went with 2 rapiers. Your mod fixes his animation, which is great. He no longer looks like he is casually walking into combat. There is one problem and im wondering if you'd know how to help. When I dual wield rapiers (or two weapon fight using rapiers) he stabs twice with his main hand. Is there a possibility to make his second attack with his offhand instead? I know its such a minor thing but I just want my boy to stab with both needles, thats all.

    Thanks in advance!
    1. Helgerd
      Helgerd
      • member
      • 1 kudos
      Sorry, I don't know the solution to this issue.
  2. DonDomello
    DonDomello
    • member
    • 0 kudos
    Hi,

    current game version makes the character dual wield rapier when fencing value is set to piercing one handed or slashing one handed when off hand is free. Is there any chance that it can be fixed like in tweak or treat mod? I know it uses value: "no_two_handed_rapier". But nfortunately do not know how to make a standalon mod out of it.
    1. Helgerd
      Helgerd
      • member
      • 1 kudos
      ?dual wield rapier when fencing value is set to piercing one handed or slashing one handed when off hand is free
      Do you mean carry in two hands?

      You can check out source code on the github and make you own out of it. You will need to add something like WeaponVisualParameters_get_AnimStyle_Patch but containing required fix.

      BlueprintWeaponType_IsOneHandedWhichCanBeUsedWithTwoHands in "Tweak or Treat" seems to be what you want. You should ask edoipi for permissions on using his code.
    2. Rubixcola
      Rubixcola
      • member
      • 0 kudos
      Hi there!
      First of all, I would like to thank You for this mode.

      I think, he meant that - when dual wielding mode works properly. For example when I use rapier as my main weapon and dagger as off, mode shows everything correctly. But when I only have rapier and the other hand free mode is not working correctly. It shows corectly in inventory menu, but in real combat its messed up. Example :(As a right handed character) When I hold it in right hand it shows correctly in inventory menu, but in real combat shows as holding a spear with both hands. When I hold it in left hand(as right handed character), it looks "SUPER" cool as fencing character should look like, but only in menu. In real combat character holds in in front of their faces and there is no animation to attack. Could it be fixed, so it looks "SUPER" cool (as I described it above) in both menu and combat? Hope my explanation was clear :D Thanks

      Edit: I tried few combinations in your .json file, but non seems to work properly. I decided to install Tweak or tread mode together with yours and it works exactly as I described above (properly with "SUPER" cool animation and also hand down fix). Problem is that Tweak or Tread mode has so many things (not a bad thing, just not my kind of mode), that i do not wanna use it, because it breaks immersion for me. 
    3. Helgerd
      Helgerd
      • member
      • 1 kudos
      I tried few combinations in your .json file, but non seems to work properly.
      Interesting. Could you please provide examples of failing jsons? Perhaps report it via Bugs tab.

      Edit: perhaps you may need this mod. It adds "Tweak or Treat" fix for empty hand.
  3. Fleshka
    Fleshka
    • member
    • 0 kudos
    I suggest using PiercingOneHanded instead, I use it in my version of the fix, it looks more organic than slashing people with rapier :D 
    1. Helgerd
      Helgerd
      • member
      • 1 kudos
      Actually you can slash with rapier. 1,5 kg of sharp steel is 1,5 kg of steel.

      I'll take a look at what can be done regarding options
    2. Helgerd
      Helgerd
      • member
      • 1 kudos
      Done
    3. zhandao
      zhandao
      • premium
      • 76 kudos
      How are you going to slash with a rapier? For one, its center of balance is close to the hilt. That suggests that the blade itself lacks mass. Some density, also. but when you're looking for a real cut & thrust sword/katana/longsword... Honestly most are balanced around 6" from the hilt. Yes, that does change things. Because that results in torque - rotational force. Too lazy to go more into physics but it's all angular momentum. Secondly, that the blades are edged with enough mass so that the blades are strong. Actually, not just mass. The mere structure of mass of a flat blade reinforces itself horizontally.

      This is important because swordfighting is about leverage. Talhoffer and Liechentstein left very comprehensive manuals on the German Longsword. What you do if you're getting slashed at is to catch the top of the attacker's blade with the as close to the hilt as possible. That requires rotational force from your opponent whereas you're catching it with almost-linear force. That's one method of parrying.

      Honestly you're thinking the cut-and-thrust sword, which is how they dueled outside of battle. I think. I can't remember and I'm too lazy right now.

      Oh, and hot take: The only reason rapiers are popular is because it's in the Olympics, and the Olympics is where athletes are mere proxies. They don't care who wins. They care about which country won. That they are better than another country using these arbitrary sports.
    4. zhandao
      zhandao
      • premium
      • 76 kudos
      Besides that propaganda talk lol... Notice how sports fencing does not say "use a rapier." There's the foil, the épée, and the saber. So if you want to be realistic, you're going to have distinguish between rapiers.
    5. Helgerd
      Helgerd
      • member
      • 1 kudos
      Sorry, I'm far from sport fencing. Those are steel wires, for sure such things can't cut.
  4. SkGuarnieri
    SkGuarnieri
    • member
    • 0 kudos
    I don't get how to map the animations. You mind telling me how to?
    1. Helgerd
      Helgerd
      • member
      • 1 kudos
      Hello.

      Sorry for late reply.

      animation_map.json contains a map of which animation to replace with which one. By default it contains only a record for Fencing -> PiercingOneHanded. When the game needs to know what animation to use it calculates it and after that mod kicks in and checks if it is something from it's map. It it is - it will return mapped value, otherwise - it will leave the original one.

      So for a default configuration it would be: if weapon has animation "Fencing" - it returns "PiercingOneHanded" otherwise - it returns unmodified value.

      If you want to make a different mapping you can add more values in animation_map.json . For example:

      {
        "Fencing": "PiercingOneHanded",
        "Dagger": "Fist"
      }

      This will convert all "Fencing" animations to "PiercingOneHanded" and all "Dagger" animations to "Fist". The list of known animations is in the description.

      This map has JSON format: https://www.w3schools.com/whatis/whatis_json.asp and consists of a single object. Basically it is just a storage of key/value pairs.

      I hope that was helpful. Fell free to ask for more help.
  5. Sirnoname
    Sirnoname
    • member
    • 3 kudos
    When installing the mod using the UnityModManager, I get the message 'needs to update', though I'm updated to the latest version. Don't know if anyone else has run into this problem. I am using the Tweak or Treat mod, maybe there's a negative interaction there?

    EDIT: Nevermind, sorry, I was dumb. The UMM itself needed to be updated. Ignore this!
  6. dbankier23
    dbankier23
    • member
    • 0 kudos
    Please would it be possible to incorporate the other animation fix from Tweak or Treat?

    - if holding weapon in one hand with other hand empty, character does not keep the empty hand high in the air

    It looks really stupid that every one-handed weapon is held as if they're also carrying an invisible shield.
    1. Helgerd
      Helgerd
      • member
      • 1 kudos
      I believe that would be out of scope for this mod. You can use source as an example