搜索结果: *

  1. BL Coding Weapon Part Crafting

    I'd love to be able to tweak the C# for crafting too. Looks pretty complicated atm. The game has an amazing system for determining weapon stats, but can definitely be improved. Some weapons have broken stats.
  2. BL Coding How to modify weight effect on speed?

    I found this in the game files, but editing it does not seem to do anything. Still looking.

    public static float CalculateMaximumSpeedMultiplier(int athletics, float baseWeight, float totalEncumbrance)
    {
    return Math.Min((900f + (float)athletics) / 1000f * (baseWeight * 200f / (baseWeight * 2f + totalEncumbrance)), 1f);
    }
  3. BL Coding How to modify javelin damage without also modifying spears?

    Thanks. That's what I needed to know.

    I eventually found it in Crafting/CalculateMissileDamage. They are simple multipliers, not tied to velocity as I was expecting. Editing them allows me to fix them however I like.
  4. BL Coding How to modify javelin damage without also modifying spears?

    I increased all my spear's damage in crafting_pieces.xml, which had the affect of also increasing thrown spear damages by a larger amount because the game seems to autocalculate thrown damage based on the cutting factor listed in crafting_pieces.xml. Anyone know where to edit that calculation...
  5. BL Coding How to modify weight effect on speed?

    I made a mod for stronger armor but need to balance it with harsher speed restriction. Is it possible to mod the effect of weight on character speed? I tried adding a x3 to weight for all modifiers (thick/splintered/nomodifier etc) but it did not seem to have an effect in game. I would rather no...
  6. TW Probability calculations are incorrect, 0 does not mean 0

    Is this why I see a negative probability of being able to sneak into a city sometimes?
  7. Does armor weight actually affect run speed?

    I am trying to make a mod where weight much more significantly affects speed, but can't find a script for it in the game files. If I increase weight of an item by 300, I notice that it cuts speed to about 20% or so of original, so I know the mechanic is in the game somewhere. It just doesn't do much.
后退
顶部 底部