Rust Temporary gather boost

Discussion in 'Plugin Requests' started by goldie, Jan 29, 2018.

  1. I want something in my server that sends a chat message like: "For the next 15 minutes, tree's will give twice as much wood!". Same for rocks and ore etc.

    Is there anything like this?
     
  2. u could use Timed Execute & Gather Manager

    and and capture the perhaps i might be able to make something but then it would work like TimedEvents

    basicly what u do = setup timed execute and run this command after xx gather.rate dispenser * ammount changes all or u can be more specific for each resource
    [DOUBLEPOST=1517262397][/DOUBLEPOST]example would be

    },
    "RealTime-Timer": {
    "16:00:00": "gather.rate dispenser * 50",
    "16:30:00": "gather.rate dispenser * 10",
    },

    or

    },
    "RealTime-Timer": {
    "16:00:00": "gather.rate dispenser wood 50",
    "16:30:00": "gather.rate dispenser wood 10",
    },
    basicly changes Wood to x50 and after 30min changes back to x10

    then you have

    },
    "TimerRepeat": {
    "command1 arg": 300,
    "command2 'msg'": 300
    }
    and copy above with how many second to repeate again
    so if example you wanna run those 2 commands every 2 hours you do

    },
    "TimerRepeat": {
    "gather.rate dispenser * 50": 7200,
    "gather.rate dispenser * 10'": 7200
    }
    [DOUBLEPOST=1517262435][/DOUBLEPOST]just to provide a free solution perhaps