Gamemode Core
The heart of every gamemode
  • Increased the spawn height for arena spawn points even further to prevent players from getting stuck after spawning.
  • Some tweaks to spawn logic upon connecting.
  • Block players from removing the lobby sleeping bag.
  • Added support for Armory plugin, letting you block access to armory boxes in arenas or the lobby using the NoArmoryBoxAccess rule.
The entire teleportation and respawning logic has been reworked, making transitions to arenas, respawning, and returning to the lobby significantly faster and more reliable. As a result, the following issues have been fixed:
  • Fixed admins not being teleported when in noclip mode.
  • Fixed potential conflicts with other plugins that spawn players by decoupling the plugin from spawning hooks.
  • Fixed duplicate player instances being created when entering an arena.
  • Fixed an issue where players stepped into the teleporter but were not teleported to the arena, while the arena still registered them as present.
Lobby-only mode fixes and improvements:
  • Players who connect while dead are now correctly teleported to the lobby.
  • Players who commit suicide while not in an arena are now teleported to the lobby.
  • Clicking the respawn button or using the respawn command now correctly returns players to the lobby.
  • Players with admin permission will no longer have their inventories cleared when entering or leaving the lobby and are no longer forced to the lobby on connect or when the plugin reloads while lobby-only mode is enabled.
  • Players attempting to leave the lobby now receive a message informing them they cannot leave.
Additional fixes and improvements:
  • A sleeping bag has been added in the lobby to serve as a spawn point for dead players.
  • You can now configure which inventory sections are locked for players in the lobby.
  • Fixed a bug where using /leave did not properly remove a player from the arena.
  • Fixed a null reference exception that occurred during self-inflicted damage (e.g., suicide) due to missing weapon information.
  • Added distance tracking so you can view the range of each shot and record the farthest successful hit.
  • Fixed an issue on windows-hosted servers where the scoreboard displayed stray \r characters.
  • Scoreboard size has been reduced.
  • Scoreboard now refreshes every 3 seconds instead of 5.
  • Various minor improvements.
  • Added a new gamemode type: BaseWars.
  • Added compatibility with Better Chat plugin, fixing an issue that caused duplicate chat messages.
  • Scoreboard ui can now be positioned on either the left or right side.
  • Love
Reactions: (Manky)sieve
  • Added a new gamemode type: AimTrain.
  • Spawn points now include rotation support.
  • Zone opacity for both lobby and arena zones is now configurable.
  • Expanded player statistics with new metrics:
    • Shots fired
    • Shots hit
    • Headshots
    • Accuracy
  • NoWounding and NoCorpseSpawn rules now also apply to npcs.
  • Improved scoreboard ui with button support.
  • Optimized spawning logic for spawn points.
  • Updated spawn point addition to allow a radius of 0.
  • Arena spawn points are lifted by 0.2f to prevent players from getting stuck after spawning in monuments.
  • Improved spawn point selection logic.
  • Players are automatically respawned when a new round begins.
  • Stuck projectiles like spears and arrows are removed from players after they respawn (For standalone functionality, check out the No Stuck Arrows plugin).
  • Scoreboard is hidden during the waiting phase.
  • Scoreboard now supports 1 to 10 entries, depending on the gamemode.
  • Belt and main inventories get locked after the round ends.
  • Added the following new rules: NoLootSpawn, NoCrafting, NoNPCSpawn, and NoSignEditing to block loot and npc spawning, crafting, and sign editing within lobby and arenas.
  • Renamed 'delete' to 'remove' in all commands.
  • Added support for Custom Loot Spawns plugin.
  • Preparatory changes for compatibility with the upcoming Gamemode Battle Royale plugin.
  • Like
Reactions: (Manky)sieve
  • Fixed an issue where gear sets were no longer equipping in arenas.
  • Teleporters now display 'Indefinite' for rounds with no time limit.
  • Arena timer now stays blank for rounds with no set duration.
  • Show how many players are needed to start the round.
  • Implemented area-specific chat isolation:
    • Players in the same arena can see each other's messages exclusively.
    • Players in the lobby can only see messages from other lobby members.
    • Chat messages are isolated, meaning players outside arenas or the lobby will not see arena or lobby chats.
  • Added BattleRoyale as a new gamemode type, preparing it for upcoming release.
Back
Top
This plugin uses Oxide's permission system. Grant or revoke permissions using oxide.grant and oxide.revoke. You can assign them to individual players or groups using their Steam id or group name.
Chat commands start with a /, while console commands can be entered directly in the F1 console or server console. Use find <keyword> in console to search for available commands related to the plugin.
Settings are stored in the config file found under the config/ directory. You can edit this file manually, then reload the plugin to apply your changes.
Persistent data is saved in the data/ directory. This includes things like saved settings, usage stats, or player progress depending on the plugin. Deleting a data file will reset stored progress or customizations.
Language files are located in the lang/ folder. To translate messages, copy the en.json file into your target language folder (e.g. fr, de) and edit the values. Reload the plugin after changes to apply new messages.
This section lists public methods exposed by the plugin for use in other plugins. You can call these via the CallHook method. Make sure the plugin is loaded before calling its API to avoid null reference errors.
These are custom hooks that other plugins can listen for. Simply define a method with the same name and expected parameters in your plugin to handle the event. Hooks are triggered at key moments and are useful for extending or reacting to plugin behavior.
These hooks are injected into the game's code using Harmony. They let the plugin run code at key points in the game's internal logic. You can return values to block or modify behavior. Use with caution — these are powerful and can affect core mechanics.
Cart