IsPedDoingGangDriveby: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Server client function}} __NOTOC__ This function checks if the ped is in the driveby state. ==Syntax== <syntaxhighlight lang="lua"> bool isPedDoingGangDriveby ( ped thePed ) </syntaxhighlight> ===Required Arg...)
 
Line 12: Line 12:


===Returns===
===Returns===
Returns ''true'' if the driveby state is enabled, ''false'' otherwise.
Returns '''1''' if the driveby state is enabled, '''0''' otherwise.


==Example==  
==Example==  

Revision as of 19:59, 15 February 2010

This function checks if the ped is in the driveby state.

Syntax

bool isPedDoingGangDriveby ( ped thePed )

Required Arguments

  • thePed: The ped element whose state is to be checked.

Returns

Returns 1 if the driveby state is enabled, 0 otherwise.

Example

Click to collapse [-]
Client

This example turns on driveby mode when the local player types driveby in the console.

function setDoingDriveby ( )
        -- we check if local player isn't currently doing a gang driveby
        if not isPedDoingGangDriveby ( getLocalPlayer () ) then
                -- if he got driveby mode off, turn it on
                setPedWeaponSlot ( getLocalPlayer (), 4 )
                setPedDoingGangDriveby ( getLocalPlayer (), true )
        else
                -- otherwise, turn it off
                setPedWeaponSlot ( getLocalPlayer (), 0 )
                setPedDoingGangDriveby ( getLocalPlayer (), false )
        end
end
addCommandHandler ( "driveby", setDoingDriveby )

See Also