13.07.2014, 23:08
To tentando fazer um comando do meu sistema de administraзгo, pra respawnar os carros que nгo estejam ocupados, mais ta dando 1 Warning.
comando :
stock
alguйm sabe pq ta acontecendo isso ? nгo vejo problemas no cуdigo
comando :
pawn Код:
command(respawn, playerid, params[])
{
if( ASystem[playerid][Admin] == true ) { SendClientMessage(playerid, Cinza, "Vocк nгo й um administrador"); }
for(new i = 0; i < MAX_VEHICLES; i++)
{
if(IsVehicleOccupied(i))
{
SetVehicleToRespawn(i);
}
}
new Str[80]; format(Str, sizeof(Str), "%s Respanou todos os veнculos desocupados", pNome(playerid));
SendClientMessageToAll(Roxo, Str);
return 1;
}
pawn Код:
stock IsVehicleOccupied(vehicleid) // Retorna a 1 se hб alguйm no veнculo
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInAnyVehicle(i))
{
if(GetPlayerVehicleID(i) == vehicleid)
{
return 1;
}
else
{
return 0;
}
}
}
}
pawn Код:
C:\Users\Lucas\Desktop\samp03z_svr_R1_win32\Sistemas\Sistema de administraзгo.pwn(305) : warning 209: function "IsVehicleOccupied" should return a value
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.