Search the Community
Showing results for tags 'server'.
-
Version 1.0.0
13 downloads
Simple plugin to redirect players to your new server with a configurable chat message. Config: { "RedirectDelay": 10.0, "RedirectMessage": "<size=20><color=red>Warning</color>: You will be redirected to the new server in {0} seconds.</size>", "ServerIP": "0.0.0.0", "ServerPort": "28015" }Free -
Version 1.4.9
22,103 downloads
The easiest and fastest way to build a Rust server Functions: Server Config Installer Wipe Manager Custom Map Support - Server Config: Here you can set up all the settings for your server. Server Name Server Tag Server Description Server URL Server Logo URL Map Size Map Seed Generate Maps Seed MAX Player RCON Password Server Port Query Port RCON Port App Port Game Mode Custom Map - Installer: Here you can easily install your server and mods. Install or Update your Server Verify your server files Install or Update Oxide (Detects new version) Install or Update Carbon (Detects new version) Install or Update RustEdit (for Custom Map Users) Install or Update Discord Extension (to run Discord Plugins) - Wipe Manager: Here you can easily Wipe your Server Full Wipe Blueprints Map Oxide Data Backpacks Logs Player Deaths Player Identities Player Stats Player Tokens New Map Seed on Wipe HowTo: - Start Rust Server Tool as Admin - Install Server - Make your settings and save - Start Server That's allFree- 140 comments
- 12 reviews
-
- 21
-
-
-
- #server
- #installer
-
(and 7 more)
Tagged with:
-
Version 1.0.1
20 downloads
About XTravel: Teleport to Other Servers XTravel is a plugin that allows you to travel between servers using a simple chat command. You can configure an unlimited number of destinations in an easy-to-use config file. Just enter the command name (which should be the name of your server), the IP, and the port. To allow a player to use this command, add the following Oxide permission: xtravel.use In the in-game chat, type: /myservername. For example: /vanilla, /x2, or /coolserverx10. Upon entering the command, a 10-second timer will start, and a message will inform the player that the travel is about to commence. You can cancel the travel during this period by typing /canceltravel If you prefer instant travel upon entering the command, use version 1.0.0. Language files for all messages can be edited in the oxide/lang/en directory. XTravel is easy to use and has been tested live on multiple servers to ensure flawless operation. If you have any questions or comments, please post them here or contact me directly.$4.99- 17 comments
- 2 reviews
-
- 2
-
-
- #connect
- #connection
-
(and 4 more)
Tagged with:
-
Version 1.4.5
129 downloads
This is a server management plugin. It allows you to have consistency and visibility over all the information related with your server, including it's basic configuration. You may find this valuable no matter if you manage ONE or TEN servers, it works great with automation tools, docker and alike. It has four main features: Wipe schedule calculator Manages server information (Title, description, tags, logo, banner, etc) Manages the basic server configuration (cvars) Manages Oxide's groups, permissions and user membership. Loading messages when a player is joining and/or waiting in queue. Timed messages (adverts) Public chat command "!wipe" that will inform: Last wipe date Next wipe date The current time in UTC Support the new Nuclear Missile Silo computer countdown 1. Wipe schedule calculator The plugin provides four "tokens" that you can use within the server's title or description to inform your users when was the last wipe and when it will be the next wipe. You can customize the date format and wipe schedule on the config file and the wipe schedule calculator will have into account the Thursday forced wipe. // You can format the date as you'd like "Date": { "Short": "dd/MM", "Long": "dd/MM/yyyy" }, // Wipe schedule value is in days "Server": { "Wipe schedule": 7 }, 2. Manages server information This one is pretty self-explanatory, it allows you to define all the metadata about your server. "Server": { "Name": "DEVELOPMENT SERVER | %LASTWIPE%", "Description": [ "Map size is %WORLDSIZE% using seed %WORLDSEED%.", "Last wipe was at %LASTWIPE_LONG%, Next wipe is at %NEXTWIPE_LONG%", "Server has %UPTIME% seconds uptime, running at %FPS% fps with %ONLINE%/%MAXSLOTS% players online." ], "Banner image": "https://assets.example.com/banner.jpg", "Logo image": "https://assets.example.com/logo.png", "Tags": [ "weekly", "vanilla" ], "Website": "https://example.com/", "Custom map name": "kasvoton was here", "Wipe schedule": 7 }, Notice the special feature "Custom map name" which allows you to customize the map name that is displayed on the server list (Procedural Map). This shows in not only at Rust's in-game server browser, but also all on all the other sites that show off your server, i.e. Battlemetrics. WE DO NOT REQUIRE OXIDE'S SANDBOX MODE TO BE TURNED OFF AS OTHER PLUGINS DO. 3. Manages the basic server configuration (cvars) It allows you to have a clear view of what cvars are applied, very helpful if you run automation tools such as docker or github to manage server configurations. "CVars": { "fps.limit": "32", "server.tickrate": "10", "server.censorplayerlist": "true", "server.maxplayers": "8", "env.time": "12", "env.progresstime": "false" }, 4. Manages Oxide's groups, permissions and user membership. When you define a group inside the plugin's config file it means that the plugin will make sure that the group is created, that the permissions are assigned and that the listed members are part of the group. You can (and should) assign users to your groups using the oxide's tools or any other third party plugin as usual, the only difference is that the members listed on this config file will always be added back to the groups even when manually removed. "Permissions": { "Delay": 60.0, "Groups": [ { "Name": "admin", "Title": "Administrators", "Parent": "developer", "Rank": 0, "Default": false, "Permissions": [], "Members": [] }, { "Name": "default", "Title": "Default", "Parent": null, "Rank": 0, "Default": true, "Permissions": [], "Members": [ "*" ] }, { "Name": "developer", "Title": "Developer", "Parent": "administrator", "Rank": 800, "Default": false, "Permissions": [ "plugin.e", "plugin.f" ], "Members": [ "123456789123456789" ] }, { "Name": "administrator", "Title": "Administrator", "Parent": "moderator", "Rank": 80, "Default": false, "Permissions": [ "plugin.b", "plugin.c", "plugin.d" ], "Members": [ "123456789123456789", "123456789123456789" ] }, { "Name": "moderator", "Title": "Moderator", "Parent": "default", "Rank": 60, "Default": false, "Permissions": [ "plugin.a" ], "Members": [ "123456789123456789", "123456789123456789", "123456789123456789" ] } ] } Note the important config parameter "Delay", when the server starts we have no way to tell in which order the plugins will get loaded by Oxide, which means that when OxidationMetadata loads it's probable that we will not be the last one getting loaded. If we try to assign a permission to a group but the third party plugin has not yet loaded then the permission is not found and we'll get an error. The "Delay" creates a waiting period for OxidationMetadata to wait for all other plugins to load and only then it tries to assign the permissions, the value of the delay is really dependent of your own server. List of supported string format "tokens": %FPS% Average FPS value on the server %MAXSLOTS% Max number of players on the server %ONLINE% Total number of online players %UPTIME% Server uptime in seconds %WORLDSEED% Seed used to generate the world %WORLDSIZE% World size i.e. 3500 %LASTWIPE% Last wipe date formatted in short form %LASTWIPE_LONG% Last wipe date formatted in long form %NEXTWIPE% Next wipe date formatted in short form %NEXTWIPE_LONG% Next wipe date formatted in long form$4.99 -
Version 2.5.8-beta4
241 downloads
SmartWarnings simplifies and streamlines your server moderation by providing means to consistently Warn your players for misconduct. Gone are the times when you leave manual notes at sleeping players, for this plugin creates a smooth but intimidating pop-up window displaying clearly to the player what they've done wrong and how to learn from it. From version v2.5.0 you can now extend highly customizable actions to trigger based on your custom warnings. The imagination is the limit! Rule enforcement has never been easier before. Features Easily dispatch warnings to players and clans with a simple chat command /warn cookiemonster "leave the jar alone you bastard" Booom done! /warn clan "C00KiEZ" "no cookiemonsters allowed in the jar!!" Maybe their collective brain power is needed to understand! Announces Warnings in public Global Chat (Enabled by default, can be toggled in config) Give your Players a sense of transparent justice by displaying the dispatched warning to everyone in public. This is beneficial as players will learn what not to do from other's mistakes! Offline Players can receive warnings, no problem! Displays a pop-up window with the warning IMMEDIATELY if they are online, or as soon as the player wakes up from sleep upon connecting. Create custom presets for common violations. Presets can be made for example to reflect the server rules, it can be configured so that your admins can type /warn joe rule1 and it will spell out the entire rule 1 in the warning. Presets can have an Expiration date which will remove the warning, allowing non-repeating offenders to be cleared if they're well behaving in the long term. Presets can have a Warning Point weight which will give them different severity that can influence when to trigger an Automatic Ban (if enabled). Automatically Ban players with X amount of Warnings or Warning Points (Disabled by default, can be toggled in config) With this feature Enabled a player will be Automatically Banned when reaching the configured Warning amount or Warning Points. For example, configure 3 warnings to be max and enable auto ban will ban a player when the third warning has been dispatched. Supports Temporary Autobans (Disabled by default, can be toggled in config) If you're the kind of type that believes in second chances, when configured it bans the player lets them know when they're welcome back! Optional feature: Clear the player's warning when autobanned (True by default), This can conveniently be set to False if you want the player to be instantly auto banned next time a warning is dispatched. Extensive Logging both File based and Discord! Every move is logged in the oxide/logs/SmartWarnings folder so that you can have full traceability. Optional feature: Configure Discord Webhook links to log Warnings and/or Autobans to Discord. Persist Warnings across wipes, when you don't want to be forgiving! Set "Clear all warnings on wipe" to false and warnings will not be cleared when a new wipe is detected. NOTE: This requires that you exclude/do not remove the oxide/data/SmartWarnings_Playerdata.json file, if you're using tools to auto wipe and it gets deleted, so will the warnings. Customizable Branding Set your Server Name and custom Warning Pop-up Icon to make this plugin match your server's style! (NEW in v2.5.0) Transparency of the pop-up window can now be customized in the config! (NEW in v2.5.0) VANILLA SAFE mode: Warning display in Chat instead of GUI pop-up Warnings will be dispatched through chat and freeze the player until they acknowledge the warning. No use of GUI allows it to be vanilla safe! Acknowledge notification is fully customizable! (NEW in v2.5.0) AUTOMOD: Fully customizable command actions on X warning points Define any custom command to be executed at X warning point. This allows you to integrate with any other plugin for example mute, jails or whatever really. For example: set to mute on 2 warning points, kick on 4 warning points, teleport to jail on 6 warning points. NOTE: AutoMod actions are triggered incrementally by total warning points added to the player. This means if you configure Mute on 1 point and Kick on 3 points and give the player a warning worth 4 points, the player will be both kicked and muted. AutoMod feature can conveniently be configured together with AutoBan feature, but keep in mind to set the point/warning thresholds to line up properly. I.e. automod actions should not be on higher point level than autoban, because then player will be banned already before any actions are executed. (NEW in v2.5.5) Battlemetrics Bans & Warnings integration AutoBans will sync with Battlemetrics, duration, reason and note will be added to give context to what banned the player. Warnings will add note to the player in Battlemetrics, so you can easily track their warning history even through the BM console! Warnings will add a flag to the player in Battlemetrics, so you can easily differentiate players in the list who have warnings and not through the BM console! Click here for guide how to set up Battlemetrics integration. (NEW in v2.5.8) MySQL Database Support (allows Multi Server Warning Sync) You can now configure the plugin to use a MySQL Database as its data source. This will allow Warnings to be synced across multiple Rust servers if they are configured towards the same MySQL database. Planned future features Your ideas & feedback? Commands /warn <player name or id> "reason OR preset" Dispatches a warning with a custom reason or preset Requires permission: smartwarnings.admin /warn info <player name or id, leave blank to see yourself> Shows the amount of warnings, warning points and the individual warning details in chat. Requires permission: smartwarnings.admin to see other players. Default permission can only see their own warnings. /warn clear <player name or id> <id or ALL> Clear a specific warning ID by specifying the warning number, or specify ALL to clear all player warnings. (NEW in v2.5.0) Requires elevated permission: smartwarnings.admin.canclear /warn clan <clan tag> "reason OR preset" Dispatches a warning with a custom reason or preset to an entire clan (Requires Clans plugin) Requires permission: smartwarnings.admin /warn unfreezeall Unfreezes all players who are currently frozen due to not acknowledging any warnings, really only needs to be used in any emergency scenario where the player would not be unfrozen normally (Please report these scenarios, this command is purely proactive and will be removed when its not needed anymore) Requires permission: smartwarnings.admin Configuration { "Warning Presets": { "spam": { "Reason": "§1 - Spamming", "Points": 1, "ExpirationDays": 3.0 }, "toxic": { "Reason": "§2 - Toxic behaviour", "Points": 2, "ExpirationDays": 7.0 }, "sign": { "Reason": "§3 - Inappropriate signage", "Points": 2, "ExpirationDays": 7.0 }, "grief": { "Reason": "§4 - Griefing", "Points": 4, "ExpirationDays": 7.0 }, "group": { "Reason": "§5 - Group Limit violation", "Points": 5, "ExpirationDays": 7.0 } }, "System Settings": { "Max Warnings": 5, "Default Warning Expiration time (Days)": 7, "Announce Warnings in Global Chat": true, "Show players who issued the warning": true, "Server Name": "MyRustServer", "Clear all Warnings on Server Wipe": true, "Use MySQL database": false, "Warning Popup - GUI Enable - Set to false to use only chat (SAFE FOR VANILLA SERVER)": false, "Warning Popup - GUI Icon": "https://i.imgur.com/oImKq4X.png", "Warning Popup - GUI Opacity": 0.85, "Optional: Send anonymous analytics data about plugin usage": true, "Config Version": { "Major": 2, "Minor": 5, "Patch": 8 } }, "MySQL Database Settings": { "MySQL Host": "", "Port": 3306, "Database": "", "Username": "", "Password": "" }, "Battlemetrics Settings": { "API Token": "", "Organization ID": "", "Server ID": "", "Banlist ID": "" }, "Autoban Settings": { "How many points until automatic ban (Set 0 for Disable)": 0, "How many warnings until automatic ban (Set 0 for Disable, Recommended: Same as Max Warnings)": 0, "How long to ban in minutes (Set 0 for Permanent)": 2880, "Clear the players Warnings on AutoBan (Default: True)": true }, "Discord Settings": { "Webhook URL - Post Warnings to Discord (Leave blank to Disable)": "", "Webhook URL - Post Autobans to Discord (Leave blank to Disable)": "" }, "AutoMod Settings": { "Mute on 2 warning points": { "PointTrigger": 2, "ExecuteCommand": "mute {0} {1}", "ClearPointsOnTrigger": false }, "Kick on 4 warning points": { "PointTrigger": 4, "ExecuteCommand": "kick {0} {1}", "ClearPointsOnTrigger": true } } } Language Configuration The plugin allows a comprehensive customization of all text output for your needs. Edit the oxide/lang/en/SmartWarnings.json { "NO_PERM": "You don't have permission to use this command.", "NO_MATCH": "Could not find a match for player name or steamid", "GUI_BUTTON_ACKNOWLEDGE_WARNING": "I ACKNOWLEDGE THIS WARNING AND WILL FOLLOW THE RULES", "GUI_HEADER": "You have received a warning", "GUI_ISSUEDBY": "<color=#FFFFFF>Warning issued by {0} at {1}</color>", "GUI_ISSUEDAT": "<color=#FFFFFF>Warning issued at {0}</color>", "GUI_WARNING_TEXT": "<color=#cc0000>Repeated violations may lead to temporary or permanent banishment from this server.</color>\n\n<color=#d9d9d9>You should review the server rules immediately by typing /info in chat and clicking on the RULES tab.\nTo remove this pop-up, acknowledge this warning by clicking the button below.\nIf you feel this was an incorrect warning please reach out to our Staff via Discord.</color>", "CHAT_ACKNOWLEDGE_TEXT": "<color=#00FF00><size=12>Warning Acknowledged: You're now unfrozen and free to go.\n</size></color><size=9>Please review the server rules by typing /info in chat to avoid getting warned in the future.</color>\n\nIf you feel this was an incorrect warning please reach out to our Staff via Discord.</size>", "ANNOUNCE_WARNING_TEXT": "<color=#DC143C>{0} has been warned!\nFurther violations will lead to disciplinary action.</color>\n<color=#A9A9A9>Reason: {1}", "ANNOUNCE_WARNING_ISSUEDBY": "\n\n<size=10>Warning Issued by: {0}</size></color>", "REASON": "REASON", "AUTOBAN_PERMANENT_MESSAGE": "AutoBanned: You were permanently banned due to reaching max warnings.", "AUTOBAN_TEMPORARY_MESSAGE": "AutoBanned: You are banned until {0} due to reaching max warnings." } For example to change is the detailed warning text: You can edit the GUI_WARNING_TEXT row in the language file. Dependencies & Integrations Requires: DiscordMessages for Discord webhook functionality. Integrates with EnhancedBanSystem, autoban feature will detect if the plugin is installed and issue a ban with it, if not it will use the native Rust ban functionality. OPTIONAL: Plugin Usage Analytics The plugin optionally sends analytics about your server (Oxide version, Plugin version, Plugin configuration, Server Name, OwnerID and ModeratorID) to gauge usage of the plugin and to improve support. You can toggle this feature in the configuration.$18.99 -
Version 1.0.0
28 downloads
This 3x Server allows you to get your rust server up and running quickly and easily without the hassle. Hassle free setup: Installing can take as little as 5 minutes. Eliminating the countless frustrating days it takes to setup a server. Balanced setup: All loot tables are perfectly balanced to enhance gameplay for all players on your server. Teleportation: Players can teleport to anyone with a simple command as long as they are not combat or raid blocked. Blocked Teleportation: Players who are combat / raid blocked will not be able to teleport or trade for a set period of time. Rust Skins: Players will get access to all rust skins when using the /s command. (If you do not own skinbox you can uses skins from UMOD for free!) Admin Tools: Users with admin permissions will be able to vanish and moderate other players. And so much more features below! What's included? - Better chat config -Trading - Better Loot config - Automated events - Automatic Authorization - Fancy Drop config - Furnace Splitter - 3x Quick Smelt - 3x Gather Manager - Image Library - No escape config - NTeleportation config - Custom Recycler Speeds - Stack Size modifications - Always in stock vending machines. - Welcome Panel + UI Addons (CONFIG) - Skin Box (CONFIG) - Clans Reborn (CONFIG) Not all plugins have to be used. You can also modify all of the plugins to your exact liking if you wish to change anything. All of the items above are already modified for a 3x server.$9.79- 1 review
-
- #easy
- #easysetup
-
(and 8 more)
Tagged with:
-
Version 1.0.1
45 downloads
This 10x Server allows you to get your rust server up and running quickly and easily without the hassle. Hassle free setup: Installing can take as little as 5 minutes. Eliminating the countless frustrating days it takes to setup a server. Balanced setup: All loot tables are perfectly balanced to enhance gameplay for all players on your server. Teleportation: Players can teleport to anyone with a simple command as long as they are not combat or raid blocked. Blocked Teleportation: Players who are combat / raid blocked will not be able to teleport or trade for a set period of time. Rust Skins: Players will get access to all rust skins when using the /s command. (If you do not own skinbox you can uses skins from UMOD for free!) Admin Tools: Users with admin permissions will be able to vanish and moderate other players. And so much more features below! What's included? - Better chat config -Trading - Better Loot config - Automated events - Automatic Authorization - Fancy Drop config - Furnace Splitter - 10x Quick Smelt - 10x Gather Manager - Image Library - No escape config - NTeleportation config - Custom Recycler Speeds - Stack Size modifications - Always in stock vending machines. - Welcome Panel + UI Addons (CONFIG) - Skin Box (CONFIG) - Clans Reborn (CONFIG) Not all plugins have to be used. You can also modify all of the plugins to your exact liking if you wish to change anything. All of the items above are already modified for a 10x server.$10.79- 4 comments
- 1 review
-
- #10x
- #easysetup
- (and 10 more)
-
Version 1.0.1
83 downloads
About 2x Server Setup (Full & Complete 3x Server) This 2x Server allows you to get your rust server up and running quickly and easily without the hassle. Hassle free setup: Installing can take as little as 5 minutes. Eliminating the countless frustrating days it takes to setup a server. Balanced setup: All loot tables are perfectly balanced to enhance gameplay for all players on your server. Teleportation: Players can teleport to anyone with a simple command as long as they are not combat or raid blocked. Blocked Teleportation: Players who are combat / raid blocked will not be able to teleport or trade for a set period of time. Rust Skins: Players will get access to all rust skins when using the /s command. (If you do not own skinbox you can uses skins from UMOD for free!) Admin Tools: Users with admin permissions will be able to vanish and moderate other players. And so much more features below! What's included? - Better chat config -Trading - Better Loot config - Automated events - Automatic Authorization - Fancy Drop config - Furnace Splitter - 2x Quick Smelt - 2x Gather Manager - Image Library - No escape config - NTeleportation config - Custom Recycler Speeds - Stack Size modifications - Always in stock vending machines. - Welcome Panel + UI Addons (CONFIG) - Skin Box (CONFIG) - Clans Reborn (CONFIG) Not all plugins have to be used. You can also modify all of the plugins to your exact liking if you wish to change anything. All of the items above are already modified for a 3x server. Not all plugins have to be used. You can also modify all of the plugins to your exact liking if you wish to change anything. All of the items above are already modified for a 2x server.$9.89- 5 comments
- 1 review
-
- #2x
- #easysetup
-
(and 6 more)
Tagged with:
-
Version 1.0.4
1,472 downloads
About: Server pop plugin displays server pop using !pop trigger Online players Sleeping players Joining players Queued players Configuration: { "ChatPrefix": "<size=16><color=#FFA500>| ServerPop |</color></size>", "ChatIconSteamID": 0, "GlobalResponse": true, // true = global response, false = player response "ShowJoiningPlayers": true, "ShowOnlinePlayers": true, "ShowQueuedPlayers": true, "ShowSleepingPlayers": true, "ValueColorHex": "#FFA500" }Free- 3 comments
- 2 reviews
-
- 1
-
-
- #population
- #server
-
(and 3 more)
Tagged with:
-
Version 1.0.1
70 downloads
About: A simple plugin that enables players to seamlessly warp between different servers, which can be set up in the config or using the /addwarp command. Commands: /warp [name] - Warps you to a set server /addwarp [warpName] [ip] [port] /cancelwarp - cancels the warp Permissions: oxide.grant group admin serverwarp.CanAddWarp (Is highly recommended to only grant this to the admin group) oxide.grant group default serverwarp.CanWarp oxide.grant group default serverwarp.CanCancel Config: { "CancelMessage": "<size=20><color=red>Server</color>Warp</size>\n<size=15><color=white>Warp cancelled!</size>", "CountdownSeconds": 5, "WarpMessage": "<size=20><color=red>Server</color>Warp</size>\n<size=15><color=white>You are being warped to {0} in {1} seconds...</size>", "Warps": { "Example_warp": { "IP": "0.0.0.0", "Port": "28015" } } }Free- 13 comments
- 5 reviews
-
- 9
-
-
-
-
- #teleport
- #teleportation
-
(and 3 more)
Tagged with:
-
Version 3.2.21
8,513 downloads
Site In case you having issues with plugin feel free to open support ticket on site here. I will usually respond within 24 hours not including weekends. Discord I'm also available at my discord server where I provide support for my customers. You can also find small community here and get answers for your questions. Invite link here. Documentation To find out what can be customized within config file please refer to full plugin documentation here. Any questions prior to purchasing forward into DM here or into ticket at my discord. Default configs available as template with plugin. Screenshots bellow showcasing configurations created by customers. These are not available with the plugin but I decided to post them here since it's good demonstration of how customizable this plugin is. BOOBLEJ Tide Neighigh Paul Leunal17 BOOBLEJ How to start using plugin? Simply drop WelcomePanelLite.cs file into your plugin folder. After successfully loading plugin you can use default command /info in game. Configuration is handled in config file (oxide/config/WelcomePanelLite.json). How hard is to get this plugin all set up? It's fairly simple. Plugin comes with default configuration which showcases everything you need to know regarding text, styling and changing images. How hard it is to customize your own layout? When it comes to changing color or images it's simple, any inexperienced user can do it however if you want to customize positions of UI or add extra tab buttons, it requires understanding of "ui anchors". Anchors are not that complicated but it takes hour or two to fully understand it. For more info check documentation. Can I add multiple pages into WelcomePanel? Yes, you can add unlimited amount of pages. Can I add images into WelcomePanel? Yes, you can add image to any panel and you can set background for each tab What image sizes I should use? This is different for each panel across different templates. Basically images parented to any panel are stretched to its size. Best approach is to take screenshot of the panel and try to fit image size into that prior to uploading it. How to add addons? Each text tab has addon option at bottom, just type in plugin name. List of available addons can be found at the top of the plugin description, listed as "Works with".$13.78 -
Version 1.1.0
65 downloads
This plugin adds server related commands usable in a specific discord channel with a specific discord role, that gives access to a server panel to do specific commands on the server. Features : Gives access to a permission manager on discord Gives access to a plugin manager on discord Gives access to a restart panel on discord Able to make custom commands from config Gives access to a wipe panel on discord (Only works with DSPWipe or WipeServer loaded) Discord Commands: !server : Shows a list of usable commands for the server !plugins : Gives a plugin list on discord to manage plugins Discord Interactions: When using !server, a list of server commands to manage your server as interactive buttons. Once you use one of the buttons, It will give you more interactive buttons to use different commands and manage your server. Permissions Command shows entity then the command then the permission/group to use the command on after clicking on it : Restart Command shows delay of restart and reasons to use the command after clicking on it : Plugins Command shows the list of plugins you can interact with then shows the command that you can use on it : Custom Command shows the list of commands in the configuration : Configuration : { "LogFileName": "DiscordServerPanel", "Bot token": "", "Embed's color": "#ff0000", "Show Server FPS (Server command)": true, "Show Gamemode (Server command)": true, "Show Plugins Loaded (Server command)": true, "Custom": { "Use Custom (true/false)": false, "Use Confirmation (true/false)": false, "Custom Commands ('command name' 'command to send on console')": { "Restart": "restart 300 Maintenance", "SkipNight": "env.time 12" }, "Discord Role ID (Can be left empty to use the first role id)": "" }, "Restart": { "Use Restart (true/false)": true, "Restart Reasons (One Word)": [ "Maintenance", "Update", "Wipe", "None" ], "Time for command (Use 'h' for hours, 'm' for minutes)": [ "5m", "10m", "30m", "1h" ], "Discord Role ID (Can be left empty to use the first role id)": "" }, "Plugins": { "Use Plugins (true/false)": true, "Use Confirmation (true/false)": true, "Discord Role ID (Can be left empty to use the first role id)": "" }, "Permissions": { "Use Permissions (true/false)": true, "Discord Role ID (Can be left empty to use the first role id)": "" }, "Wipe": { "Use Wipe (true/false)": false, "Generate Random Seeds (How many options to choose from)": 4, "Map Size": 3500, "Backup Map Files (Backup in identity folder)": true, "Time for command (Use 'h' for hours, 'm' for minutes)": [ "5m", "10m", "30m", "1h" ], "Discord Role ID (Can be left empty to use the first role id)": "" }, "logs": { "Log to console (true/false)": true, "Log to discord (true/false)": false, "Discord Extension Log Level (Verbose/Debug/Info/Warning/Error/Exception/Off)": "Info", "Delete message after command": true, "Delete message after interaction": true, "Log Discord Channel ID": "" }, "Discord Guild ID (optional if the bot is in one guild)": "", "Discord Role ID": "", "Discord Channel ID where the command can be used": "" } Configure : Set Bot Token, ChannelID and RoleID in config. Reload Plugin. (Optional) To use the wipe functionality : Load DSPWipe. Enable Wipe function in DiscordServerPanel config. You can suggest new functionalities or plugin ideas on discord : Aimon#9899 .$10.99- 7 comments
- 1 review
-
- #discord
- #discordbot
-
(and 3 more)
Tagged with:
-
Version 1.0.2
378 downloads
Simple plugin that reloads listed plugins after x seconds when server has finished loading in. This can be useful incase of loading order requirements or any other issue required to reload a plugin after startup. Features : Simple config Set time (seconds) to run sequence x seconds after server has finishedloading in. Set time (seconds) between each plugin to be reloaded This is still a temp fix for plugins not doing what they need to do after startup contact the developer/maintainer of the plugin and point them to the issue ! Configuration : { "Plugin settings": { "Time After Startup (seconds)": 20.0, "Time between Reloads (seconds)": 2.0, "Plugins to Reload": [ "BradleyGuards", "PumpkinHead", "WalkingDead", "ZombieRocks" ] } } Click banner for my discord belowFree -
Version 2.1.5
129 downloads
The plugin adds the ability to install a mining farm on your server. Features There is a full drop setting. Set the minimum charge and the desired frequency(for more information, see the configuration) It is possible to connect any economy Command to get all components for the farm: /getfarm-available only to the administrator Added the givefarm console command(for issuing components via the store). Example: givefarm Name/steamid battery/light/broadcast. The plugin was tested on 2 servers, no problems were found. All bugs will be fixed as they are found. I will also be happy to hear your suggestions for improving the plugin.$15.00 -
Version 2023.10.12.0810
117 downloads
NOW SUPPORTING PROCGEN AND CUSTOM URL BASED MAPS ! This plugin will allow you to setup automatic server wipes without requiring external scripts. This plugin is very useful for any server owner but I'm positive that it will be really useful for those hosting providers running panel based game instances where you do not have full access to customize the server or the provided wipe tool is very limited. You should have a look at the suggested plugins for Oxidation's Scheduler which is a perfect fit for a fully in-game automatic wipe process. The plugin also allows you to set a list of seeds that will be used at server wipe to select the new map seed. You can define as many different wipe types as you'd like on the config file like so: This example is for a "forced" wipe. In order to execute the wipe type on the rcon console "wipe forced". "Forced": { "Restart": 120, "Message": "A server wipe is being executed, we'll be back shortly", "Game": { "Blueprints": true, "Logs": true, "Map": true, "PlayerDeaths": true, "PlayerIdentities": true, "PlayerStates": true, "PlayerTokens": true }, "Plugins": { "Convalence": true, "Data": true, "Groups": true, "Language": true, "Logs": true, "Users": true }, "Files": [ "my/custom/path/this_file_will_be_deleted.json" ], "Blacklist": [ "carbon/data/this_file_will_never_be_deleted.json" ] } This example is for a "weekly" wipe. In order to execute the wipe type on the rcon console "wipe weekly". "Weekly": { "Restart": 120, "Message": "A server wipe is being executed, we'll be back shortly", "Game": { "Blueprints": false, "Logs": true, "Map": true, "PlayerDeaths": true, "PlayerIdentities": false, "PlayerStates": true, "PlayerTokens": false }, "Plugins": { "Convalence": false, "Data": true, "Groups": false, "Language": true, "Logs": true, "Users": false }, "Files": [ "my/custom/path/this_file_will_be_deleted.json" ], "Blacklist": [ "carbon/data/this_file_will_never_be_deleted.json" ] } This is a standalone Harmony patch, Oxide installation is optional. Copy the Oxidation.Wiper.X.dll file into your HarmonyMods folder and restart your server. At the first server start after installing the patch a new configuration file Oxidation.Wiper.json will be created at the HarmonyMods folder. What is Harmony ? Harmony is a library for patching .NET code during runtime, it directly manipulates game code (CIL) without any additional abstraction layer such as Oxide. The direct patching of the game's byte code allows more performant modding as developers no longer need to rely on third party code, events or hooks to build custom functionality.$4.99 -
Version 1.1.4
270 downloads
About EarlyQ allows players to join prematurely the server while it is still starting. By default the server needs to fully start (which takes ~5 min, depends on map/specs) and after all that time its finally time for players to join, but they still have to wait warming prefabs & download the world. EarlyQ optimizes the process of players joining & startup of the server and minimizes wait times because its splitting the work in parallel. Features Allows players to load faster by initiating Asset Warmup as they are waiting for the server to start up! The world data is sent to the player as soon as its ready, so when the server is ready they can join right away without waiting! The steam server is started only after ~10 seconds when you launch the rust server! This means players can see it in the global server list even while it is loading! Increases your server uptime metrics! Custom messages that show the current loading progress of the server! You can customize said messages Demo (the demo is older & does not start loading the world after its ready, so im waiting a bit longer in the video. This is already implemented in EarlyQ) Custom message If you need to customize the message your players get when waiting for the server, you have to specify the message as a launch option on the server +earlyq.topmsg - What text to show as the top message +earlyq.botmsg - What text to show as the bottom message, additionally you can insert the server startup progress as a variable with: {progress} +earlyq.topmsg_ready - What text to show as the top message when the user is waiting at Warming Prefabs +earlyq.botmsg_ready - What text to show as the bottom message when the user is waiting at Warming Prefabs Default messages (Example): +earlyq.topmsg "PLEASE WAIT" +earlyq.botmsg "STARTUP PROGRESS: {progress}" +earlyq.topmsg_ready "YOU ARE READY" +earlyq.botmsg_ready "WAITING FOR THE SERVER" Installation As this is a Harmony mod you need to place the EarlyQ.dll file in HarmonyMods folder, after that restart the server. (do not use harmony.load command with EarlyQ!) EarlyQ works for Linux & Windows EarlyQ works with the newest networking update EarlyQ works with RakNet and SteamNetworking Note Facepunch confirmed this Harmony mod is not allowed on official servers, if you want to use it on official, do it at your own risk. Contact You can contact me on discord: turner1337$7.99- 17 comments
- 8 reviews
-
- 5
-
-
-
- #optimize
- #optimization
- (and 19 more)
-
Version 1.0.2
168 downloads
This plugins allows you to fine tune the settings about the Airdrop event such as frequency, speed, cargo drop mass and speed. To control the frequency, you can define a max and min duration between each airdrop event. If you don't want any randomization, just set the max and min with the same value. "AdditionalEvents": { "Enabled": false, "Min": 300.0, "Max": 600.0 }, The following config controls the "delay" between the start of the airdrop event (either it is server wide or called in by an user) and the drop of the cargo at the spot. In a nutshell it will make your planes fly must faster aka airspeed. "Airplane": { "Speed": { "Enabled": false, "Min": 70.0, "Max": 80.0 } }, You can change the duration of the supply signal smoke. "Signal": { "Duration": 110.0 }, Finally you can also adjust the time it takes for the dropped cargo to reach the ground by changing it's mass and drag values. "Cargo": { "Mass": { "Enabled": false, "Min": 20.0, "Max": 20.0 }, "Drag": { "Enabled": false, "Min": 2.5, "Max": 3.5 } }$2.99 -
Version 2.0.7
46 downloads
This customization allows you to change out the icons for Server Hud to these amazing customized ones. Make your server feel refreshed and different from many other servers running Server Hud! I've designed these icons for my server, and they are intended for use with the plugin I've linked above, which is essential for their functionality. Notes before buying: These are just the png images, you must upload them and replace the link for the icons found in the Server Hud config. Icons Available: Space Event (X-Wing or Saturn) Harbor Airfield Gas Station Event Junkyard Event Power Plant Event Shipwreck Arctic Research Event (x3 because I couldn't decide) Satellite Dish Event WaterEvent (x3 Different versions) DefendableBases (x2 Different versions) WaterPatrol Event HeavyCargo Event PlaneCrash Event Dangerous Treasures Air Event (x2 Different versions) Meteor Event FishingHotspot ArmoredTrain PookEvent$4.99 -
Version 1.0.2
21 downloads
Stops a player from entering your server if their name contains certain phrases. And can log this to your Discord Permissions : kickplayernames.bypas : players with this perm bypass the filter Configuration : To use Discord functionallity the DiscordMessages Plugin is required to be installed. Kick instantly : true ( Kicks on first attempt with a English message). Kick instantly : false (Kicks the player after logging ingame displaying a message in chat and gametip (with the notification in his own language). Kick time after login : 30.0 ( after set time duration kicks the player (with the notification in his own language) at the exit screen. { "Discord Webhook": "Put your discord webhook here", "Discord log": true, "Discord Title": "Login detected with Name Phrase :", "Discord Embed color": 10181046, "Kick instantly": false, "Kick time after login": 30.0, "Blocked name Phrases": [ "admin", "banditcamp", "bandit camp", ".com", ".org" ] } Localization : English , Dutch , French , German , Russian language files included to use a different language just make a new file in the language folder. Due to limitations in the login sequence the displayed message is always in English when using instant kicks (or to what language is used in the English language file). When delayed kick is set and player has fully connected the players language is displayed (if a language file has been made) otherwise uses the English file. { "KickMessage": "Sorry we dont allow the phrase [{0}] you are using in your name.You can rename yourself and you will be welcome to join our server again." }Free -
11 downloads
Industrial Arenas These arenas will perfectly decorate your battle server Industrial Arena A 1715 Prefabs for this build Installation Modifiers: Biome, Height, Splat, Topology Arena diameter: 150m Industrial Arena B 1753 Prefabs for this build Installation Modifiers: Biome, Height, Splat, Topology Arena diameter: 85m Industrial Arena C 2028 Prefabs for this build Installation Modifiers: Biome, Height, Splat, Topology Arena diameter: 100m Industrial Arena D 3607 Prefabs for this build Installation Modifiers: Biome, Height, Splat, Topology Arena diameter: 200m Industrial Arena E 2186 Prefabs for this build Installation Modifiers: Biome, Height, Splat, Topology Arena diameter: 125m Check out more of my work here! If you have any ideas or suggestions on how to improve / supplement this pack, please contact me. (Discord: jtedal#8448)$14.99-
- 6
-
-
-
-
- #mad mappers
- #jtedal
-
(and 9 more)
Tagged with:
-
Version 1.1.7
148 downloads
Just a simple Whitelist plugin to limit who may join your server if you want to keep it private. Leave the config as generated and join the server to start setting up with commands. To setup in-game (default commands): 1- Leave all settings as they are generated upon plugin loading. 2- Join the server as Owner / Moderator, your Steam ID will automatically be added to the whitelist file. 3- Grant the permission "whitelist.admin" to anyone you want to have control over the whitelist. 4- Enter the command "/addwlist 123456789" replace 123456789 with the steam64ID of the players you want to have access. 5- Enjoy your private server. Removing players from the whitelist is the same as adding, just with the command "/removewlist 123456789". Permission: - whitelist.admin - Allows anyone with this permission to run any of the plugin commands. Chat Commands: - /whitelist - Enable / disable whitelist. - /addwlist someothersteam64ID - Adds that player to the whitelist. - /removewlist someothersteam64ID - Removes that player to the whitelist. Console Commands: - wlist <add/remove> <steamid> - wlist toggle <enable/disable> Default Config: { "Change Commands": { "Disable / enable whitelist": "whitelist", "Add players to whitelist": "addwlist", "Remove players from the whitelist": "removewlist" }, "Main Options": { "Whitelist Enabled": true, "Auto Enable Whitelist on new wipe": true }, "Connection denied message": "Sorry this server is whitelist access only, Contact the server admin to gain access.", "Discord Prefix": "Whitelist: ", "Discord WebHook": "https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks" } Default Data: { "WhitelistedPlayerSteam64ID": [] }$4.99- 9 comments
-
- 2
-
-
-
- #whitelist
- #admin
- (and 4 more)
-
Version 2.0.0.0
29 downloads
Rust Wipe Tool Master is a tool for server owners or admins who run their Rust server on Windows based machines, be it locally or on a server, that want to save some time on wipe days. 4 easy steps: #1 - Simply enter the location of the server identity you wish to wipe. #2 - Get the list of files for plugins installed on your server with the "Get Plugin Files" button. #3 - Select which files you wish to delete for the wipe. #4 - Click "Wipe Server" and confirm. Your server is now wiped, simply change your map size or seed as you like and boot up your server. Some changes in the latest update. (v2.0.0.0) The above instructions are still accurate, but for the new functionality, the Help button explains the new functions. Disclaimer: There are files that will show up on your list if you use the Advanced checkbox, that if you delete it could break your server, know what files you are deleting and what they are for. Any comments, suggestions or if you need help, message me! Attention: I am aware that Windows Defender doesn't like the latest version, I can assure you the results are false positives. Here is a scan: https://www.virustotal.com/gui/file/254e60904fa9a84cb581afcc7023742be1b8f30428e407d6002131e3c7ad2912$6.09 -
Version 1.0.0
10 downloads
We understand the complexities of server management and have designed a package that not only caters to players but also streamlines your admin experience, giving you more time to focus on building a thriving community. Experience enhanced gameplay and streamlined administration with the following features: Effortless Implementation: Say goodbye to the hassle of manual setup – your server will be fully configured with all the necessary commands automatically in no time! A simple drag and drop is all it takes to fully set up your server, ready to roll with a suite of optimized commands. Optimized Balancing: We know the importance of balance in attracting and retaining players. Our 5x server is equipped with a carefully tuned custom loot table that ensures exciting challenges and rewarding gameplay for your community. Time-Efficient Gameplay: Time is precious, and our server respects that. With 5x crafting, recycling, and resource gathering speeds, you're offering your players a fast-paced Rust experience that keeps them engaged and motivated to progress. Strategic Engagement: Differentiate your server with strategic spawning. Our random spawn points place players near valuable monuments, adding a layer of tactical depth to their adventures. Admin Empowerment: As a server owner, your administrative tasks are simplified. Players automatically gain authorization for essential elements like auto turrets, doors, and Tool Cupboards. Blueprint sharing is effortless, and auto code locks enhance the user experience. Unique Player Expression: We value player individuality. With the "/skin" command, your users can flaunt their personal style by applying Rust skins to their items, fostering a sense of ownership and identity. NO NEED TO BUY SKINBOX! Efficient Moderation: Administering your server is a breeze with our integrated admin tools. Vanish and radar functionalities help you ensure fair play and address issues promptly, maintaining a healthy gaming environment. Seamless Trading: Nurture a thriving economy within your community using the "/trade" command. Players can effortlessly trade resources, strengthening bonds and enhancing the overall experience. 24/7 Daylight: Eliminate the challenges of nighttime gameplay with perpetual daylight. Your players can explore, engage, and strategize without the hindrance of darkness. Enhanced Communication: Foster a positive community atmosphere with our auto-moderator chat. Inappropriate language is automatically filtered, promoting respectful interactions among players. Elevate your server ownership journey today! Our pre-configured server solution empowers you with the tools to provide an immersive, balanced, and feature-rich Rust experience for your community. Leave the technicalities to us and focus on what truly matters – cultivating a thriving gaming haven that players will call home. Your server's potential starts here! Disclaimer: No need to set up any permissions/groups/etc. It will be done automatically. Specifications: This package is constantly updating with new feature as per buyers request and do not expect any sale on this package. *Links to plugins are provided from where you can download them PLUGINS ARE NOT INCLUDED, but this is what you will have as an idea: • Admin Tools • AutoModerator chat (Auto mute for saying naughty words) • Shared Blueprints (For team) • Better Loot (5x Loot table) • Blueprints (T0 & T1 unlocked) • Crafting Controller (5x speed) • Smelting (5x speed and no burnt food) • Gather Manager (5x gather) • Kits (Auto kit) • Random Spawn locations • Automatic Authorization (Turrets, codelocks, TCs, etc.) • Teleportation (Outpost/Bandit/Player) • Block Teleportation (Cancels tps when takes damage or raid blocked) • Always Day • Automatic code locks • Extended Workbench (Can craft as far as 5 meters away from the base) • Furnace splitter (for everyone) • Trade (for everyone) • Skins (for everyone) (3000+ skins are pre-generated and NO need to buy skinbox) *Links to plugins are provided For any additional help write me back to: FlushedFiber8#6446$15.99 -
- 9 comments
- 2 reviews
-
- 4
-