GetElementAlpha

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

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

Syntax

int getElementAlpha ( element theElement )

Required Arguments

Returns

Returns a int(0-255; 0=invisible) indicating the element's alpha, or false if invalid arguments were passed.

Example

Click to collapse [-]
Clientside example

This example outputs whether the player is invisible.

function amIVisible()
	if getElementAlpha(getLocalPlayer()) == 0 then
            outputChatBox("I'm invisible")
        else
            outputChatBox("I'm not invisible")
        end
end
addCommandHandler ( "amivisible", amIVisible )

See Also