Kill Awards

Oxide Kill Awards 1.0.0

Sign in to download
Dependencies
Gear Core (Optional)
This plugin allows players to receive specific rewards as they achieve kill milestones, such as health boosts, ammo refills, and more.




Rewards

Each milestone can be configured with different reward options:
  • Refills the ammo of the player's active weapon.
  • Heals the player by a specified amount upon reaching the milestone.
  • Equips a designated gear set for the player (requires Gear Core plugin).
  • Runs custom commands that can perform a variety of actions, like granting items or triggering server events.

Configuration

JSON:
{
    "Version": "1.0.0",
    "Include NPC Kills": false,
    "Include Animal Kills": false,
    "Ignore Teammate Kills": true,
    "Reset Milestone On Death": true,
    "Kill Milestones": {
        "1": {
            "Amount Of Health Restored": 10.0,
            "Refill Weapon Ammo": false,
            "Gear Set To Equip": "",
            "Commands To Run": []
        },
        "2": {
            "Amount Of Health Restored": 15.0,
            "Refill Weapon Ammo": true,
            "Gear Set To Equip": "",
            "Commands To Run": []
        },
        "3": {
            "Amount Of Health Restored": 20.0,
            "Refill Weapon Ammo": true,
            "Gear Set To Equip": "",
            "Commands To Run": [
                {
                    "Type": "Server",
                    "Command": "inventory.giveto {playerId} scrap 50"
                }
            ]
        }
    }
}
  • Include NPC Kills - When set to true, kills on npcs will count towards kill milestones.
  • Include Animal Kills - Allows kills on animals to count toward kill milestones if true.
  • Ignore Teammate Kills - If enabled, kills on teammates are ignored and do not contribute to milestones.
  • Reset Milestone On Death - If true, a player's kill milestone resets to zero upon death.
  • Kill Milestones- Defines milestone rewards based on kill count. Each milestone can have the following reward configurations:
    • Amount Of Health Restored - Amount of health a player receives upon reaching a specific milestone.
    • Refill Weapon Ammo - If true, the player's active weapon ammo will be refilled upon milestone completion.
    • Gear Set To Equip - Name of a gear set to be equipped at this milestone.
    • Commands To Run- List of commands executed at the milestone. Each command includes:
      • Type- The type of command to execute.
        • Chat - Sends the command as a chat message.
        • Server - Executes the command on the server.
        • Client - Runs the command directly on the player's client.
      • Command- The command string to be executed, supporting the following placeholders
        • {PlayerId} - The player's unique id.
        • {PlayerName} - The player's display name.
        • {PositionX}, {PositionY}, {PositionZ} - Player's position coordinates.
        • {Grid} - The map grid location of the player.

Localization

JSON:
{
  "HealthRestored": "You have been healed by <color=#75A838>{0}</color> health points!",
  "AmmoRefilled": "Your ammo has been fully topped up!",
  "GearSetGiven": "You have received the gear set <color=#CACF52>{0}</color>!"
}
Author
VisEntities
Downloads
12
First release
Last update

Ratings

0.00 star(s) 0 reviews

Also by VisEntities

Back
Top