
RaidMeter
Stylish Progress Display in Minecraft
The RaidMeter mod allows you to create visual progress indicators directly in the game and activate various events when they are completed. This is especially convenient when used together with CCI to create impressive task tracking systems.
Management Commands
For configuring all parameters, the /raidmeter command is available with several options:
- Addition: /raidmeter add id display_name max_amount current_amount position type
- Removal: /raidmeter remove id
- Modification: /raidmeter modify id add|set|color|current_amount|max_amount|name|position|type|display_add|display_remove|display_for
- Information: /raidmeter info id color|current_amount|max_amount|name|position|type
The id parameter is a short identifier (for example, potato2), and display_name can be a text string in quotes, such as "Cats are the best". The command auto-completion system significantly simplifies working with settings.
Integration with CCI
For extended functionality, you can use CCI game hooks. The RaidMeterEvent.Complete event allows you to track when indicators are fully filled. CCI can also be used to automatically change progress values through modification commands.
Example gamehooks.json configuration:
{
"listeners": [
{
"className": "RaidMeterEvent$Complete",
"staticAccessors": [],
"accessors": [{ "function": "RaidMeter"}
],
"argBasedAccessors": {},
"event": {
"conditions": [],
"outcomes": [
{
"message": "Test",
"type": "narrator"
}
]
}
}
]
}
For a more detailed study of integration possibilities, it is recommended to familiarize yourself with the relevant tutorial materials.