27.02.2011, 11:48
This is the command to reset the spawned vehicles:
pawn Код:
if (strcmp("/Resetvehicles", cmdtext, true, 10) == 0)
{
for(new i = 0; i < MAX_VEHICLES; i++)
{
SetVehicleToRespawn(i);
}
return 1;
}