HU/addPedClothes: Difference between revisions
Jump to navigation
Jump to search
(→Példa) |
No edit summary |
||
Line 2: | Line 2: | ||
{{Shared function hu}} | {{Shared function hu}} | ||
{{Note|Ez a function egyedül csak a CJ skinnel működik (ID 0).}} | {{Note|Ez a function egyedül csak a CJ skinnel működik (ID 0).}} | ||
Ezzel a funkcióval megadhatjuk egy [[ped|gyalogos]] aktuális ruházatát. | |||
==Szintaxis== | ==Szintaxis== |
Revision as of 19:05, 20 September 2018
Ezzel a funkcióval megadhatjuk egy gyalogos aktuális ruházatát.
Szintaxis
bool addPedClothes ( ped thePed, string clothesTexture, string clothesModel, int clothesType )
OOP Syntax Help! I don't understand this!
- Method: ped:addClothes(...)
- Counterpart: getPedClothes
Kötelező paraméterek
- thePed: A gyalogos, akinek a ruháját meg akarjuk változtatni.
- clothesTexture: A string determining the clothes texture that will be added. See the clothes catalog.
- clothesModel: A string determining the clothes model that will be added. See the clothes catalog.
- clothesType: A integer representing the clothes slot/type the clothes should be added to. See the clothes catalog.
Visszatérési érték
Visszatérési értéke true, ha a ruhák sikeresen hozzá lettek adva a gyalogoshoz, egyébként false.
Példa
Click to collapse [-]
ServerEz a példa egy 'moto' sisakot rak egy játékosra, amikor egy nrg-ra ül fel, majd eltávolítja azt, ha leszáll róla.
function onEnterVehicle ( theVehicle, seat, jacked ) if getElementModel ( theVehicle ) == 522 then -- if it's an nrg addPedClothes ( source, "moto", "moto", 16 ) -- add the helmet end end addEventHandler ( "onPlayerVehicleEnter", root, onEnterVehicle ) function onExitVehicle ( theVehicle, seat, jacked ) if getElementModel ( theVehicle ) == 522 then -- if it's an nrg removePedClothes ( source, 16 ) -- remove the helmet end end addEventHandler ( "onPlayerVehicleExit", root, onExitVehicle )
Lásd még
- 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