OnClientTransferBoxProgressChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}  
{{Client event}}  
{{New feature/item|3.0159|1.5.8|20788|This event is triggered every time the resource file downloader (aka. transfer box) updates the download progress.}}
{{Added feature/item|3.0159|1.5.9|1.5.8|20788|This event is triggered every time the [[resource]] file downloader (aka. transfer box) updates the download progress.}}


==Parameters==
==Parameters==
Line 7: Line 7:
float downloadedSizeTotal, float downloadTotalBytes
float downloadedSizeTotal, float downloadTotalBytes
</syntaxhighlight>
</syntaxhighlight>
*'''downloadedSizeTotal:''' total progress in bytes
*'''downloadedSizeTotal:''' The total progress in bytes.
*'''downloadTotalBytes:''' download total size in bytes
*'''downloadTotalBytes:''' The total size of the download in bytes.


==Source==
==Source==
Line 14: Line 14:


==Example==
==Example==
This example will show the percentage of the download progress, whenever a resource is started.<br>
This example will show the percentage of the download progress, whenever a resource is started:
<section name="Client-side" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addEventHandler("onClientTransferBoxProgressChange", root, function(downloadedSize, totalSize)
addEventHandler ("onClientTransferBoxProgressChange", root, function (downloadedSize, totalSize)
     local percentage = math.min((downloadedSize / totalSize) * 100, 100)
     local percentage = math.min ((downloadedSize / totalSize) * 100, 100)


     print(percentage .. "%")
     print (percentage .. "%")
end)
end)
</syntaxhighlight>
</syntaxhighlight>
</section>
'''NOTE''': The code must be in a separated resource. It will be responsible to be watching other resources.
'''NOTE''': The code must be in a separated resource. It will be responsible to be watching other resources.


==Requirements==
==Requirements==
{{Requirements||1.5.8-9.20788|}}
{{Requirements|n/a|1.5.8-9.20788|}}


==See Also==
==See Also==

Revision as of 13:00, 23 September 2021

20788

Parameters

float downloadedSizeTotal, float downloadTotalBytes
  • downloadedSizeTotal: The total progress in bytes.
  • downloadTotalBytes: The total size of the download in bytes.

Source

The source of this event is the root element.

Example

This example will show the percentage of the download progress, whenever a resource is started:

addEventHandler ("onClientTransferBoxProgressChange", root, function (downloadedSize, totalSize)
    local percentage = math.min ((downloadedSize / totalSize) * 100, 100)

    print (percentage .. "%")
end)

NOTE: The code must be in a separated resource. It will be responsible to be watching other resources.

Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20788

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.8-9.20788" />

See Also

Client other events


Client event functions