onClientTransferBoxVisibilityChange | Multi Theft Auto: Wiki Skip to content

onClientTransferBoxVisibilityChange

Client-side
Server-side
Shared

This event is triggered every time the resource file downloader (aka. transfer box) is shown or hidden by MTA.

Parameters

boolean isVisible
  • isVisible: A boolean, indicating the new visibility status of the transfer box.

Source

element: The source of this event is the root element.

Code Examples

client

This example prints the new visibility status of the transfer box when it changes (printingtrueorfalse):

addEventHandler ("onClientTransferBoxVisibilityChange", getRootElement(), function (isVisible)
outputChatBox (tostring (isVisible))
end)