1. The det caps in my server are not spawning ever. So can someone please explain to me how to get them to spawn in at least 1 each town.
     
  2. Use LootConfig and SpawnConfig.
     
  3. You need to be more specific. I tried doing everything but detcaps are not spawning. Help me! :D
     
  4. To increase the rate of detonator caps you can use LootConfig. After the configs are created, go to your oxide's config folder and edit the file LootConfig.json with something like notepad++.
    Search for this entry:
    Code:
    {
              "Key": 50.0,
              "Value": {
                "RollCount": 1,
                "RollWithoutReplacement": true,
                "LootResult": {
                  "ItemId": "DetonatorCap",
                  "StackSize": 1,
                  "RandomVariance": 3
                },
                "Children": []
              }
            },
    In this example there's a 50% chance of the detonator cap appear in loot crates. StackSize is the amount given and RandomVariance the variance quantity. So you can get from 1 to 3 per loot crate.
     
  5. The Key is not a percentage. It's a numeric chance against the other keys in that object.
    A key of 1 and a second of 2, will have the same chance as a key of 15 and a second of 30.

    So if he were to use your example, and he only had two objects, your example and the other with a key of 1. The Det cap will spawn 98% of the time.

    So you need to give them a chance based off of your other keys. Use simple math to work them out.

    You can also use the rcon command (or in console) to see the percentage chance of your loot table with: loot.stats
     
  6. Yeah, Noviets are right. You need to test to see what results you reach.
    On my server I use a config that results in this percentage:
    Code:
    6.8 %
                            0.6 % 2x Roach1986PaintMask (0)
                            1.2 % 2x RoachDefaultPaintMask (0)
                            1.8 % 2x RoachDigiCamoMask (0)
                            2.5 % 2x RoachDoubleStripeMask (0)
                            3.1 % 2x RoachEyesMask (0)
                            3.7 % 2x RoachGraffMask (0)
                            4.3 % 2x GoatFlamesMask (0)
                            4.9 % 2x GoatSideStripeMask (0)
                            5.5 % 2x GoatSkullMask (0)
                            6.2 % 2x GoatCamoMask (0)
                            6.8 % 1x DetonatorCap (0)
    If you want I can share the config with you, also the common loot crates drops weapons too on my config.