OnClientResourceFileDownload: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 19: Line 19:
==Example==
==Example==
{{Needs_Example}}
{{Needs_Example}}
function writeMsg (name,size,state)
outputChatBox("resource "..name.." downloading...",0,200,0)
end
addEventHandler("OnClientResourceFileDownload", root, writeMsg)


==Requirements==
==Requirements==

Revision as of 12:15, 27 January 2021

This event is triggered every time a resource file download is queued, finished or has failed.


Dialog-warning.png Warning: This event is NOT related to downloadFile and onClientFileDownloadComplete!

Parameters

resource fileResource, string fileName, number fileSize, string state
  • fileResource: resource the file belongs to
  • fileName: relative resource file path
  • fileSize: size of the file in bytes
  • state: possible values: "queued" or "finished" or "failed"

Source

The source of this event is the resource's root element.

Example

Accessories-text-editor.png Script Example Missing Event OnClientResourceFileDownload needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

function writeMsg (name,size,state)

outputChatBox("resource "..name.." downloading...",0,200,0)

end addEventHandler("OnClientResourceFileDownload", root, writeMsg)

Requirements

Minimum server version
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 server="" client="1.5.8-9.20788" />

See Also

Client resource events


Client event functions