File information

Last updated

Original upload

Created by

The6thMessenger

Uploaded by

The6thMessenger

Virus scan

Safe to use

Tags for this mod

Mod articles

  • PATCHING - HOW TO USE

    The use of this mod is just as simple as adding the Enchantment into the weapon, such as in this way, the weapon attachment, the Object Modification, or OMODs.

    But if you want, you can also make your own configuration.:
    ...

  • MECHANICS - Understanding the Formula

    Jams if Random Number between 1 and IntegerRange is Less-Than JamChance

    NetJamChance = BaseJamChance * (1 + ((ChancePerLuck / 100) * (ShotCount - Pity Shots)))

    IntegerRange = (100 - (MinLuck * ChancePerLuck)) + (LuckInt * ChancePerLuck)

     > MinLuck - Minimum amount of Luck to push the chance back to x/100
     > ChancePerLuck - the amount of chance added per point of Luck. As opposed of simple x/100, it would be at (x/(100 + (ChancePerLuck * Luck))) e.g. 5 Luck with 5 Chance = 1/125. This means that the event is rarer. It also controls how much additional chance is added to the NetJamChance, that increases the chance of jamming when the weapon is used continuously.
     > PityShots - The amount of shots before the weapon is eligible to ja...