搜索结果: *

  • 用户:Veznan
  • 按日期排序
  1. 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);
    }
    Extremely late, but the reason why editing it didn't change anything for you is because it is Math.min(), it'll always return the smaller value between the (formula, 1f), so if you make the formula result infinitely big it'll just return the 1f
  2. Trying to find Combat foot speed formula(Anyone know how to get to cs files?)

    Been trying to find the formula for battle speed in relation to weight & athletics, I've been able to figure out that its in a file called SandboxAgentStatCalculateModel.cs, but I'm not a modder and I don't know how to access it. Can anyone help and explain the process?
后退
顶部 底部