Native referenceRedM

GET_PED_LAST_WEAPON_IMPACT_COORD

0x6C4D0409BA1A2BC2 WEAPON
FUNCTION SIGNATURE
BOOL GET_PED_LAST_WEAPON_IMPACT_COORD(Ped ped, Vector3* coords);
Property Value
Native Name GET_PED_LAST_WEAPON_IMPACT_COORD
Hash 0x6C4D0409BA1A2BC2
Return Type BOOL
Build 1207
Parameters ped (Ped), coords (Vector3*)

Description: ``` Pass ped. Pass address of Vector3.
The coord will be put into the Vector3.
The return will determine whether there was a coord found or not.


### Usage

**Lua (Direct):**
```lua
local result = GetPedLastWeaponImpactCoord(ped, coords)

Lua (Hash):

local result = Citizen.InvokeNative(0x6C4D0409BA1A2BC2, ped, coords)
Back to WEAPON