12.04.2017, 18:38
That is NOT how enums work. Read this: https://sampforum.blast.hk/showthread.php?tid=318307
And to solve your problem, You can use a loop at set its values.
Put this under OnGameModeInit. Should Work
And to solve your problem, You can use a loop at set its values.
PHP код:
for (new i = 0; i < MAX_BAILS; i++) {
BailInfo[i][PlayerID] = INVALID_PLAYER_ID;
BailInfo[i][PlayerArrestID] = INVALID_PLAYER_ID;
}