25.09.2010, 21:12
Someone know how to do?
I want respawn all cars with a command..thanks
I want respawn all cars with a command..thanks
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; }
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;
}