Skip to content

Commands

EmilDeuOfficial edited this page Aug 18, 2026 · 2 revisions

Commands

Main command: /chunksticker Alias: /ct

All subcommands require the player to be in-game, except /ct list, /ct status, /ct reload, /ct on and /ct off which also work from the console.


Overview

Command Permission Description
/ct set [radius] chunksticker.set Register chunk(s)
/ct delete [radius] chunksticker.delete Remove chunk(s)
/ct list chunksticker.list List all registered chunks
/ct on chunksticker.toggle Enable ChunkTicker globally
/ct off chunksticker.toggle Disable ChunkTicker globally
/ct reload chunksticker.reload Reload config from disk
/ct status chunksticker.status Show current state

/ct set [radius]

Registers the chunk you are currently standing in. If a radius is given, all chunks in a square of (radius*2+1)² around you are registered as well.

Examples:

/ct set          → registers the single chunk you're in
/ct set 0        → same as above
/ct set 1        → registers a 3×3 area (9 chunks)
/ct set 2        → registers a 5×5 area (25 chunks)
/ct set 5        → registers an 11×11 area (121 chunks)

Chunks that are already registered are silently skipped. The chunk list is saved to config.yml immediately.

Maximum radius: 20 (41×41 = 1681 chunks). Use large values with caution - each loaded chunk has a small performance cost.


/ct delete [radius]

Removes the chunk ticket(s) for the chunk(s) around you. Chunks not in the registered list are silently skipped. The chunk list is saved immediately.

Examples:

/ct delete       → removes just the chunk you're in
/ct delete 1     → removes a 3×3 area
/ct delete 5     → removes an 11×11 area

/ct list

Prints all registered chunks to chat. Output format:

[ChunkTicker] Registrierte Chunks (3):
  Welt: world   X: 0   Z: 0
  Welt: world   X: 1   Z: 0
  Welt: world_nether   X: -5   Z: 12

Coordinates are chunk coordinates, not block coordinates. To convert: block X ÷ 16 = chunk X.


/ct on

Enables ChunkTicker globally. Applies tickets to all registered chunks immediately.

This setting is persisted in config.yml (global-enabled: true) and survives server restarts.


/ct off

Disables ChunkTicker globally. Removes all active tickets - chunks may unload naturally. The registered chunk list is not deleted; /ct on restores everything.

This setting is persisted in config.yml (global-enabled: false).


/ct reload

Removes all active tickets, re-reads config.yml from disk, then re-applies tickets for all listed chunks. Useful after manually editing the config.

When to use: After adding or removing chunks directly in config.yml (only safe while the server is stopped, but reload will apply changes on a live server too).


/ct status

Shows the current state of the plugin:

[ChunkTicker] Status: AKTIV
[ChunkTicker] Registrierte Chunks: 5
  world: 3 Chunk(s)
  world_nether: 2 Chunk(s)

Clone this wiki locally