WoW:API PATCH DOWNLOADED: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
{{Stub/API}}
{{Stub/API}}
{{wowapi|Glue}}
This is a '[[World of Warcraft API/Glue|Glue]]' runtime Lua function. See also [[GlueXML]].
Event: [[PATCH_DOWNLOADED]]


This [[event]] is fired after the client has finished downloading a patch and provides no arguments.
This [[event]] is fired after the client has finished downloading a patch and provides no arguments.
Line 9: Line 14:
   end
   end
  end
  end
[[Category:World of Warcraft API/GlueXML]]
[[Category:World of Warcraft API/GlueXML]]

Revision as of 17:16, 20 September 2013

Glue API < PATCH DOWNLOADED

This is a 'Glue' runtime Lua function. See also GlueXML.

Event: PATCH_DOWNLOADED

This event is fired after the client has finished downloading a patch and provides no arguments.

-- example event handler
function OnEvent()
  if(event == PATCH_DOWNLOADED)
    PatchDownloadApply()
  end
end