respawn all cars with a command?
#1

Someone know how to do?

I want respawn all cars with a command..thanks
Reply
#2

Код:
if(!strcmp(cmdtext, "/respawncars", true))
{
	    for(new i = 0; i < MAX_VEHICLES; i++)
{
        new name[ 24 ], string[ 64 ];
        GetPlayerName( playerid, name, 24 );
        format( string, sizeof(string), "%s has respawned the cars", name );
        GameTextForAll( string, 1000, 1 );
	    SetVehicleToRespawn(i);
        }
	    return 1;
}
Reply
#3

You may want to check if there are players in those cars. Could get buggy.
Reply
#4

pawn Код:
if(strcmp(cmdtext,"/respawncars",true) == 0)
{
   new name[MAX_PLAYER_NAME],string[32];
   GetPlayerName(playerid,name,sizeof(name));
   format(string,sizeof(string),"The player \"%s\" has set the vehicles to respawn.",name);
   SendClientMessageToAll(COLOR,string);
   for(new i = 0; i < MAX_VEHICLES; i++)
   {
       if(IsPlayerInVehicle(i,i))
       {
           RemovePlayerFromVehicle(i);
       }
       SetVehicleToRespawn(i);
  }
  return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)