OnClientResourceFileDownload

From Multi Theft Auto: Wiki
Revision as of 11:50, 18 January 2021 by Botder (talk | contribs) (Created page with "__NOTOC__ {{Client event}} {{New feature/item|3.0160|1.5.8|20788|This event is triggered every time a resource file download is queued, finished or has failed.}} {{Warning|T...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.


See Also

Client resource events


Client event functions