IsPedInVehicle: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Client function}} Checks whether or not a given ped is currently in a vehicle. ==Syntax== <syntaxhighlight lang="lua"> bool isPedInVehicle ( ped thePed ) </syntaxhighlight> ===Required Arguments=== *''...) |
No edit summary |
||
Line 14: | Line 14: | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' if the ped is in a vehicle, ''false'' if he is on foot or an invalid element was passed. | Returns ''true'' if the ped is in a vehicle, ''false'' if he is on foot or an invalid element was passed. | ||
==Example== | |||
This code defines an ''isinvehicle'' command which tells a player whether another player is in a vehicle or not. | |||
<syntaxhighlight lang="lua"> | |||
-- we create our handler function, where sourcePlayer is the player who sent the command, | |||
-- and checkedPlayerName is the player name specified. | |||
function outputIsInVehicle ( sourcePlayer, commandName, checkedPlayerName ) | |||
-- we get the player element from the nick specified | |||
local checkedPlayer = getPlayerFromNick ( checkedPlayerName ) | |||
-- if there exists a player with that nick | |||
if ( checkedPlayer ) then | |||
-- if he's in a vehicle, | |||
if isPedInVehicle ( checkedPlayer ) then | |||
-- tell the source player | |||
outputChatBox ( checkedPlayerName .. " is in a vehicle.", sourcePlayer ) | |||
-- if he's not in a vehicle, | |||
else | |||
-- tell the source player | |||
outputChatBox ( checkedPlayerName .. " is not in a vehicle.", sourcePlayer ) | |||
end | |||
-- if it doesn't exist, | |||
else | |||
-- tell the source player | |||
outputChatBox ( "Invalid player name.", sourcePlayer ) | |||
end | |||
end | |||
-- define a handler for the isinvehicle command | |||
addCommandHandler ( "isinvehicle", outputIsInVehicle ) | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Client_ped_functions}} | {{Client_ped_functions}} |
Revision as of 17:20, 30 March 2008
Checks whether or not a given ped is currently in a vehicle.
Syntax
bool isPedInVehicle ( ped thePed )
Required Arguments
- thePed: the ped you want to check.
Returns
Returns true if the ped is in a vehicle, false if he is on foot or an invalid element was passed.
Example
This code defines an isinvehicle command which tells a player whether another player is in a vehicle or not.
-- we create our handler function, where sourcePlayer is the player who sent the command, -- and checkedPlayerName is the player name specified. function outputIsInVehicle ( sourcePlayer, commandName, checkedPlayerName ) -- we get the player element from the nick specified local checkedPlayer = getPlayerFromNick ( checkedPlayerName ) -- if there exists a player with that nick if ( checkedPlayer ) then -- if he's in a vehicle, if isPedInVehicle ( checkedPlayer ) then -- tell the source player outputChatBox ( checkedPlayerName .. " is in a vehicle.", sourcePlayer ) -- if he's not in a vehicle, else -- tell the source player outputChatBox ( checkedPlayerName .. " is not in a vehicle.", sourcePlayer ) end -- if it doesn't exist, else -- tell the source player outputChatBox ( "Invalid player name.", sourcePlayer ) end end -- define a handler for the isinvehicle command addCommandHandler ( "isinvehicle", outputIsInVehicle )
See Also
- canPedBeKnockedOffBike
- getPedAnalogControlState
- getPedAnimation
- getPedBonePosition
- getPedCameraRotation
- getPedControlState
- getPedMoveState
- getPedOxygenLevel
- getPedSimplestTask
- getPedTargetCollision
- getPedTargetEnd
- getPedTargetStart
- getPedTask
- getPedVoice
- getPedWeaponMuzzlePosition
- givePedWeapon
- isPedBleeding
- isPedDoingTask
- isPedReloadingWeapon
- isPedTargetingMarkerEnabled
- setAnalogControlState
- setPedAimTarget
- setPedAnalogControlState
- setPedBleeding
- setPedCameraRotation
- setPedCanBeKnockedOffBike
- setPedControlState
- setPedEnterVehicle
- setPedExitVehicle
- IsPedFootBloodEnabled
- setPedFootBloodEnabled
- setPedLookAt
- setPedOxygenLevel
- setPedTargetingMarkerEnabled
- setPedVoice
- Shared
- 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