03.11.2009, 13:22
is it possible to make something, when i type /respawn, the cars at a garage will be respawned?
Originally Posted by Jeffry
In which garages?
Btw. you mean respawning cars to the coords which you placed in your ***.pwn? |
new Car1;
new Car2;
new Car3;
Car1 = AddStaticVehicle(....
Car2 = AddStaticVehicle(....
Car3 = AddStaticVehicle(....
if(strcmp(cmdtext, "/respawn", true) == 0)
{
SetVehicleToRespawn(Car1);
SetVehicleToRespawn(Car2);
SetVehicleToRespawn(Car3);
return 1;
}
Originally Posted by MadeMan
Yes it is.
Make new variables to save vehicleids. pawn Код:
|
Originally Posted by PANNA
Quote:
|