Update download.lua

This commit is contained in:
fed 2022-10-28 00:25:07 +02:00
parent 01bb6df9ba
commit 0cf937aa01

View File

@ -4,10 +4,22 @@ Engine.GetLuiRoot():registerEventHandler("mod_download_start", function(element,
download.abort()
end,
withcancel = true,
text = "Downloading " .. event.request.name .. "..."
text = "Downloading files..."
})
Engine.GetLuiRoot():registerEventHandler("mod_download_done", function()
local file = ""
popup:registerEventHandler("mod_download_set_file", function(element, event)
file = event.request.name
popup.text:setText(string.format("Downloading %s...", file))
end)
popup:registerEventHandler("mod_download_progress", function(element, event)
print(event.fraction * 100)
popup.text:setText(string.format("Downloading %s (%i%%)...", file, math.floor(event.fraction * 100)))
end)
popup:registerEventHandler("mod_download_done", function()
LUI.FlowManager.RequestLeaveMenu(popup)
end)
end)