WoW:API PATCH UPDATE PROGRESS: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Stub/API}}
{{wowapi|Glue}}
This is a '[[World of Warcraft API/Glue|Glue]]' runtime Lua function. See also [[GlueXML]].
 
Event: [[PATCH_UPDATE_PROGRESS]]
 
  function OnEvent()
  function OnEvent()
   if(event == PATCH_UPDATE_PROGRESS)
   if(event == PATCH_UPDATE_PROGRESS)
Line 5: Line 9:
   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 UPDATE PROGRESS

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

Event: PATCH_UPDATE_PROGRESS

function OnEvent()
  if(event == PATCH_UPDATE_PROGRESS)
    local percent_Complete = PatchDownloadProgress();
  end
end