1. Hey guys, my Rust server is x3 but some people who put too much hours raid way too often and people who don't play still get tons of sulfur, I use gather manager but is there a way to make JUST sulfur more scarce? From what I see gather manager cannot do this, any ideas?
     
  2. You can use Gather Manager for that, it takes options. Example:

    Code:
    "Options": {
        "GatherDispenserModifiers": {},
        "GatherResourceModifiers": {
          "*": 5.0,
        },
        "MiningQuarryResourceTickRate": 3.0,
        "PickupResourceModifiers": {
          "*": 5.0,
          "Hemp Seed": 2.0,
          "Mushroom": 2.0,
        },
        "QuarryResourceModifiers": {
          "*": 5.0,
        },
        "SurveyResourceModifiers": {
          "*": 2.0
        }
      },
     
  3. But that edits all ores, how do I nerf just sulfur
     
  4. Code:
      "Options": {
        "GatherDispenserModifiers": {},
        "GatherResourceModifiers": {
          "Sulfur Ore": 1.0
        },
    That would set it on vanilla rates, 2.0 is x2 etc

    My server is 2x just edit my config

    Code:
    {
      "Messages": {
        "Dispensers": "Resource Dispensers",
        "HelpText": "/gather - Shows you detailed gather information.",
        "HelpTextAdmin": "To change the resources gained by gathering use the command:\ngather.rate <type:dispenser|pickup|quarry|survey> <resource> <multiplier>\nTo change the amount of resources in a dispenser type use the command:\ndispenser.scale <dispenser:tree|ore|corpse> <multiplier>\nTo change the time between Mining Quarry gathers:\nquarry.tickrate <seconds>",
        "HelpTextMiningQuarrySpeed": "Time between Mining Quarry gathers: {0} second(s).",
        "HelpTextPlayer": "Resources gained from gathering have been scaled to the following:",
        "HelpTextPlayerDefault": "Default values.",
        "HelpTextPlayerGains": "Resources gained from {0}:",
        "InvalidArgumentsDispenserType": "Invalid arguments supplied! Use dispenser.scale <dispenser:tree|ore|corpse> <multiplier>",
        "InvalidArgumentsGather": "Invalid arguments supplied! Use gather.rate <type:dispenser|pickup|quarry|survey> <resource> <multiplier>",
        "InvalidArgumentsMiningQuarrySpeed": "Invalid arguments supplied! Use quarry.rate <time between gathers in seconds>",
        "InvalidDispenser": "{0} is not a valid dispenser. Check gather.dispensers for a list of available options.",
        "InvalidMiningQuarrySpeed": "You can't set the speed lower than 1 second!",
        "InvalidModifier": "Invalid modifier supplied! The new modifier always needs to be bigger than 0!",
        "InvalidResource": "{0} is not a valid resource. Check gather.resources for a list of available options.",
        "MiningQuarries": "Mining Quarries",
        "ModifyDispenser": "You have set the resource amount for {0} dispensers to x{1}",
        "ModifyMiningQuarrySpeed": "The Mining Quarry will now provide resources every {0} seconds.",
        "ModifyResource": "You have set the gather rate for {0} to x{1} from {2}.",
        "ModifyResourceRemove": "You have reset the gather rate for {0} from {1}.",
        "NotAllowed": "You don't have permission to use this command.",
        "Pickups": "pickups",
        "SurveyCharges": "Survey Charges"
      },
      "Options": {
        "GatherDispenserModifiers": {},
        "GatherResourceModifiers": {
          "Animal Fat": 2.0,
          "Bear Meat": 2.0,
          "Bone Fragments": 2.0,
          "Cloth": 2.0,
          "High Quality Metal Ore": 2.0,
          "Leather": 2.0,
          "Metal Ore": 2.0,
          "Pork": 2.0,
          "Raw Chicken Breast": 2.0,
          "Raw Human Meat": 2.0,
          "Raw Wolf Meat": 2.0,
          "Stones": 2.0,
          "Sulfur": 2.0,
          "Sulfur Ore": 2.0,
          "Wood": 2.0
        },
        "MiningQuarryResourceTickRate": 5.0,
        "PickupResourceModifiers": {
          "Cloth": 2.0,
          "Metal Ore": 2.0,
          "Stones": 2.0,
          "Sulfur Ore": 2.0,
          "Wood": 2.0,
          "Mushroom": 2.0
        },
        "QuarryResourceModifiers": {
          "High Quality Metal Ore": 2.0,
          "Metal Fragments": 2.0,
          "Metal Ore": 2.0,
          "Stones": 2.0,
          "Sulfur Ore": 2.0
        },
        "SurveyResourceModifiers": {
          "High Quality Metal Ore": 2.0,
          "Metal Fragments": 2.0,
          "Metal Ore": 2.0,
          "Stones": 2.0,
          "Sulfur Ore": 2.0
        }
      },
      "Settings": {
        "ChatPrefix": "Gather Manager",
        "ChatPrefixColor": "#008000ff"
      }
    }