-
Posts
460 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by kasvoton
-
- 4 comments
-
Add me, kasvoton at codefling discord channel.
-
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 comments
-
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- 4 comments
-
- 99 comments
-
- 1
-
-
Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
-
I will take this as a feature request, it's a very interesting concept but it would require a complete rewrite of the plugin.
-
Changed Status from Pending to Can't Reproduce
-
Hi, can you post the output of "o.show" for the user/group you are trying to assign it to ?
-
Changed Status from Work in Progress to Closed Changed Fixed In to Next Version
-
The updated version will be released today.
-
Changed Status from Not a Bug to Closed
-
Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
-
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.
-
Variable charcoal output for different players
kasvoton replied to MNfreakTim's Support Request in Support
Changed Status from Pending to Closed Changed Fixed In to Next Version -
Changed Status from Pending to Closed
-
Unable to change the fuel consumption rate lower than 10
kasvoton replied to MNfreakTim's Support Request in Support
Changed Status from Work in Progress to Closed Changed Fixed In to Next Version -
Changed Status from Can't Reproduce to Closed
-
Changed Status from Pending to Not a Bug
-
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" } ] }
-
Hi ! The patches need to be applied early on the server boot process.
-
@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.
-
- 99 comments