WoW API: HelpReportLag

From AddOn Studio
Revision as of 02:52, 27 January 2010 by WoWWiki>Biggpapa (HelpReportLag(lagtype) - reports lag via the GM help screen)
(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