ResetBlurLevel

From Multi Theft Auto: Wiki
Revision as of 17:20, 7 November 2024 by Fernando187 (talk | contribs) (Remove obsolete Requirements section)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Resets the motion blur level on the client's screen to default value (36).

Syntax

bool resetBlurLevel ( )

Returns

Returns true if the blur level was reset successfully, false otherwise.

Example

This example allows the player to reset their blur level with a command:

function resetBlurCommand ()
    if resetBlurLevel () then
        outputChatBox ("Reset blur level.", 0, 255, 0)
    else
        outputChatBox ("Failed to reset blur level.", 255, 0, 0)
    end
end

addCommandHandler ("resetblur", resetBlurCommand)

See Also