car respawn command doesn't working?
#3

Code:
COMMAND:rac(playerid, params[]) 
{ 
    new string[128], sendername[MAX_PLAYER_NAME]; 
    if (GetPVarInt(playerid, "PlayerLogged") == 0) return SendClientMessage(playerid, COLOR_WHITE, "You must be logged in to use this."); 
    if(GetPVarInt(playerid, "Admin") >= 3) 
    { 
           for(new v = 1; v <= MAX_VEHICLES; v++) 
        { 
            new bool:despawn = true; 
            foreach(new i : Player) 
             { 
                 if(IsPlayerInAnyVehicle(i) && GetPlayerVehicleID(i) == v) 
                 { 
                     despawn = false; 
                 } 
             } 

            if(despawn == true) 
            { 
                DespawnVehicle(v); 
            } 
        } 
        format(sendername, sizeof(sendername), "%s", PlayerInfo[playerid][pUsername]); 
          GiveNameSpace(sendername); 
        format(string, sizeof(string), "All unused cars despawned by %s.", sendername); 
        SendClientMessageToAll(playerid,COLOR_WHITE,string); 
    } 
    else SendClientMessage(playerid, COLOR_ERROR, "You do not have access to this command!"); 
    return 1;
This is to announce, about the wrong cmd thing, does all the other cmds show "wrong cmd" if u make it wrong?
Reply


Messages In This Thread
car respawn command doesn't working? - by DemME - 06.06.2017, 00:16
Re: car respawn command doesn't working? - by NewFreeroamStunt - 06.06.2017, 04:44
Re: car respawn command doesn't working? - by JasonRiggs - 06.06.2017, 12:13
Re: car respawn command doesn't working? - by Jefff - 06.06.2017, 13:31

Forum Jump:


Users browsing this thread: 1 Guest(s)