SetElementAlpha

From Multi Theft Auto: Wiki
Revision as of 20:13, 13 January 2008 by Evottaja (talk | contribs)
Jump to navigation Jump to search

This function sets the alpha(transparency) value for the specified element. This can be a player or a vehicle.

Syntax

Click to collapse [-]
Server and client
bool setElementAlpha ( element theElement, int alpha )

Required Arguments

  • theElement: The element whose alpha you want to set.
  • alpha: The alpha value to set.

Returns

Returns false if invalid arguments were passed.

Example

Click to collapse [-]
Clientside example

This example makes the player invisible.

function invisible()
        setElementAlpha(getLocalPlayer(), 0)
end
addCommandHandler ( "invisible", invisible )

See Also