SetPedSkin

From Multi Theft Auto: Wiki
Revision as of 16:36, 13 February 2015 by AlexTMjugador (talk | contribs) (Changed "DeprecatedWithAlt" template to "Deprecated")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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 setElementModel instead.


This function changes the skin of a ped.

Syntax

bool setPedSkin ( ped thePed, int skinID )

Required Arguments

  • thePed: The ped whose model will be changed.
  • skinID: A GTASA player model (skin) ID. See Character Skins.

Example

Click to collapse [-]
Server

This example sets a players skin to the cop skin when they spawn.

function setCopSkin ()
	setPedSkin ( source, 280 )
	outputChatBox ( "You are now a cop.", source, 255, 0, 0 )
end
addEventHandler ( "onPlayerSpawn", getRootElement(), setCopSkin )

See Also