RemovePedClothes: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Server client function}} 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 s...) |
mNo edit summary |
||
Line 20: | Line 20: | ||
==Example== | ==Example== | ||
<section name="Server" class="server" show="true"> | |||
This example adds a 'moto' helmet to a player when he gets on a nrg bike, and removes it when he gets off. | This example adds a 'moto' helmet to a player when he gets on a nrg bike, and removes it when he gets off. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 36: | Line 37: | ||
addEventHandler ( "onPlayerVehicleExit", getRootElement(), addHelmetOnExit ) | addEventHandler ( "onPlayerVehicleExit", getRootElement(), addHelmetOnExit ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | |||
==See Also== | ==See Also== | ||
{{Ped functions}} | {{Ped functions}} |
Revision as of 20:30, 25 May 2008
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
bool removePedClothes ( ped thePed, int clothesType, [ string clothesTexture, string clothesModel ] )
Required Arguments
- thePed: The ped you want to remove clothes from.
- clothesType: the clothes slot/type to remove. See the clothes catalog.
Optional Arguments
- clothesTexture: A string determining the clothes texture that will be removed. See the clothes catalog.
- clothesModel: A string determining the clothes model that will be removed. See the clothes catalog.
Returns
This function returns true if the clothes were successfully removed from the ped, false otherwise.
Example
Click to collapse [-]
ServerThis example adds a 'moto' helmet to a player when he gets on a nrg bike, and removes it when he gets off.
function addHelmetOnEnter ( vehicle, seat, jacked ) if ( getElementModel ( vehicle ) == 522 ) then -- if it's a nrg addPedClothes ( source, "moto", "moto", 16 ) -- add the helmet end end addEventHandler ( "onPlayerVehicleEnter", getRootElement(), addHelmetOnEnter ) function addHelmetOnExit ( vehicle, seat, jacked ) if ( getElementModel ( vehicle ) == 522 ) then -- if it's a nrg removePedClothes ( source, 16, "moto", "moto" ) -- remove that helmet end end addEventHandler ( "onPlayerVehicleExit", getRootElement(), addHelmetOnExit )
See Also
- addPedClothes
- getPedClothes
- removePedClothes
- createPed
- getPedAmmoInClip
- getPedArmor
- getPedFightingStyle
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedStat
- getPedTarget
- getPedTotalAmmo
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponSlot
- getPedContactElement
- getValidPedModels
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- removePedFromVehicle
- setPedAnimation
- setPedAnimationProgress
- setPedAnimationSpeed
- setPedArmor
- setPedDoingGangDriveby
- setPedFightingStyle
- setPedHeadless
- setPedOnFire
- setPedStat
- setPedWalkingStyle
- setPedWeaponSlot
- warpPedIntoVehicle