Troubleshooting
Commands Not Loading
Problem: Commands don't appear after restart
Solutions:
- Check that
config.jsonis valid JSON (use a JSON validator) - Ensure the file is saved with UTF-8 encoding
- Check server console for error messages
- Verify the config file path:
mods/EZCommands/config.json
Formatting Not Working
Problem: Text appears with tags visible like <color:red>text</color>
Solutions:
- Use formatting only in
messagefield - titles strip formatting automatically - Ensure tags are properly closed:
<color:red>text</color> - Check for typos in color names or tag names
- Verify hex colors start with
#:<color:#FF0000>
Links Not Clickable
Problem: Links appear as text instead of clickable
Solutions:
- Use the link tag:
<link:URL>text</link> - Ensure URL includes
https://orhttp:// - Only works in
messagefield, not in titles - Test with a simple example first
Cooldown Not Working
Problem: Players can spam commands
Solutions:
- Set
cooldownto a number greater than 0 - Restart server after config changes
- Check that cooldown is in seconds, not milliseconds
- Verify no syntax errors in config file
Auto-Run Not Executing
Problem: Commands don't run automatically
Solutions:
- Set both
autoRun: trueandautoRunIntervalto a number - Interval is in seconds (300 = 5 minutes)
- Check server console for auto-run confirmation messages
- Ensure at least one player is online (auto-run only affects online players)