GetPedSkin: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Visual improvement)
m (Changed "DeprecatedWithAlt" template to "Deprecated")
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
{{DeprecatedWithAlt|getElementModel|}}
{{Deprecated|getElementModel|}}


This function returns the specified ped's skin.
This function returns the specified ped's skin.

Latest revision as of 16:36, 13 February 2015

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions.

Please use getElementModel instead.


This function returns the specified ped's skin.

Syntax

int getPedSkin ( ped thePed )

Required Arguments

  • thePed: The ped whose skin ID you want to retrieve.

Returns

Returns an int indicating which skin the ped has. See Character Skins.

Example

This example adds a "skin" command in console, which tells the player his/her skin.

function checkSkin ( commandName )
	outputChatBox ( "Your skin ID is: " .. getPedSkin ( getLocalPlayer() ) )
end
addCommandHandler ( "skin", checkSkin )

See Also