After making myself a minibike, I realized how all vehicles were nerfed to the ground. They were all painfully slow. In fact, sprinting is probably nearly as fast as riding on a bicycle or minibike. To restore our minibike to the glorious era of A16, I made a modlet that boosts all vehicles' maximum speed by at least 50%.
To compare, these are all of the changes:
Bicycle: 36 km/h ---> 54 km/h
Minibike: 36 km/h ---> 64.8 km/h
Motorcycle: 50.4 km/h ---> 86.4 km/h
Truck: 46.8 km/h ---> 81 km/h
Gyrocopter: 36 km/h ---> 54 km/h
I don't think this is too strong or weak changes compared to A16, but feel free to adjust values to your heart's desire.
Install:
To install this modlet, unzip the file and place it inside "/7 Days to Die/Mods". If "Mods" folder doesn't exist, just create one.
The folder structure should look at like this "7 Days to Die/Mods/Razor_FasterVehicles".
Download:
View attachment 25561
Code:
Modinfo.xml
vehicles.xml
Razor_FasterVehicles.zip
To compare, these are all of the changes:
Bicycle: 36 km/h ---> 54 km/h
Minibike: 36 km/h ---> 64.8 km/h
Motorcycle: 50.4 km/h ---> 86.4 km/h
Truck: 46.8 km/h ---> 81 km/h
Gyrocopter: 36 km/h ---> 54 km/h
I don't think this is too strong or weak changes compared to A16, but feel free to adjust values to your heart's desire.
Install:
To install this modlet, unzip the file and place it inside "/7 Days to Die/Mods". If "Mods" folder doesn't exist, just create one.
The folder structure should look at like this "7 Days to Die/Mods/Razor_FasterVehicles".
Download:
View attachment 25561
Code:
Modinfo.xml
Code:
<?xml version="1.0" encoding="UTF-8" ?>
<xml>
<ModInfo>
<Name value="Razor's Faster Vehicles" />
<Description value="Improved all of vehicles' maximum speed by at least 50%." />
<Author value="Razor" />
<Version value="1.0" />
</ModInfo>
</xml>
Code:
<configs>
<!-- Makes changes to all vehicles's velocityMax to our desired value -->
<!-- The original values of each vehicles are as followed: -->
<!-- Gyrocopter 7,10 -->
<!-- Bicycle 5,10 -->
<!-- Minibike 7,10 -->
<!-- Motorcycle 9,14 -->
<!-- Truck 9,13 -->
<!-- The latter value is maximum speed a vehicle can reach; in meter per second. -->
<set xpath="/vehicles/vehicle[@name='vehicleGyrocopter']/property[@name='velocityMax']/@value">10.5,15</set>
<set xpath="/vehicles/vehicle[@name='vehicleBicycle']/property[@name='velocityMax']/@value">7.5,15</set>
<set xpath="/vehicles/vehicle[@name='vehicleMinibike']/property[@name='velocityMax']/@value">13.5,18</set>
<set xpath="/vehicles/vehicle[@name='vehicleMotorcycle']/property[@name='velocityMax']/@value">16.5,24</set>
<set xpath="/vehicles/vehicle[@name='vehicle4x4Truck']/property[@name='velocityMax']/@value">16.5,22.5</set>
</configs>
Attachments
Last edited by a moderator: