Smoke Grenades - How to add them?Solved
Hello, how would I add the smoke grenades to the bandit camp shops? They don't seem to have it in the data file since forced wipe. 
edit your data in oxide/data/CompoundOptions.json and add this to your .json in Weapons_Bandit

{
"_comment": "Sell Smoke Grenade x 1 for Scrap x 10",
"sellId": 1263920163,
"sellAmount": 10,
"sellAsBP": false,
"currencyId": -932201673,
"currencyAmount": 1,
"currencyAsBP": false
}

example:
    "Weapons_Bandit": [

      ................

      ................

      ................

      ................

      ................

      {
        "_comment": "Sell Smoke Grenade x 1 for Scrap x 10",
        "sellId": 1263920163,
        "sellAmount": 10,
        "sellAsBP": false,
        "currencyId": -932201673,
        "currencyAmount": 1,
        "currencyAsBP": false
      }

    ],
In response to dIMjIM ():
edit your data in oxide/data/CompoundOptions.json and add this to your .json in Weapons_Bandit
...
Thanks for the help!
Locked automatically