28.08.2012, 01:24
#correto:
pawn Код:
Teste(playerid)
{
for(new x; x < 5; ++x)
{
new teste[128];
if(strcmp(Clan[x], "Nenhum", true) != 0) continue;
{
format(teste, sizeof(teste), "Slot clan %d liberado", x);
MsgToPlayer(teste);
break;
}
else
{
format(teste, sizeof(teste), "Msg de erro para o player");
MsgToPlayer(teste);
}
}
}