-
Posted by m58a on Tue, 05 Apr 2011 09:55:21
/run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntries);
or
/script CombatLogClearEntries();
-
Posted by jnwhiteh on Tue, 05 Apr 2011 13:26:57
/run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntries);
This is very very very very very very wrong. This will clear the combat log every single time the screen refreshes. This will severely impact the performance of your game.
or
/script CombatLogClearEntries();
If this works, it would be one way to clear the combat log, certainly.