2. Using global parameters - Paneedah/VMW-Balance-Packs GitHub Wiki

Global paramters are multipliers for all weapons. Want to make all weapons in game to have less damage? No problem! Set the damageMultiplier below 1.0.

  • For example, let's say you want the damage to be halfed for all weapons. You would set the damageMultiplier to 0.5.
  • Same logic applies to weapon recoil. If you want the guns to have more recoil, set it to more than 1.0!

If you do not want to modify any global parameters, you may either keep them there as 1.0, or simply remove it completely from your balance pack.

It should look something like this (if you do not include global paramters):

{
  "packName": "PandaPack",
  "version": "1.0",
  "packManagerVersion": "1.0"
}

An important note is that 1.0 means that it is NOT changing the multipler at all. If you do not want to modify the global parameters: You are free to delete the globalParameters part of the balance pack.


If you want to just change one of the global parameters (for example, recoil). You can simply not include the other parameter. Including both of the global multipliers is not required.

Example:

{
  "packName": "PandaPack",
  "version": "1.0",
  "packManagerVersion": "1.0",
  "globalParameters": {
    "recoilMultiplier": 1.0
  }
}