01/12/2023 20:34
Estou com um problema no timer que crei e dentro do timer de um segundo aparece essa mensagem:
Citar:[2023-12-01T21:06:44-0200] [Error] SetTimer(Ex): There was a problem in calling SetTimerUmSegundo: Array index out of bounds
Código PHP:
if(InvasionBox[playerid] >= 1)
{
new f = Invasion[gTeam[playerid]];
if(PlayerToPoint(2.0, playerid, Org_X[f], Org_Y[f], Org_Z[f]))
{
if(GetPlayerVirtualWorld(playerid) == Org_W[f])
{
if(CofreInfo[f][cfMats] >= ARMAZEM_CRATE_VALUE && holding_crate[playerid] == 0)
{
PickBox(playerid);
CofreInfo[f][cfMats] -= ARMAZEM_CRATE_VALUE;
}
else if(CofreInfo[f][cfMats] < ARMAZEM_CRATE_VALUE) InvasionBox[playerid] = 0;
}
}
}