This plugin turns electric buttons into command triggers, allowing you to execute commands when pressed.
Permissions
buttoncommands.admin
- Allows you to register buttons and manage their settings.
Commands
bc.add
- Registers the button you're looking at. This allows you to assign commands to it.
Stored Data
JSON:
{
"Press Buttons": {
"123456789": {
"Require Button Powered": true,
"Disable Power Output On Press": true,
"Run Random Command": false,
"Commands": [
{
"Type": "Chat",
"Command": "Hello, {PlayerName}!"
},
{
"Type": "Server",
"Command": "inventory.giveto {PlayerId} scrap 50"
},
{
"Type": "Client",
"Command": "heli.calltome"
}
]
}
}
}
Press Buttons
- A dictionary where each button's network ids stored with its assigned settings and commands.Require Button Powered
- If enabled, the button must have power to trigger commands.Disable Power Output On Press
- If enabled, the button will not output power when pressed.Run Random Command
- If enabled, one random command from the list will run instead of all.Commands To Run
- A list of commands that the button will execute when pressed. You can configure chat, server, or client commands.Type
- The type of command to run:Chat
- Sends a chat message as if typed by the player.Server
- Executes a server command.Client
- Runs a client-side command for the player.
Command
- The exact command that will be executed, supporting placeholders:{PlayerId}
- The Steam id of the player who pressed the button.{PlayerName}
- The name of the player who pressed the button.{PositionX}
- The X coordinate of the player's position.{PositionY}
- The Y coordinate of the player's position.{PositionZ}
- The Z coordinate of the player's position.{Grid}
- The map grid where the player is located.
Localization
JSON:
{
"NoPermission": "You do not have permission to use this command.",
"AlreadyRegistered": "This button is already registered.",
"ButtonRegistered": "Button registered successfully.",
"NoButtonSight": "No button found in your line of sight.",
"NoButtonRange": "No button found within range."
}