Configs

On versions above 1.3.2, the configs can be found in {minecraft_dir}/config/ktrl/ the custom buttons and the main config are stored separately. Please remember the leading / before the command.

On versions above 1.5.0 the config file is {minecraft_dir}/config/kontrolo.json5.

The 1.5.0 default config is:

{
	"main": {
		"time": {
			"addButton1": 1000,
			"addButton2": 10000
		},
		"weather": {
			"delay": 1500
		}
	},
	"customGUI": {
		"b0": {
			"active": false,
			"title": "First button",
			"command": "/say Hello"
		},
		"b1": {
			"active": false,
			"title": "Second button",
			"command": "/say Hello"
		},
		"b2": {
			"active": false,
			"title": "Third button",
			"command": "/say Hello"
		},
		"b3": {
			"active": false,
			"title": "Fourth button",
			"command": "/say Hello"
		},
		"b4": {
			"active": false,
			"title": "Fifth button",
			"command": "/say Hello"
		},
		"b5": {
			"active": false,
			"title": "Sixth button",
			"command": "/say Hello"
		}
	}
}

The time.addButton duration and weather.delay duration is in ticks. The time.addButton adds that amount of ticks to the game time. The weather.delay stops the weather from changing back in that amount of ticks. Both values cannot be blank and must be above 0.

The active field in the customGUI section shows the button on the custom GUI. The title field is the text that is shown on the button. The command is the command that you want to send. Technically the command field doesn't need to be a command, if you type text in that section without a / it will just send the contents as a chat message.

Last updated