-- Info.lua -- Implements the g_PluginInfo standard plugin description g_PluginInfo = { Name = "Core", SourceLocation = "https://github.com/cuberite/Core", Description = [[Implements some of the basic commands needed to run a simple server.]], Commands = { ["/about"] = { Alias = "/abt", Permission = "core.version", Handler = HandleVersionCommand, HelpString = "Shows the version of the server software.", }, ["/ban"] = { Permission = "core.ban", Handler = HandleBanCommand, HelpString = "Bans a player.", }, ["/clear"] = { Permission = "core.clear", Handler = HandleClearCommand, HelpString = "Clears the inventory of a player.", }, ["/do"] = { Permission = "core.do", Handler = HandleDoCommand, HelpString = "Runs a command as a player.", }, ["/difficulty"] = { Permission = "core.difficulty", Handler = HandleDifficultyCommand, HelpString = "Changes the difficulty level of the world you're located in.", }, ["/effect"] = { Permission = "core.effect", Handler = HandleEffectCommand, HelpString = "Adds an effect to a player.", }, ["/enchant"] = { Permission = "core.enchant", Handler = HandleEnchantCommand, HelpString = "Adds an enchantment to a specified player's held item.", ParameterCombinations = { { Params = "player enchantmentID", Help = "Adds the specified enchantment to the specified player's currently held item.", }, { Params = "player enchantmentID level", Help = "Adds the specified enchantment of the given level to the specified player's currently held item.", }, }, }, ["/give"] = { Permission = "core.give", Handler = HandleGiveCommand, HelpString = "Gives an item to a player.", ParameterCombinations = { { Params = "player item", Help = "Gives the player one of the specified item.", }, { Params = "player item amount", Help = "Gives the player the given amount of the specified item.", }, { Params = "player item amount data", Help = "Gives the player the given amount of the specified item with the given data value.", }, { Params = "player item amount data dataTag", Help = "Gives the player the given amount of the specified item with the given data value and DataTag.", }, }, }, ["/gamemode"] = { Alias = "/gm", Permission = "core.changegm", Handler = HandleChangeGMCommand, HelpString = "Changes a player's gamemode.", ParameterCombinations = { { Params = "gamemode", Help = "Changes your own gamemode.", }, { Params = "gamemode player", Help = "Changes the gamemode of the specified player, rather then your own.", }, }, }, ["/help"] = { Alias = "/?", Permission = "core.help", Handler = HandleHelpCommand, HelpString = "Shows available commands.", }, ["/ienchant"] = { Permission = "core.enchant.self", Handler = HandleEnchantCommand, HelpString = "Adds an enchantment to an item.", ParameterCombinations = { { Params = "enchantmentID", Help = "Adds the specified enchantment to the currently held item.", }, { Params = "enchantmentID level", Help = "Adds the specified enchantment of the given level to the currently held item.", }, }, }, ["/item"] = { Alias = "/i", Permission = "core.item", Handler = HandleItemCommand, HelpString = "Gives your player an item.", ParameterCombinations = { { Params = "item", Help = "Gives the caller one of the specified item.", }, { Params = "item amount", Help = "Gives the caller the given amount of the specified item.", }, { Params = "item amount data", Help = "Gives the caller the given amount of the specified item with the given data value.", }, { Params = "item amount data dataTag", Help = "Gives the caller the given amount of the specified item with the given data value and DataTag.", }, }, }, ["/kick"] = { Permission = "core.kick", Handler = HandleKickCommand, HelpString = "Kicks a player.", }, ["/kill"] = { Permission = "core.kill", Handler = HandleKillCommand, HelpString = "Kills a player.", }, ["/list"] = { Permission = "core.list", Handler = HandleListCommand, HelpString = "Shows a list of connected players.", }, ["/listgroups"] = { Permission = "core.listgroups", Handler = HandleListGroupsCommand, HelpString = "Shows a list of the available groups.", Alias = "/groups", }, ["/listranks"] = { Permission = "core.listranks", Handler = HandleListRanksCommand, HelpString = "Shows a list of the available ranks.", Alias = "/ranks", }, ["/me"] = { Permission = "core.me", Handler = HandleMeCommand, HelpString = "Broadcasts what you are doing.", }, ["/motd"] = { Permission = "core.motd", Handler = HandleMOTDCommand, HelpString = "Shows the message of the day.", }, ["/numchunks"] = { Permission = "core.numchunks", Handler = HandleNumChunksCommand, HelpString = "Shows number of chunks currently loaded.", }, ["/plugins"] = { Alias = "/pl", Permission = "core.plugins", Handler = HandlePluginsCommand, HelpString = "Shows a list of the plugins.", ParameterCombinations = { { Params = "[] [] ...", Help = "Filters the plugin list to show only the plugins with the specified status (default: loaded).", }, }, }, ["/portal"] = { Alias = "/world", Permission = "core.portal", Handler = HandlePortalCommand, HelpString = "Moves your player to a different world.", }, ["/r"] = { Permission = "core.tell", Handler = HandleRCommand, HelpString = "Replies to the latest private message you received.", }, ["/rank"] = { Permission = "core.rank", Handler = HandleRankCommand, HelpString = "Shows or sets a player's rank.", }, ["/op"] = { Permission = "core.rank", Handler = HandleOpCommand, HelpString = "Add a player to the administrator rank.", }, ["/players"] = { Permission = "core.players", Handler = HandlePlayersCommand, HelpString = "Shows a list of all connected players.", }, ["/regen"] = { Permission = "core.regen", Handler = HandleRegenCommand, HelpString = "Regenerates a chunk.", }, ["/reload"] = { Permission = "core.reload", Handler = HandleReloadCommand, HelpString = "Reloads all plugins.", }, ["/save-all"] = { Permission = "core.save-all", Handler = HandleSaveAllCommand, HelpString = "Saves all worlds.", }, ["/say"] = { Permission = "core.say", Handler = HandleSayCommand, HelpString = "Sends a message in the chat to other players.", }, ["/scoreboard"] = { HelpString = "Manages and displays scores for various scoreboard objectives. ", Subcommands = { objectives = { HelpString = "Manage Objectives", Permission = "core.scoreboard.objectives", Handler = HandleScoreboardObjectivesCommand, ParameterCombinations = { { Params = "list", Help = "List all existing objectives with their display names and criteria.", }, { Params = "add objective criteria displayName", Help = "Create a new objective with the given internal objective name, specified criterion, and the optional display name.", }, { Params = "remove objective", Help = "Delete the named objective from the scoreboard system.", }, { Params = "setdisplay slot objective", Help = "Display score info for the objective in the given slot.", }, { Params = "modify objective displayname name", Help = "Change the display name of the scoreboard in display slots.", }, -- Not implemented yet -- { -- Params = "modify objective rendertype (hearts|integer)", -- Help = "Change the display format for scores in the tab player list.", -- }, }, }, players = { HelpString = "Manage Players", Permission = "core.scoreboard.players", Handler = HandleScoreboardPlayersCommand, ParameterCombinations = { -- Not Implemented yet -- { -- Params = "list", -- Help = "Lists all score holders which are tracked in some way by the scoreboard system.", -- }, { Params = "list player", Help = "Lists all score holders which are tracked in some way by the scoreboard system for a player.", }, { Params = "get player objective", Help = "Return the scoreboard value.", }, { Params = "set player objective score", Help = "Set the target's scores in the given objective, overwriting any previous score.", }, { Params = "add player objective score", Help = "Increments the target's scores in the given objective.", }, { Params = "remove player objective score", Help = "Decrements the target's scores in the given objective.", }, { Params = "reset player", Help = "Deletes all scores for the targets", }, { Params = "reset player objective", Help = "Delete score for the targets in the specified objective", }, { Params = "operation targetPlayer targetObjective operation sourcePlayer sourceObjective", Help = "Applies an arithmetic operation altering the target's scores in the target objective, using source's scores in the source objective as input", }, }, }, }, }, ["/seed"] = { Permission = "core.seed", Handler = HandleSeedCommand, HelpString = "Shows the seed of the given world name or current world, if not given.", }, ["/setspawn"] = { Permission = "core.setspawn", Handler = HandleSetSpawnCommand, HelpString = "Changes the world's spawn point.", }, ["/spawn"] = { Permission = "core.spawn", Handler = HandleSpawnCommand, HelpString = "Returns a player to the spawn point.", }, ["/spawnpoint"] = { Permission = "core.spawnpoint", Handler = HandleSpawnPointCommand, HelpString = "Sets the spawn point for a player.", }, ["/stop"] = { Permission = "core.stop", Handler = HandleStopCommand, HelpString = "Stops the server.", }, ["/sudo"] = { Permission = "core.sudo", Handler = HandleSudoCommand, HelpString = "Runs a command as a player, ignoring permissions.", }, ["/summon"] = { Permission = "core.summon", Handler = HandleSummonCommand, HelpString = "Summons an entity in the world.", }, ["/tell"] = { Permission = "core.tell", Alias = "/msg", Handler = HandleTellCommand, HelpString = "Sends a private message to a player.", }, ["/time"] = { HelpString = "Sets or displays the time.", Subcommands = { day = { HelpString = "Sets the time to day.", Permission = "core.time.set", Handler = HandleSpecialTimeCommand, ParameterCombinations = { { Params = "world", Help = "Sets the time in the specified world, rather than the current world.", }, }, }, night = { HelpString = "Sets the time to night.", Permission = "core.time.set", Handler = HandleSpecialTimeCommand, ParameterCombinations = { { Params = "world", Help = "Sets the time in the specified world, rather than the current world.", }, }, }, set = { HelpString = "Sets the time to a given value.", Permission = "core.time.set", Handler = HandleSetTimeCommand, ParameterCombinations = { { Params = "value", Help = "Sets the time to the given value.", }, { Params = "day", Help = "Sets the time to day.", }, { Params = "night", Help = "Sets the time to night.", }, { Params = "value world", Help = "Sets the time to the given value in the specified world, rather than the current world.", }, { Params = "day world", Help = "Sets the time to day in the specified world, rather than the current world.", }, { Params = "night world", Help = "Sets the time to night in the specified world, rather than the current world.", }, }, }, add = { HelpString = "Adds a given value to the current time.", Permission = "core.time.set", Handler = HandleAddTimeCommand, ParameterCombinations = { { Params = "value", Help = "Adds the value given to the current time.", }, { Params = "value world", Help = "Adds the value to the time in the given world, rather than the current world.", }, }, }, query = { Subcommands = { daytime = { HelpString = "Displays the current time.", Permission = "core.time.query.daytime", Handler = HandleQueryDaytimeCommand, ParameterCombinations = { { Params = "world", Help = "Displays the time in the specified world, rather than the current world.", }, }, }, gametime = { HelpString = "Displays the amount of time elapsed since start.", Permission = "core.time.query.gametime", Handler = HandleQueryGametimeCommand, ParameterCombinations = { { Params = "world", Help = "Displays the time in the specified world, rather than the current world", }, }, }, }, }, }, }, ["/toggledownfall"] = { Permission = "core.toggledownfall", Handler = HandleToggleDownfallCommand, HelpString = "Toggles the weather between clear skies and rain.", ParameterCombinations = { { Params = "world", Help = "Toggles the weather in the specified world, rather than the current world.", }, }, }, ["/tp"] = { Permission = "core.teleport", Handler = HandleTPCommand, HelpString = "Teleports your player to another player.", }, ["/tps"] = { Permission = "core.tps", Handler = HandleTpsCommand, HelpString = "Returns the tps (ticks per second) from the server.", }, ["/unban"] = { Permission = "core.unban", Handler = HandleUnbanCommand, HelpString = "Unbans a player.", }, ["/unloadchunks"] = { Permission = "core.unloadchunks", Handler = HandleUnloadChunksCommand, HelpString = "Unloads all unused chunks.", }, ["/unrank"] = { Permission = "core.unrank", Handler = HandleUnrankCommand, HelpString = "Add a player to the default rank.", Alias = "/deop", }, ["/unsafegive"] = { Permission = "core.give.unsafe", Handler = HandleUnsafeGiveCommand, HelpString = "Gives an item to a player, even if the item is blacklisted.", ParameterCombinations = { { Params = "player item", Help = "Gives the player one of the specified item.", }, { Params = "player item amount", Help = "Gives the player the given amount of the specified item.", }, { Params = "player item amount data", Help = "Gives the player the given amount of the specified item with the given data value.", }, { Params = "player item amount data dataTag", Help = "Gives the player the given amount of the specified item with the given data value and DataTag.", }, }, }, ["/unsafeitem"] = { Permission = "core.item.unsafe", Handler = HandleUnsafeItemCommand, HelpString = "Gives your player an item, even if the item is blacklisted.", ParameterCombinations = { { Params = "item", Help = "Gives the caller one of the specified item.", }, { Params = "item amount", Help = "Gives the caller the given amount of the specified item.", }, { Params = "item amount data", Help = "Gives the caller the given amount of the specified item with the given data value.", }, { Params = "item amount data dataTag", Help = "Gives the caller the given amount of the specified item with the given data value and DataTag.", }, }, }, ["/version"] = { Alias = "/ver", Permission = "core.version", Handler = HandleVersionCommand, HelpString = "Shows the version of the server software.", }, ["/viewdistance"] = { Permission = "core.viewdistance", Handler = HandleViewDistanceCommand, HelpString = "Changes your view distance.", }, ["/weather"] = { Permission = "core.weather", Handler = HandleWeatherCommand, HelpString = "Changes the world's weather.", ParameterCombinations = { { Params = "weather", Help = "Set the weather to to the given condition, can be: clear, rain, or thunder.", }, { Params = "weather DurationInSeconds", Help = "Set the weather to the given condition, for the specified duration.", }, { Params = "weather world", Help = "Set the weather to the given condition in the given world, rather than the default world.", }, { Params = "weather DurationInSeconds world", Help = "Set the weather to the given condition, have it last for the specified duration, in the given world.", }, }, }, ["/whitelist"] = { HelpString= "Manages the whitelist.", Subcommands = { add = { HelpString = "Adds a player to the whitelist.", Permission = "core.whitelist", Handler = HandleWhitelistAddCommand, ParameterCombinations = { { Params = "player", Help = "Adds the specified player to the whitelist.", }, }, }, list = { HelpString = "Shows a list of all players on the whitelist.", Permission = "core.whitelist", Handler = HandleWhitelistListCommand, }, off = { HelpString = "Turns whitelist processing off.", Permission = "core.whitelist", Handler = HandleWhitelistOffCommand, }, on = { HelpString= "Turns whitelist processing on.", Permission = "core.whitelist", Handler = HandleWhitelistOnCommand, }, remove = { HelpString = "Removes a player from the whitelist.", Permission = "core.whitelist", Handler = HandleWhitelistRemoveCommand, ParameterCombinations = { { Params = "player", Help = "Removes the specified player from the whitelist.", }, }, }, }, -- Subcommands }, -- /whitelist ["/worlds"] = { Permission = "core.worlds", Handler = HandleWorldsCommand, HelpString = "Shows a list of all the worlds.", }, }, -- Commands ConsoleCommands = { ["about"] = { Handler = HandleVersionCommand, HelpString = "Shows the version of the server software.", }, ["ban"] = { Handler = HandleConsoleBan, HelpString = "Bans a player by name.", }, ["banip"] = { Handler = HandleConsoleBanIP, HelpString = "Bans a player by IP.", Alias = "ipban", }, ["banlist"] = { Handler = HandleConsoleBanList, HelpString = "Shows a list of all players banned by name.", }, ["banlist ips"] = { -- This is a dummy entry only to generate the documentation -- the real processing is done by the "banlist" command Handler = HandleConsoleBanList, HelpString = "Shows a list of all players banned by IP.", }, ["clear"] = { Handler = HandleConsoleClear, HelpString = "Clears the inventory of a player.", }, ["deop"] = { Handler = HandleConsoleUnrank, HelpString = "Resets a player's rank to default.", }, ["effect"] = { Handler = HandleConsoleEffect, HelpString = "Adds an effect to a player.", }, ["enchant"] = { Handler = HandleConsoleEnchant, HelpString = "Adds an enchantment to a specified player's held item.", ParameterCombinations = { { Params = "player enchantmentID", Help = "Adds the specified enchantment to the specified player's currently held item.", }, { Params = "player enchantmentID level", Help = "Adds the specified enchantment of the given level to the specified player's currently held item.", }, }, }, ["gamemode"] = { Handler = HandleConsoleGamemode, HelpString = "Changes a player's gamemode.", ParameterCombinations = { { Params = "gamemode player", Help = "Changes the gamemode of the given player.", }, }, }, ["gm"] = { Handler = HandleConsoleGamemode, HelpString = "Changes a player's gamemode.", ParameterCombinations = { { Params = "gamemode player", Help = "Changes the gamemode of the given player.", }, }, }, ["give"] = { Handler = HandleConsoleGive, HelpString = "Gives an item to a player.", ParameterCombinations = { { Params = "player item", Help = "Gives the player one of the specified item.", }, { Params = "player item amount", Help = "Gives the player the given amount of the specified item.", }, { Params = "player item amount data", Help = "Gives the player the given amount of the specified item with the given data value.", }, { Params = "player item amount data dataTag", Help = "Gives the player the given amount of the specified item with the given data value and DataTag.", }, }, }, ["groups"] = { Handler = HandleConsoleListGroups, HelpString = "Shows a list of all the available groups.", }, ["kick"] = { Handler = HandleConsoleKick, HelpString = "Kicks a player by name.", }, ["kill"] = { Handler = HandleConsoleKill, HelpString = "Kills a player.", }, ["list"] = { Handler = HandleConsoleList, HelpString = "Shows a list of all connected players in a machine-readable format.", }, ["listgroups"] = { Handler = HandleConsoleListGroups, HelpString = "Shows a list of all the available groups.", }, ["listranks"] = { Handler = HandleConsoleListRanks, HelpString = "Shows a list of all the available ranks.", }, ["numchunks"] = { Handler = HandleConsoleNumChunks, HelpString = "Shows number of chunks currently loaded.", }, ["players"] = { Handler = HandleConsolePlayers, HelpString = "Shows a list of all connected players.", }, ["plugins"] = { Handler = HandleConsolePlugins, HelpString = "Shows a list of the plugins.", }, ["rank"] = { Handler = HandleConsoleRank, HelpString = "Shows or sets a player's rank.", }, ["op"] = { Handler = HandleConsoleOp, HelpString = "Add a player to the Admin rank.", }, ["msg"] = { Handler = HandleConsoleTell, HelpString = "Sends a private message to a player.", }, ["r"] = { Handler = HandleConsoleR, HelpString = "Replies to the latest private message you received.", }, ["ranks"] = { Handler = HandleConsoleListRanks, HelpString = "Shows a list of all the available ranks.", }, ["regen"] = { Handler = HandleConsoleRegen, Alias = "regeneratechunk", HelpString = "Regenerates a chunk.", ParameterCombinations = { { Params = "chunkX chunkZ", Help = "Regenerates the specified chunk in the default world.", }, { Params = "chunkX chunkZ world", Help = "Regenerates the specified chunk in the specified world.", } }, }, -- regen ["tell"] = { Handler = HandleConsoleTell, HelpString = "Sends a private message to a player.", }, ["save-all"] = { Handler = HandleConsoleSaveAll, HelpString = "Saves all worlds.", }, ["seed"] = { Handler = HandleConsoleSeed, HelpString = "Shows the seed of the given world name or default world, if not given.", }, ["say"] = { Handler = HandleConsoleSay, HelpString = "Sends a chat message to all players.", }, ["scoreboard"] = { HelpString = "Manages and displays scores for various scoreboard objectives. ", Subcommands = { objectives = { HelpString = "Manage Objectives", Permission = "core.scoreboard.objectives", Handler = HandleConsoleScoreboardObjectives, ParameterCombinations = { { Params = "list", Help = "List all existing objectives with their display names and criteria.", }, { Params = "add objective criteria displayName", Help = "Create a new objective with the given internal objective name, specified criterion, and the optional display name.", }, { Params = "remove objective", Help = "Delete the named objective from the scoreboard system.", }, { Params = "setdisplay slot objective", Help = "Display score info for the objective in the given slot.", }, { Params = "modify objective displayname name", Help = "Change the display name of the scoreboard in display slots.", }, -- Not implemented yet -- { -- Params = "modify objective rendertype (hearts|integer)", -- Help = "Change the display format for scores in the tab player list.", -- }, }, }, players = { HelpString = "Manage Players", Permission = "core.scoreboard.players", Handler = HandleConsoleScoreboardPlayers, ParameterCombinations = { -- Not Implemented yet -- { -- Params = "list", -- Help = "Lists all score holders which are tracked in some way by the scoreboard system.", -- }, { Params = "list player", Help = "Lists all score holders which are tracked in some way by the scoreboard system for a player.", }, { Params = "get player objective", Help = "Return the scoreboard value.", }, { Params = "set player objective score", Help = "Set the target's scores in the given objective, overwriting any previous score.", }, { Params = "add player objective score", Help = "Increments the target's scores in the given objective.", }, { Params = "remove player objective score", Help = "Decrements the target's scores in the given objective.", }, { Params = "reset player", Help = "Deletes all scores for the targets", }, { Params = "reset player objective", Help = "Delete score for the targets in the specified objective", }, { Params = "operation targetPlayer targetObjective operation sourcePlayer sourceObjective", Help = "Applies an arithmetic operation altering the target's scores in the target objective, using source's scores in the source objective as input", }, }, }, }, }, ["spawnpoint"] = { Handler = HandleConsoleSpawnPoint, HelpString = "Sets the spawn point for a player.", }, ["spawn"] = { Handler = HandleConsoleSpawn, HelpString = "Returns a player to the spawn point.", }, ["summon"] = { Handler = HandleConsoleSummon, HelpString = "Summons an entity in the world.", }, ["time"] = { HelpString = "Sets or displays the time.", Subcommands = { day = { Handler = HandleConsoleSpecialTime, HelpString = "Sets the time to day.", ParameterCombinations = { { Params = "WorldName", Help = "Set the time in the specified world, rather than the default world.", }, }, }, night = { Handler = HandleConsoleSpecialTime, HelpString = "Sets the time to night.", ParameterCombinations = { { Params = "WorldName", Help = "Set the time in the specified world, rather than the default world.", }, }, }, set = { Handler = HandleConsoleSetTime, HelpString = "Sets the time to a given value.", ParameterCombinations = { { Params = "time", Help = "Sets the time to the given value." }, { Params = "day", Help = "Sets the time to day.", }, { Params = "night", Help = "Sets the time to night.", }, { Params = "time WorldName", Help = "Sets the time to the given value in the specified world, rather than the default world.", }, { Params = "day WorldName", Help = "Sets the time to day in the specified world, rather than the default world.", }, { Params = "night WorldName", Help = "Sets the time to night in the specified world, rather than the default world.", }, }, }, add = { Handler = HandleConsoleAddTime, HelpString = "Adds a given value to the current time.", ParameterCombinations = { { Params = "amount", Help = "Adds the given value to the current time." }, { Params = "add WorldName", Help = "Adds the value to the time in the specified world, rather than the default world.", }, }, }, query = { Subcommands = { daytime = { Handler = HandleConsoleQueryDaytime, HelpString = "Displays the current time.", ParameterCombinations = { { Params = "WorldName", Help = "Displays the time in the specified world, rather than the default world.", }, }, }, gametime = { Handler = HandleConsoleQueryGametime, HelpString = "Displays the amount of time elapsed since start.", ParameterCombinations = { { Params = "WorldName", Help = "Display the time in the given world, rather than the default world", }, }, }, }, }, }, }, ["toggledownfall"] = { Handler = HandleConsoleToggleDownfall, HelpString = "Toggles the weather between clear skies and rain.", ParameterCombinations = { { Params = "WorldName", Help = "Changes the weather in the specified world, rather than the default world.", }, }, }, ["tp"] = { Handler = HandleConsoleTeleport, HelpString = "Teleports a player.", }, ["tps"] = { Handler = HandleConsoleTps, HelpString = "Returns the tps (ticks per second) from the server.", }, ["unban"] = { Handler = HandleConsoleUnban, HelpString = "Unbans a player by name.", }, ["unbanip"] = { Handler = HandleConsoleUnbanIP, HelpString = "Unbans a player by IP.", }, ["unloadchunks"] = { Handler = HandleConsoleUnloadChunks, HelpString = "Unloads all unused chunks.", }, ["unrank"] = { Handler = HandleConsoleUnrank, HelpString = "Resets a player's rank to default.", }, ["unsafegive"] = { Handler = HandleConsoleUnsafeGive, HelpString = "Gives an item to a player, even if the item is blacklisted.", ParameterCombinations = { { Params = "player item", Help = "Gives the player one of the specified item.", }, { Params = "player item amount", Help = "Gives the player the given amount of the specified item.", }, { Params = "player item amount data", Help = "Gives the player the given amount of the specified item with the given data value.", }, { Params = "player item amount data dataTag", Help = "Gives the player the given amount of the specified item with the given data value and DataTag.", }, }, }, ["version"] = { Handler = HandleVersionCommand, HelpString = "Shows the version of the server software.", }, ["weather"] = { Handler = HandleConsoleWeather, HelpString = "Changes the world's weather.", ParameterCombinations = { { Params = "weather", Help = "Sets the weather to to the given condition, can be: clear, rain, or thunder.", }, { Params = "weather DurationInSeconds", Help = "Sets the weather to the given condition, for the specified duration.", }, { Params = "weather world", Help = "Sets the weather to the given condition in the given world, rather than the default world.", }, { Params = "weather DurationInSeconds world", Help = "Sets the weather to the given condition, have it last for the specified duration, in the given world.", }, }, }, ["whitelist"] = { HelpString= "Manages the whitelist.", Subcommands = { add = { HelpString = "Adds a player to the whitelist.", Handler = HandleConsoleWhitelistAdd, ParameterCombinations = { { Params = "player", Help = "Adds the specified player to the whitelist.", }, }, }, list = { HelpString = "Shows a list of all players on the whitelist.", Handler = HandleConsoleWhitelistList, }, off = { HelpString = "Turns off whitelist processing.", Handler = HandleConsoleWhitelistOff, }, on = { HelpString = "Turns on whitelist processing.", Handler = HandleConsoleWhitelistOn, }, remove = { HelpString = "Removes a player from the whitelist.", Handler = HandleConsoleWhitelistRemove, ParameterCombinations = { { Params = "PlayerName", Help = "Removes the specified player from the whitelist.", }, }, }, }, -- Subcommands }, -- whitelist ["worlds"] = { Handler = HandleConsoleWorlds, HelpString = "Shows a list of all the worlds.", }, }, -- ConsoleCommands Permissions = { ["core.changegm"] = { Description = "Allows players to change gamemodes.", RecommendedGroups = "admins", }, ["core.enchant"] = { Description = "Allows players to add an enchantment to a player's held item.", RecommendedGroups = "admins", }, ["core.enchant.self"] = { Description = "Allows players to add an enchantment to their own held item.", RecommendedGroups = "admins", }, ["core.give"] = { Description = "Allows players to give items to other players.", RecommendedGroups = "admins", }, ["core.give.unsafe"] = { Description = "Allows players to give items to other players, even if the item is blacklisted.", RecommendedGroups = "none", }, ["core.item"] = { Description = "Allows players to give items to themselves.", RecommendedGroups = "admins", }, ["core.item.unsafe"] = { Description = "Allows players to give items to themselves, even if the item is blacklisted.", RecommendedGroups = "none", }, ["core.time.set"] = { Description = "Allows players to set the time of day.", RecommendedGroups = "admins", }, ["core.time.query.daytime"] = { Description = "Allows players to display the time of day.", RecommendedGroups = "everyone", }, ["core.time.query.gametime"] = { Description = "Allows players to display how long the world has existed.", }, ["core.toggledownfall"] = { Description = "Allows players to toggle the weather between clear skies and rain.", RecommendedGroups = "admins", }, ["core.weather"] = { Description = "Allows players to change the weather.", RecommendedGroups = "admins", }, ["core.whitelist"] = { Description = "Allows players to manage the whitelist.", RecommendedGroups = "admins", }, ["core.version"] = { Description = "Shows the version of the server software.", }, }, -- Permissions } -- g_PluginInfo