Jump to content

kasvoton

Creator
  • Posts

    460
  • Joined

  • Last visited

Everything posted by kasvoton

  1. It's server wide protection.
  2. kasvoton

    description

    Add me, kasvoton at codefling discord channel.
  3. Version 1.0.8

    41 downloads

    Control raid protection using rcon: enable_raid: RAID is enabled, all damage is allowed disable_raid: RAID is disabled, no damage is allowed When RAID is disabled a small UI shows on the top left corner. Using a scheduler plugin like this you can disable RAID during certain periods of time. Example config for Scheduler which: Restarts the server daily Re-enables the raid protection after the restart except if the server was wiped Disables the raid protection everyday at 12:00 Enables the raid protection everyday at 00:00 except on wipe day { "UTC": true, "Cron": [ { "Minute": "@restart", "Hour": "*", "Day": "*", "Month": "*", "DoW": "*", "Command": "!wipe disable_raid" }, { "Minute": "45", "Hour": "5", "Day": "*", "Month": "*", "DoW": "*", "Command": "restart 300 \"Daily reboot\"" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0,2,3,4,5,6", "Command": "disable_raid" }, { "Minute": "0", "Hour": "12", "Day": "*", "Month": "*", "DoW": "*", "Command": "enable_raid" } ] }
    $1.99
  4. Version 1.0.7

    75 downloads

    This plugin will allow your players, based on permission, to either instantly collect the ore/wood resource or always hit the x-marker. This plugin provides two functionalities: Players with the "geespot.instant" permission will instant gather Ore and Wood at first hit. Players with the "geespot.xmarker" permission will always trigger the X marker mini-game no matter where they hit on the model.
    $3.99
  5. Yes.
  6. kasvoton

    Permission based

    Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  7. kasvoton

    Permission based

    I will take this as a feature request, it's a very interesting concept but it would require a complete rewrite of the plugin.
  8. kasvoton

    Permission

    Changed Status from Pending to Can't Reproduce
  9. kasvoton

    Permission

    Hi, can you post the output of "o.show" for the user/group you are trying to assign it to ?
  10. kasvoton

    wipe seed not working...

    Changed Status from Work in Progress to Closed Changed Fixed In to Next Version
  11. kasvoton

    wipe seed not working...

    The updated version will be released today.
  12. kasvoton

    Support with config?

    Changed Status from Not a Bug to Closed
  13. kasvoton

    Question about Data cleanup

    Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  14. kasvoton

    Question about Data cleanup

    Hi, I may add "blacklisting" as a feature.. rn you are right, once you set it to true it will clean all the json files from the Data folder. This is an example how to use the "Files" sections: "Files": [ "oxide/data/oxide.*.data" ] In this example all the Oxide's convalence cache files will be deleted.
  15. Changed Status from Pending to Closed Changed Fixed In to Next Version
  16. kasvoton

    does not work

    Changed Status from Pending to Closed
  17. Changed Status from Work in Progress to Closed Changed Fixed In to Next Version
  18. Changed Status from Can't Reproduce to Closed
  19. kasvoton

    Support with config?

    Changed Status from Pending to Not a Bug
  20. kasvoton

    Support with config?

    Hi, first of all if "UTC" is set to false then the local server time is used. This assumes that your server has the timezone set to London UK, if not I would suggest to enable UTC and adjust your time values on the config to be also UTC based. Try the following config, you should remove the "// comments", json usually do not like comments. { "UTC": false, "Cron": [ // Restart the server at 1AM local time -------------------------------------------------------- { "Minute": "0", "Hour": "1", "Day": "*", "Month": "*", "DoW": "*", "Command": "restart 60" }, // Saturday @ 2PM ------------------------------------------------------------------------------ { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "6", "Command": "oxide.grant group default custombuttons.purge" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "6", "Command": "oxide.grant group vip custombuttons.purge" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "6", "Command": "oxide.grant group premium custombuttons.purge" }, { "Minute": "1", "Hour": "14", "Day": "*", "Month": "*", "DoW": "6", "Command": "audio.message sendall purge" }, { "Minute": "1", "Hour": "14", "Day": "*", "Month": "*", "DoW": "6", "Command": "o.reload CustomButtons" }, // Sunday @ 12AM ------------------------------------------------------------------------------- { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group default custombuttons.purge" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group vip custombuttons.purge" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group premium custombuttons.purge" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group default custombuttons.purgeover" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group vip custombuttons.purgeover" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group premium custombuttons.purgeover" }, { "Minute": "1", "Hour": "0", "Day": "*", "Month": "*", "DoW": "0", "Command": "o.reload CustomButtons" }, // Sunday @ 2PM -------------------------------------------------------------------------------- { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group default custombuttons.purgeover" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group vip custombuttons.purgeover" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.revoke group premium custombuttons.purgeover" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group default custombuttons.endoftheworld" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group vip custombuttons.endoftheworld" }, { "Minute": "0", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "oxide.grant group premium custombuttons.endoftheworld" }, { "Minute": "1", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "audio.message sendall purge" }, { "Minute": "1", "Hour": "14", "Day": "*", "Month": "*", "DoW": "0", "Command": "o.reload CustomButtons" }, // Monday @ 12AM ------------------------------------------------------------------------------- { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.revoke group default custombuttons.endoftheworld" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.revoke group vip custombuttons.endoftheworld" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.revoke group premium custombuttons.endoftheworld" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.grant group default custombuttons.purgeover" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.grant group vip custombuttons.purgeover" }, { "Minute": "0", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "oxide.grant group premium custombuttons.purgeover" }, { "Minute": "1", "Hour": "0", "Day": "*", "Month": "*", "DoW": "1", "Command": "o.reload CustomButtons" } ] }
  21. kasvoton

    does not work

    Hi ! The patches need to be applied early on the server boot process.
  22. kasvoton

    Scheduler

    @golgolakk It will work just fine with Carbon.
  23. @Milky Chills Australia OK will add this as a feature for next version. @golgolakk No it will not work with Carbon, this is a Harmony v1 native plugin. @Daddymafia If you have access denied errors while uploading to the HarmonyMods folder, you'll need to open a support ticket to your game server provider.
  24. @MNfreakTim I've sent you a PM with a beta version for testing.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.5k

Files Sold

Total number of files sold.

2.4m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.