WoW:API HelpReportLag: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(HelpReportLag(lagtype) - reports lag via the GM help screen)
 
m (Move page script moved page API HelpReportLag to API HelpReportLag without leaving a redirect)
 
(No difference)

Latest revision as of 04:46, 15 August 2023

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