Earlier Versions
Name | Size | Uploaded | Game Version | Downloads | |
v3.0.2-classic release | 233.62 KB | Sep 29, 2019 | 1.13.2 | 335 | ![]() |
v3.0.2-retail release | 230.21 KB | Sep 29, 2019 | 8.2.5 | 766 | ![]() |
v3.0.1-retail release | 228.25 KB | Aug 31, 2019 | 8.2.0 | 337 | ![]() |
v3.0.1-classic release | 228.24 KB | Aug 31, 2019 | 1.13.2 | 152 | ![]() |
v3.0.0 release | 228.14 KB | Jul 17, 2018 | 8.0.1 | 2,957 | ![]() |
v2.0.9 release | 225.83 KB | Aug 31, 2017 | 7.3.0 | 752 | ![]() |
v2.0.8 release | 225.82 KB | Jul 18, 2017 | 7.2.5 | 174 | ![]() |
Candy-2.0.6 release | 228.69 KB | Jul 15, 2017 | 7.2.5 | 71 | ![]() |
Candy-2.0.5 release | 228.60 KB | Aug 14, 2016 | 7.0.3 | 620 | ![]() |
Candy-2.0.4 release | 228.15 KB | Aug 8, 2016 | 7.0.3 | 171 | ![]() |
Candy-2.0.3 release | 227.78 KB | Aug 7, 2016 | 7.0.3 | 100 | ![]() |
Candy-2.0.2 release | 226.95 KB | Jul 21, 2016 | 7.0.3 | 228 | ![]() |
Candy-2.0.1 release | 226.98 KB | Jul 19, 2016 | 7.0.3 | 145 | ![]() |
Candy-2.0.0 release | 216.42 KB | Jul 10, 2016 | 7.0.3 +1 | 133 | ![]() |
Candy-1.0.3 release | 216.08 KB | Jul 8, 2016 | 6.2.4 | 78 | ![]() |
Candy-1.0.2 release | 215.91 KB | Jul 8, 2016 | 6.2.4 | 46 | ![]() |
Candy-1.0.1 release | 215.88 KB | Jul 8, 2016 | 6.2.4 | 82 | ![]() |
Candy-1.0.0 release | 215.51 KB | Jul 7, 2016 | 6.2.4 | 72 | ![]() |
Screenshots
Description
Do you find big DataBroker panels slightly too sturdy or would you fancy something small on the side as well? Introducing Candy for your candybar sized DataBroker modules.
Candy adds singular customizable displays for DataBroker modules.
- The bars are small and freely movable to wherever you need them, making highly customized layout simple for any interface.
- Visibility of the bars can be automatically toggled based on group status, instance status, modifier keys and custom callbacks.
- The DataBroker output text can also be modified with custom callbacks.
Custom callbacks
Custom callbacks are simple calls to Lua functions.
Text callback
Text callback function receives one parameter: text. It expects a new string (text or number allowed) as return that will be used for display.
Example:
Returns reverse text:
return string.reverse(text);
Visibility callback
Visibility callback function receives two parameters: text (with color information stripped) and icon. It expects a boolean or nil as return (true is visible).
Examples:
Toggles visibility based on if player has reached maximum level:
return UnitLevel("player") == GetMaxPlayerLevel();
Toggles visibility based on durability number displayed:
local durability = tonumber(strmatch(text, "(%d+)")) or 0; return durability <= 50;
Usage
To begin using Candy you need to create the bars. You can do that by opening the options menu by typing /candy or /cd.
Editing per-bar settings is only possible when bars are unlocked. When they are unlocked you can move bar with left mouse button and open options drop down menu with right mouse button. Global settings that apply to all bars at once can be changed from the main options window.
Add a comment