27.06.2014, 20:56
Hola, estoy tratando de hacer mi include, todo bien, pero cuando voy al gamemode y pongo la funcion que yo necesito me sale
Cosa que no entiendo, debido a que ya revise esa linea y sale esto:
Codigo completo:
Ayuda, soy nuevo en Pawno.
Gracias de Antemano
Код:
Funciones.inc(93) : error 021: symbol already defined: "i" Funciones.inc(93) : warning 203: symbol is never used: "i"
pawn Код:
for(new i=0, i < MAX_PLAYERS, i++)
pawn Код:
stock DarArmaATodos(weaponid)
{
new Jugador[MAX_PLAYER_NAME], Mensaje[500];
for(new i=0, i < MAX_PLAYERS, i++)
{
if(!IsPlayerConnected(i)) continue;
else
{
GetPlayerName(i, Jugador, 35);
format(Mensaje, sizeof(Mensaje), "[-]El administrador %s ha dado un arma a todos", Jugador);
PlayerPlaySound(i, 1139, 0, 0, 0);
GivePlayerWeapon(i, weaponid, 9999);
SendClientMessage(i, Verde, Mensaje);
}
}
}
Gracias de Antemano