Native referenceFiveM

CLEAR_BIT

0xE80492A9AC099A93 MISC
FUNCTION SIGNATURE
void CLEAR_BIT(int* address, int offset);
Property Value
Native Name CLEAR_BIT
Hash 0xE80492A9AC099A93
Return Type void
Parameters address (int*), offset (int)

Description: ``` This sets bit [offset] of [address] to off. Example: MISC::CLEAR_BIT(&bitAddress, 1); To check if this bit has been enabled: MISC::IS_BIT_SET(bitAddress, 1); // will return 0 afterwards

Back to MISC