03.03.2018, 02:31
maybe this is the wrong line
if(Mobile[Mobile[i]] == -1 && CellTime[i] == 5)
your Mobile[i] might be INVALID_PLAYER_ID.
correct use example
new targetid = Mobile[i];
if(targetid != INVALID_PLAYER_ID)
{
....
}
if(Mobile[Mobile[i]] == -1 && CellTime[i] == 5)
your Mobile[i] might be INVALID_PLAYER_ID.
correct use example
new targetid = Mobile[i];
if(targetid != INVALID_PLAYER_ID)
{
....
}