respawn all cars with a command?
#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


Messages In This Thread
respawn all cars with a command? - by Face9000 - 25.09.2010, 21:12
Re: respawn all cars with a command? - by FireCat - 25.09.2010, 21:18
Re: respawn all cars with a command? - by ScottCFR - 25.09.2010, 21:20
Re: respawn all cars with a command? - by [XST]O_x - 25.09.2010, 21:25

Forum Jump:


Users browsing this thread: 1 Guest(s)