Mount & Blade II: Bannerlord

File information

Last updated

Original upload

Created by

FaLKReN

Uploaded by

FaLKReN

Virus scan

Safe to use

14 comments

  1. FaLKReN
    FaLKReN
    • member
    • 15 kudos
    Locked
    Sticky
    FAQ

    The mod is not working?
    If you have the latest version of the game, subscribed to the mod, enabled it in the launcher and my mods are below the native modules and you don't crash, the mod is working.

    My units don't have the [Bard] prefix as in the screenshots?
    Yes, that is how it's intended to be. I use that prefix for my own testing in my own game, but when I upload to the Steam Workshop I remove it. In your game, the units WILL NOT have the [Bard] prefix

    Help, I crashed?
    If you think you crashed because of my mod, send me the crash report so I can take a look at it. Otherwise I have no way of knowing why you crashed.

    Is it compatible with X, Y or Z
    I created this with maximum compatibility in mind, but I can't make it compatible and test it with every mod out there. Please try it out before asking.

    Is it compatible with RBM?
    Yes, with caveats. It is compatible with their AI and Arena modules. It is NOT compatible with their Troop Overhaul (for obvious reasons) and only semi-compatible with the Combat Module. I would recommend sticking with only AI and Arena. Also, see above.

    Balance seems off?
    While I do my best to test units one on one to make sure nothing roflstomps other units, I'm just one man, and can't test every unit against every other unit in thousands of scenarios, so I might have missed something. If you think a unit is OP, or a faction's combined arms power is way too strong let me know. Please send me a detailed list of army compositions so I can test that scenario and see what I can do about it.

    X unit should use this or that, could you change it?
    Please provide your reasoning in the comments, with historical sources if possible, and I'll consider the change if it makes sense.

    How did you make your shields look like that?
    It's a mod called Simple Shield Patterns. It's available on the Nexus. Head over there and say hi to the mod author.

    This mod sucks, I hate it?
    That's ok, I can't make it appeal to everyone. No hard feelings.
  2. Actualize
    Actualize
    • supporter
    • 0 kudos
    since the game isn't finished yet  even "released", i'm always welcoming mods.

    So i played your mod  and ad some point i've been alarm when i noticed that last tiers infantry of aserai and some from other faction don't have spear to form a defence line against horse cavalery.
    Since infantery get a lower armor then the vanilla one, not having something to hold the line against heavy cavalery charge is like a heavy weakness.

    is it intended  to offer a weakness like this one  ?
    1. FaLKReN
      FaLKReN
      • member
      • 15 kudos
      The intention with the Aserai was to make them very powerful at skirmishing. If they still have ammo when they engage cavalry that javelin they use is not the worst against cavalry. At least that's how I balanced them, let me know if you see them performing bad against cavalry. (Also note, that I gave the Aserai very decent cavalry, especially their noble line, so they should be able to counter cavalry pretty well in general.)
  3. Nickball97
    Nickball97
    • supporter
    • 0 kudos
    When you say the mod is only "semi" compatible with the combat module of RBM, what do you mean? Are there conflicts with the way RBM changes armor values? 
    1. FaLKReN
      FaLKReN
      • member
      • 15 kudos
      The armor stuff is fine, but the modifications they've made to weapons will not go well with my mods. It won't cause crashes or anything, but the delicate balance I've built will be all over the place with the combat module. I use RBM only for their AI and Arena.
  4. FruitLoops32
    FruitLoops32
    • member
    • 0 kudos
    Mod looks better and more realistic than the vanilla game. Thank you for creating it!

    Looking forward it would be awesome if you did similar work to the minor clans, mercenaries, and militia troops too!
    Thanks again for all the work you put in modding.
  5. valy24
    valy24
    • member
    • 0 kudos
    great mods! congrats!
  6. sanyaog
    sanyaog
    • member
    • 0 kudos
    Hello, dear creator! I'm waiting for your Khuzait's amry overhaul :)
    Could you make it to drop full factions update? 
    1. schnieder09
      schnieder09
      • member
      • 0 kudos
      yee just thought the same xD really nice job on the  overhauls but the khuzait are missing
    2. FaLKReN
      FaLKReN
      • member
      • 15 kudos
      You guys are in luck, it's being released in the next couple hours.

      EDIT: It's out now.
  7. Hobosapiens
    Hobosapiens
    • supporter
    • 7 kudos
    I really like what you did, i track all your reworks for my next pt.
    Bravo dude
    1. FaLKReN
      FaLKReN
      • member
      • 15 kudos
      Thanks man! I'm glad you like it. :)
  8. OphiasXu
    OphiasXu
    • member
    • 1 kudos
    If the mod has new NPCCharacter Id, the game will crash after the mod is uninstalled. Discard player modded troops is not enough, npc parties can still crash.

    One solution is to use code to replace all modded troops into original ones. Like:

    foreach (MobileParty party in Campaign.Current.MobileParties)
    {
    ?var troopRoster = party.MemberRoster;
    ?for (int j = 0; j < troopRoster.Count; j++)
    ?{
    ??var ele = troopRoster.GetElementCopyAtIndex(j);
    ??CharacterObject character = ele.Character;
    ??if(character.StringId == "aserai_tribesman_bard")
    ??{
    ???character.StringId ="aserai_tribesman";
    ??}
    ?}
    }
    1. FaLKReN
      FaLKReN
      • member
      • 15 kudos
      I'm not very good with programming, so this might be beyond my capabilities to implement.