13.03.2010, 18:49
Quote:
Originally Posted by chriswilson
can anyone make a "if" command that respawns all the vehicles in the server
thanks ^^ |
This goes under OnPlayerCommandText.
if(strcmp(cmdtext, "/something", true)==0)
{
for(new v=0; v<MAX_VEHICLES; v++)
{
SetVehicleToRespawn(v);
}
return 1;
}