You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
414 B

--
function VUHDO_newOptionsSpellEditBoxSpellId(anEditBox)
local tText, tR, tG, tB = VUHDO_isActionValid(anEditBox:GetText(), anIsCustom);
local tLabel = _G[anEditBox:GetName() .. "Hint"];
if (tText ~= nil) then
anEditBox:SetTextColor(1, 1, 1, 1);
tLabel:SetText(tText);
tLabel:SetTextColor(tR, tG, tB, 1);
else
anEditBox:SetTextColor(0.8, 0.8, 1, 1);
tLabel:SetText("");
end
end