20.06.2016, 20:30
I have been wondering if there is a Way to
Limit the vehicles topspeed?😊
Limit the vehicles topspeed?😊
foreach(new vehicleid : Vehicles)
{
new topspeed = 100;
if(GetVehicleVelocity(vehicleid) > topspeed)
{
SetVehicleVelocity(vehicleid) = topspeed;
}
}