Native referenceFiveM

GET_HASH_KEY

0xD24D37CC275948CC MISC
FUNCTION SIGNATURE
Hash GET_HASH_KEY(char* string);
Property Value
Native Name GET_HASH_KEY
Hash 0xD24D37CC275948CC
Return Type Hash
Parameters string (char*)

Description: This native converts its past string to hash. It is hashed using jenkins one at a time method.

Parameters

  • string (char*) — The string to hash.

Examples

local zentorno = GetHashKey('zentorno')

if GetEntityModel(car) == zentorno then
    print('Car is a zentorno!')
end
Back to MISC