getElementAlpha | Multi Theft Auto: Wiki Skip to content

getElementAlpha

Client-side
Server-side
Shared

Pair: setElementAlpha

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


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

OOP Syntax Help! I don't understand this!

  • Method:element:getAlpha(...)
  • Variable: .alpha

Syntax

int getElementAlpha ( element theElement )
Required Arguments
  • theElement: The element whose alpha you want to retrieve.

Returns

  • int: value

Returns an integer (0-255; 0 = transparent) indicating the element's alpha, or false if invalid arguments were passed.

Code Examples

shared

This example outputs whether the player is invisible.

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

See Also

Element Functions