28.10.2016, 17:19
Hi,
Can i getvehiclepos in OnVehicleDeath?
Can i getvehiclepos in OnVehicleDeath?
public OnVehicleDeath(vehicleid, killerid)
{
static Float:Pos[3];
GetVehiclePos(vehicleid, Pos[0], Pos[1], Pos[2]);
printf("X: %f | Y: %f | Z: %f",Pos[0], Pos[1], Pos[2]);
return true;
}