01.07.2014, 05:35
use "continue;" keyword for it
like this
continue keyword basically skips a step of loop
like this
pawn Код:
for(new i=0; i<MAX_PLAYERS ;i++)
{
if(i == your_playerid)continue;
//rest of codes
}