This plugin has been updated under a branch to work with uMod What is uMod?
MrBlue
Adds new players to a temporary group, and permanent group on return

Supported Games
GameServerKingsGameServerKings

Noob Group adds new players to a "noob" group can be used to assign permissions only intended for new players. After the player returns once, they will be added to a "returning" group, which can have other permissions assigned. This is useful for rewarding returning players with extra benefits and such.

Permissions

  • noobgroup.reset
    Allows player to use the 'noobreset' command

Commands

  • noobreset
    Reset the configured groups (everyone will be seen as a noob after they rejoin the server)

Configuration

For Oxide:

{
  "Noob group": {
    "Name": "noob",
    "Title": "Newbie",
    "Rank": 0
  },
  "Returning group": {
    "Name": "returning",
    "Title": "Returning",
    "Rank": 0
  },
  "Reset group on new save/map wipe": false
}

For uMod:

# Enable/disable resetting groups on new save/map wipe
reset_on_wipe = false

# The group new players are assigned to
[noob_group]
name = "noob"
title = "Newbie"
rank = 0

# The group returning players are assigned to
[returning_group]
name = "returning"
title = "Returning"
rank = 0

Note: The save/wipe option is currently only available for select games.

Localization

For Oxide:

{
  "CommandReset": "noobreset",
  "GroupsReset": "All groups have been reset",
  "NotAllowed": "You are not allowed to use the '{0}' command"
}

For uMod:

[commands]
# The command used to reset the groups
reset_command = "noobreset"

[responses]
# The reply given if a player does not have permission to use a command
no_permission = "Sorry, '{command}' requires permission '{permission}'"
# The console/log message shown when a group is created
group_created = "Group '{group}' did not exist, created"
# The console/log message shown when a group is removed
group_removed = "Group '{group}' removed due to reset"
# The reply given when the groups have been reset
groups_reset = "All groups have been reset"

Credits

  • YpDutch, for the original version of this plugin

MIT License, with distribution exclusivity for uMod.org


Copyright (c) 2020 Wulf


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:


The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.


THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.