13.02.2018, 12:14
Galera estou fazendo um sistema de ORGs para o BETA do servidor em que estou ajudando a codar, porйm sou iniciante no Pawn e o erro/warning que estб dando aqui, nгo em vem na cabeзa uma soluзгo.
Para vocкs se localizarem melhor estб aн uma imagem do cуdigo:
PHP код:
CMD:membros(playerid, params[])
{
if(Player[playerid][Organizacao] == 0)
{
SendClientMessage(playerid, 0xFF0000FF, "[BLC] |Erro| Vocк nгo й de uma organizaзгo.");
}
else
{
for(new i = 0, i < MAX_PLAYERS, i++)
{
if(Player[i][Organizacao] == Player[playerid][Organizacao])
{
SendClientMessage(playerid, -1, "/-----Membros Online-----/\n");
new nome[MAX_PLAYER_NAME], string[MAX_PLAYER_NAME];
GetPlayerName(i, nome, sizeof(nome));
format(string, sizeof(string), "%s", nome);
SendClientMessage(playerid, -1, string);
SendClientMessage(playerid, -1, "\n/-----Membros Online-----/");
}
}
}
}
PHP код:
..\modulos\LoginRegistro.pwn(227) : error 021: symbol already defined: "i"
..\modulos\LoginRegistro.pwn(227) : warning 204: symbol is assigned a value that is never used: "i"