- Fixed many issues with bar animations.

- Fixed combat encounter start if the player already is in combat when the boss is pulled.
- Fixed wheel scroll when sometimes it get doesn't scroll or scroll very slow.
- Added option 'Always Show Me' which when enabled always show your bar at the bottom of the window.
- Added option 'First Hit' which when enabled show who did the first struck in the combat.
- Added a panel to change class colors.
This commit is contained in:
tercio
2014-10-08 18:53:23 -03:00
parent 374fdb4eec
commit c9f2e89b1b
13 changed files with 643 additions and 303 deletions
+2 -2
View File
@@ -826,9 +826,9 @@ local ButtonMetaFunctions = {}
y = _math_floor (y)
if ((button.mouse_down+0.4 > GetTime() and (x == button.x and y == button.y)) or (x == button.x and y == button.y)) then
if (buttontype == "LeftButton") then
button.MyObject.func (button.MyObject.param1, button.MyObject.param2, button)
button.MyObject.func (button.MyObject.param1, button.MyObject.param2, button, buttontype)
else
button.MyObject.funcright (button.MyObject.param1, button.MyObject.param2, button)
button.MyObject.funcright (button.MyObject.param1, button.MyObject.param2, button, buttontype)
end
end
end