Native referenceFiveM

GET_TIME_SINCE_LAST_ARREST

0x5063F92F07C2A316 PLAYER
FUNCTION SIGNATURE
int GET_TIME_SINCE_LAST_ARREST(/* parameters not documented */);
Property Value
Native Name GET_TIME_SINCE_LAST_ARREST
Hash 0x5063F92F07C2A316
Return Type int

Description: ``` Returns the time since the character was arrested in (ms) milliseconds.
example
var time = Function.call<int>(Hash.GET_TIME_SINCE_LAST_ARREST();
UI.DrawSubtitle(time.ToString());
if player has not been arrested, the int returned will be -1.

Back to PLAYER