EngineStreamingRestoreBufferSize

From Multi Theft Auto: Wiki
Revision as of 09:36, 30 June 2024 by FileEX (talk | contribs)
Jump to navigation Jump to search

This function resets the streaming buffer. The value is automatically reset when disconnected.

Syntax

bool engineStreamingRestoreBufferSize()

Returns

Returns true if the event occurred, otherwise it throws an error message and returns false.

Requirements

This template will be deleted.

Example

Click to collapse [-]
Client

This example restores streaming buffer size.

addEventHandler("onClientResourceStart", resourceRoot,
    function()
        engineStreamingRestoreBufferSize()
    end
)

See Also