Gamemode Gun Game

Gamemode Gun Game 1.1.1

Progress through weapons with each kill. The first to complete wins
Dependencies
Gamemode Core (Required)
Gear Core (Required)


Every kill you land swaps your weapon for a new one. Your goal is to make it through a sequence of different weapons faster than anyone else. Get to the final weapon first and take the win.

Commands

  • gm.gg create <title> <position> <radius> [maxPlayerCapacity] - Creates a new Gun Game arena with the specified title, position, radius, and optional maximum player capacity.
  • gm.gg edit <arenaId> - Enters editing mode for the specified Gun Game arena, allowing modifications to spawn points, teleporters, and other settings.
  • gm.gg remove - Deletes the Gun Game arena currently being edited.
  • gm.gg teleporter create <position> <radius> [visibilityRange] [visibleZone]- Creates a teleporter within the arena at the specified position and radius.
    • visibilityRange (optional) - Sets the distance players can see the teleporter's information.
    • visibleZone (optional) - Adds a shaded dome around the teleporter for visual marking.
  • gm.gg teleporter remove - Deletes the teleporter associated with the currently edited arena.
  • gm.gg spawn add <position> <radius> - Adds a spawn point to the arena at the specified position and radius.
  • gm.gg spawn remove <spawnPointId> - Deletes a specific spawn point from the arena by its id.
  • gm.gg rule add <rule1> [<rule2> ...] - Adds one or more rules to the Gun Game arena. (See Rules for details on available rules.)
  • gm.gg rule remove <rule1> [<rule2> ...] - Removes one or more rules from the Gun Game arena.
  • gm.gg weapon add <gearSet> <killsNeeded> - Adds a weapon stage to the Gun Game progression, specifying a gear set and required kills to unlock it.
  • gm.gg weapon edit <stage> <newGearSet> <newKillsNeeded> - Edits an existing weapon stage with a new gear set or kill requirement.
  • gm.gg weapon delete <stage> - Deletes a weapon stage from the progression path.
  • gm.gg set <property> <value>- Configures properties of the Gun Game arena, including:
    • title <string> - Sets the arena's name.
    • enabled <true/false> - Enables or disables the arena for players.
    • maxplayers <int> - Sets the maximum number of players allowed.
    • infotemplate <string> - Customizes the arena's information template, showing player count, status, etc. (Check Arena Teleporters for all placeholders you can use.)
    • roundduration <float>- Sets round duration in seconds.
      • A positive number ends the round after the specified duration.
      • Setting it to -1 lets the round run indefinitely. (The round will only end when a player progresses through all weapon stages.)
    • killfeed <true/false> - Enables or disables kill notifications in the chat.
    • warmupduration <int> - Determines the duration of the warmup period before the round begins. (A minimum of 10 seconds is enforced.)
Note: For commands requiring a position, use coordinates or type here to set your current location.

Quick Start

  1. Ensure a lobby is set up first. If it's not, follow the lobby setup instructions here.

  2. Use gm.gg create <title> <position> <radius> [maxPlayerCapacity] to create the Gun Game arena.
    Example: gm.gg create Warehouse here 30 20 creates an arena called 'Warehouse' at your location, with a radius of 30 and a maximum capacity of 20 players.

  3. Place spawn points within the arena using gm.gg spawn add <position> <radius>. Add as many spawn points as needed.
    Example: gm.gg spawn add here 1 adds a spawn point at your location with a radius of 1.

  4. Define the weapon stages players will progress through using gm.gg weapon add <gearSet> <killsNeeded> for each stage. (Requires Gear Core plugin.)
    Example: gm.gg weapon add RifleSet 3 sets up a stage where players need 3 kills with 'RifleSet' to progress.

  5. Place a teleporter for players to enter the arena with gm.gg teleporter create <position> <radius>. (This teleporter must be placed within the lobby zone.)
    Example: gm.gg teleporter create here 1 places a teleporter at your location with a radius of 1.

  6. Set the duration for each round using gm.gg set roundduration <seconds>.
    Example: gm.gg set roundduration 300 sets a 5-minute round duration.

Configuration

JSON:
{
  "Version": "1.1.0",
  "Restore Full Health On Kill": true,
  "Restock Gun Ammo On Kill": true,
  "Show Toast On Weapon Unlock": false,
  "Locked Inventory Containers": [
    "wear"
  ],
}
  • Restore Full Health On Kill - Determines whether players' health is fully restored after each kill.
  • Restock Gun Ammo On Kill - Determines whether players' gun ammo is fully refilled with each kill.
  • Locked Inventory Containers - Determines which parts of the player's inventory will be locked when they are in the arena. You can choose one or more of the following values: main, belt, wear, or alI. If you leave it empty, none of the inventory sections will be locked.
  • Show Toast On Weapon Unlock - Controls whether a small popup notification appears on the player's screen when they unlock a new weapon. (A chat message is always sent to notify them of the upgrade.)

Stored Data

JSON:
{
  "Arenas": [
    {
      "Enabled": true,
      "Id": "001",
      "Title": "Containers",
      "Gamemode": "GunGame",
      "Radius": 50.0,
      "Position": {
        "x": 150.0,
        "y": 250.0,
        "z": 350.0
      },
      "Rules": ["NoLootSpawn", "NoCrafting", "NoNPCSpawn", "NoSignEditing"],
      "Teleporter": {
        "Radius": 5.0,
        "Position": {
          "x": 155.0,
          "y": 250.0,
          "z": 355.0
        },
        "Information Text Visibility Range": 20.0,
        "Visible Zone": true
      },
      "Information Template": "{Title}\nGamemode: {Gamemode}\nStatus: {Status}\nTime Left: {TimeLeft}\nPlayers: {PlayerCount} / {PlayerCapacity}\n\nParticipants:\n{PlayerList}",
      "Maximum Player Capacity": 10,
      "Spawn Points": [
        {
          "Id": "001",
          "Position": {
            "x": 150.0,
            "y": 251.0,
            "z": 350.0
          },
          "Radius": 1.0
        },
        {
          "Id": "002",
          "Position": {
            "x": 155.0,
            "y": 251.0,
            "z": 355.0
          },
          "Radius": 1.0
        }
      ],
      "Round Duration Seconds": 300,
      "Has Kill Feed": true,
      "Weapon Progression Path": {
        "1": {
          "Gear Set": "AssaultRifle",
          "Kill Needed To Unlock": 1
        },
        "2": {
          "Gear Set": "Pistol",
          "Kill Needed To Unlock": 2
        },
        "3": {
          "Gear Set": "Caliber",
          "Kill Needed To Unlock": 3
        },
        "4": {
          "Gear Set": "Blunderbuss",
          "Kill Needed To Unlock": 4
        },
        "5": {
          "Gear Set": "Sniper",
          "Kill Needed To Unlock": 5
        }
      },
      "Reset To First Weapon On Death": true
    }
  ]
}
Author
VisEntities
License duration
Unlimited
Price
10.00 USD
First release
Last update

Ratings

0.00 star(s) 0 reviews

Parent plugin

Also by VisEntities

  • Water Well Settings
    Water Well Settings
    Allows customization of water wells
  • Forever Ripe
    Forever Ripe
    Stops plants from dying by keeping them in a ripe state all the time
  • Pop
    Pop
    Shows how many players are online, sleeping, and queued

Latest updates

  1. 1.1.1

    Compatibility with the latest version of Core.
  2. 1.1.0

    Updated for compatibility with the latest Gamemode Core version. You can now configure which...
  3. 1.0.3

    Updated for compatibility with the latest Gamemode Core version.
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