20.05.2016, 10:56
In order to fix the run time error 4, you need to change:
to:
pawn Code:
PingPos++; if(PingPos > PING_MAX_EXCEEDS) PingPos = 0;
pawn Code:
PingPos++; if(PingPos >= PING_MAX_EXCEEDS) PingPos = 0;