SA-MP Forums Archive
Car Respawn Command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Car Respawn Command (/showthread.php?tid=150523)



Car Respawn Command - Jonni8 - 26.05.2010

Hi,

I want to make a car respawn command and dont know how to respawn all my cars on the server.
The rest of the command is complete... I only need to reset all cars to their spawn if i type the command:

pawn Код:
CMD:respawn(playerid, params[])
{
    if (IsPlayerAdmin(playerid) == 1)
    {
        new command[64];
       
        if (sscanf(params, "s", command)) return SendClientMessage(playerid, RED, "USAGE: /respawn [befehl]");
       
        else if (!strcmp(command, "autos", true))
        {
            SendClientMessageToAll(ORANGE, "*** Autos wurden respawnt");
        }
           
        SendClientMessage(playerid, RED, "SERVER: Befehl ist noch in Arbeit");
    }
    else
    {
        SendClientMessage(playerid, RED, "SERVER: Du bist nicht als Admin eingeloggt");
    }
    return 1;
}
Thanks for help


Re: Car Respawn Command - [MWR]Blood - 26.05.2010

Add that
pawn Код:
for(new cars=0; cars<MAX_VEHICLES; cars++)
{          
SetVehicleToRespawn(cars);



Re: Car Respawn Command - Jonni8 - 26.05.2010

Thanks.