Native referenceRedM

DELETE_ROPE

0x52B4829281364649 PHYSICS
FUNCTION SIGNATURE
void DELETE_ROPE(int* ropeId);
Property Value
Native Name DELETE_ROPE
Hash 0x52B4829281364649
Return Type void
Build 1207
Parameters ropeId (int*)

Description: Deletes the rope with the specified handle.

You should check if the rope exists before trying to delete it, see DOES_ROPE_EXIST.

For an example on how to use this native please refer to ADD_ROPE

Parameters

  • ropeId (int*) — The handle of the rope to delete

Usage

Lua (Direct):

DeleteRope(ropeId)

Lua (Hash):

Citizen.InvokeNative(0x52B4829281364649, ropeId)
Back to PHYSICS