15.10.2011, 08:39
wow great idea, but you should use in OnVehicleDeath that trash car automaticllay creates not with CMD
that should look like:
that should look like:
pawn Код:
public OnVehicleDeath(vehicleid)
{
new Float: Pos[4];
GetVehiclePos(vehicleid, Pos[0], Pos[1], Pos[2]);
GetVehicleZAngle(vehicleid, Pos[3]);
CreateTCar(Pos[0], Pos[1], Pos[2], Pos[3]);
return 1;
}