Hallo Breadfish Forum
Ich möchte heute gern wissen wie ich es hinbekomme das jedes gespawnte Vehicle ein 3D Label hat ich habe es mommentan so
new cars;
cars = AddStaticVehicleEx(modelid, Float:spawn_x, Float:spawn_y, Float:spawn_z, Float:angle, color1, color2, respawn_delay);
public OnVehicleSpawn(vehicleid)
{
new string2[700];
format(string2, sizeof(string2), "SA-%d",vehicleid);
new Text3D:kennzeichen = Create3DTextLabel(string2,COLOR_ORANGE,30.0,30.0,5.0,30.0,0);
Attach3DTextLabelToVehicle(kennzeichen,cars, 0.0, 0.0, 0.0);
}