WoW API: HelpReportLag

From AddOn Studio
Revision as of 04:46, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API HelpReportLag to API HelpReportLag without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < HelpReportLag

Sends a Lag Report. This function is called by the HelpFrame when reporting lag using the GM window.

HelpReportLag

Arguments
type

"Mail", "AuctionHouse", "Loot", "Spell", "Movement", "Chat"


Returns
none

Example

/script print("** Reporting lag...");local t={"Mail","AuctionHouse","Loot","Spell","Movement","Chat"}; for i=1,#t do HelpReportLag(t[i]);StaticPopup1Button1:Click();print(t[i]) end