IsPedReloadingWeapon: Difference between revisions
Jump to navigation
Jump to search
m (→Example) |
m (Switched the outputChatBox message in the example so that it now correctly displays whether the player is (not) reloading a weapon.) |
||
Line 21: | Line 21: | ||
function isHeReloading( ) | function isHeReloading( ) | ||
if isPedReloadingWeapon( localPlayer ) then | if isPedReloadingWeapon( localPlayer ) then | ||
outputChatBox( "You are reloading a weapon" ) | |||
else | |||
outputChatBox( "No, you're not reloading a weapon" ) | outputChatBox( "No, you're not reloading a weapon" ) | ||
end | end | ||
end | end |
Latest revision as of 09:48, 30 June 2020
This function is used to determine whether or not a ped is currently reloading their weapon. Useful to stop certain quick reload exploits.
Syntax
bool isPedReloadingWeapon ( ped thePed )
OOP Syntax Help! I don't understand this!
- Method: ped:isReloadingWeapon(...)
- Variable: .reloadingWeapon
Required Arguments
- thePed: The ped you are checking.
Returns
Returns true if the ped is currently reloading a weapon, false otherwise.
Example
This example checks if the player who enters the /amireloading command is reloading and outputs a message.
function isHeReloading( ) if isPedReloadingWeapon( localPlayer ) then outputChatBox( "You are reloading a weapon" ) else outputChatBox( "No, you're not reloading a weapon" ) end end addCommandHandler( "amireloading", isHeReloading )
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