A map icon block was introduced to the game with v1.10.3 that allows players to name their vehicles.
Getting a vehicle's name was removed with the whole new addon lua groups system, but I feel this is a perfect opportunity to bring it back, just this time the name is the one provided through the map icon block, if any.
Example:
If I spawn a group with a vehicle containing a map icon block, and I set the name of the vehicle to something like "Foo" through the block, then the below function should return "Foo".
local name, is_success = server.getVehicleName(vehicle_id) name, is_success -- "Foo", true
However, if I spawn a group that has no map icon blocks on any vehicle within the group, then the below function should return nothing, with is_success set to false.
local name, is_success = server.getVehicleName(vehicle_id) name, is_success -- "", false
This is not a super important feature, but this will be extremely handy for dedicated server addons showing the names of vehicles. Having to show the vehicle IDs instead isn't too visually appealing.