WoW API: HelpReportLag
← 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