removePedClothes | Multi Theft Auto: Wiki Skip to content

removePedClothes

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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


This function is used to remove the current clothes of a certain type on a ped. It will remove them if the clothesTexture and clothesModel aren't specified, or if they match the current clothes on that slot.

Syntax

removePedClothes ( )

Code Examples

server

This example adds a 'moto' helmet to a player when he gets on a nrg bike, and removes it when he gets off.

function addHelmetOnEnter ( vehicleEntered, seat, jacked )
if getElementModel ( vehicleEntered ) == 522 then -- if it's a nrg
addPedClothes ( source, "moto", "moto", 16 ) -- add the helmet
end
end
addEventHandler ( "onPlayerVehicleEnter", root, addHelmetOnEnter )
function removeHelmetOnExit ( vehicleExited, seat, jacked )
if getElementModel ( vehicleExited ) == 522 then -- if it's a nrg
removePedClothes ( source, 16, "moto", "moto" ) -- remove that helmet
end
end
addEventHandler ( "onPlayerVehicleExit", root, removeHelmetOnExit )

See Also