SetPlayerBlurLevel

From Multi Theft Auto: Wiki
Revision as of 00:31, 17 May 2008 by Ryden (talk | contribs) (typo)
Jump to navigation Jump to search

Sets the motion blur level on the clients screen. Accepts a value between 0 and 255.

Syntax

bool setPlayerBlurLevel ( player thePlayer, int level )

Required Arguments

  • thePlayer: The player whose blur level will be changed.
  • level: The level to set the blur to (default: 38)

Example

This example allows the player to set their blur level via a command

 
function changeBlurLevel(playerSource,command,blur)
  if blur>255 or blur<0 then
    outputChatBox("Enter a value between 0 - 255.", playerSource)
  else
    setPlayerBlurLevel(playerSource, blur)
    outputChatBox("Blur level set to: "..blur, playerSource)
  end
end

addCommandHandler("blur", changeBlurLevel)

See Also