IsPedReloadingWeapon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Shared)
 
Line 35: Line 35:


==See Also==
==See Also==
{{Client_ped_functions}}
{{Ped functions}}

Latest revision as of 16:36, 11 January 2025

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

Click to collapse [-]
Client

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 )

Changelog

Version Description
1.6.0-22909 Added to the server side, the function is now shared

See Also