CanPedBeKnockedOffBike
From Multi Theft Auto: Wiki
This function checks if the given ped can fall off bikes.
Syntax
bool canPedBeKnockedOffBike ( ped thePed )
OOP Syntax Help! I don't understand this!
- Method: ped:canBeKnockedOffBike(...)
- Counterpart: setPedCanBeKnockedOffBike
Required Arguments
- thePed: the ped you want to check.
Returns
Returns true if the ped can be knocked off bikes, false if he cannot or an invalid element was passed.
Example
This example adds a console command with which the local player can toggle whether he can fall off bikes.
function changeCanBeKnockedOff ( command ) -- lets players be knocked off bikes if it was set to false, true otherwise local bCanBeKnockedOff = canPedBeKnockedOffBike(localPlayer) setPedCanBeKnockedOffBike(localPlayer, not bCanBeKnockedOff) -- outputs the respective message outputChatBox( ('Now you %s be knocked off your bike.'):format(bCanBeKnockedOff and 'can\'t' or 'can') ) end addCommandHandler('knock', changeCanBeKnockedOff)
See Also
- getPedAmmoInClip
- getPedAnalogControlState
- getPedAnimation
- getPedArmor
- getPedBonePosition
- getPedCameraRotation
- getPedClothes
- getPedContactElement
- getPedControlState
- getPedFightingStyle
- getPedMoveState
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedOxygenLevel
- getPedSimplestTask
- getPedStat
- getPedTarget
- getPedTargetCollision
- getPedTargetEnd
- getPedTargetStart
- getPedTask
- getPedTotalAmmo
- getPedVoice
- getPedWalkingStyle
- getPedWeapon
- getPedWeaponMuzzlePosition
- getPedWeaponSlot
- getValidPedModels
- givePedWeapon
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDoingTask
- isPedDucked
- isPedHeadless
- isPedInVehicle
- isPedOnFire
- isPedOnGround
- isPedWearingJetpack
- killPed
- removePedClothes
- removePedFromVehicle
- setAnalogControlState
- setPedAimTarget
- setPedAnalogControlState
- setPedAnimation
- setPedAnimationProgress
FROM VERSION 1.5.7 r19626 ONWARDS
FROM VERSION 1.5.7 r19626 ONWARDS