EZCommands v1.0.0

Configuration

The configuration file is located at mods/EZCommands/config.json and uses JSON format.

Basic Structure

config.json
{
  "commands": [
    {
      "name": "commandname",
      "description": "What this command does",
      "requiresConfirmation": false,
      "title": "Title text",
      "subtitle": "Subtitle text",
      "message": "Chat message",
      "cooldown": 60,
      "cooldownMessage": "Please wait {time} seconds",
      "cooldownAsPopup": false,
      "cooldownPopupTitle": "Wait!",
      "cooldownPopupSubtitle": "{time} seconds left",
      "sound": true,
      "autoRun": false,
      "autoRunInterval": 300
    }
  ]
}