[Ajuda] comando respawn 1 Warning.
#1

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 :

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;
}
stock

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.
alguйm sabe pq ta acontecendo isso ? nгo vejo problemas no cуdigo
Reply


Messages In This Thread
comando respawn 1 Warning. - by Lucas-Fc - 13.07.2014, 23:08
Re: comando respawn 1 Warning. - by Lucas-Fc - 13.07.2014, 23:10
Re: comando respawn 1 Warning. - by Lucas-Fc - 13.07.2014, 23:58
Re: comando respawn 1 Warning. - by ScripterInicianteBR - 14.07.2014, 04:42
Re: comando respawn 1 Warning. - by Schocc - 14.07.2014, 04:53
Re: comando respawn 1 Warning. - by WLSF - 14.07.2014, 05:01
Re: comando respawn 1 Warning. - by PT - 14.07.2014, 11:16

Forum Jump:


Users browsing this thread: 3 Guest(s)