13.07.2009, 10:04
pawn Код:
DestroyVehicle(car[playerid]);
so u need to make new varibales for each playerid like
pawn Код:
new firstone;//ontopofscript
new secondone;//same
pawn Код:
//at creating the vehicle for the first racer
firstone = playerid;
//and the same for the secondracer
secondone = playerid;
pawn Код:
DestroyVehicle(car[firstone]);
DestroyVehicle(car[secondone]);

