Features: Expand action handling to support inline scripts, macros, and items while adding dynamic tooltip mana colorization and table memory management.

This commit is contained in:
Bluewhale1337
2026-07-15 14:56:03 +02:00
parent ff97414bb1
commit f1c5d6a8d1
6 changed files with 222 additions and 36 deletions
+20
View File
@@ -559,3 +559,23 @@ HealBot_SpamCnt=0;
HealBot_Action_TooltipUnit=nil;
HealBot_Ressing = {};
HealBot_IamRessing = false;
-- Table Recycling Pool (Puppeteer-inspired)
local tablePool = {}
function HealBot_GetTable()
local t = table.remove(tablePool)
if not t then
t = {}
end
return t
end
function HealBot_ReleaseTable(t)
if type(t) == "table" then
for k in pairs(t) do
t[k] = nil
end
table.insert(tablePool, t)
end
end