Vehicles

Do not reload the plugin or the server to put these changes into effect. Restart the server.

A small snippet of the config has been selected for this page. Config settings may vary between vehicles, yet should be self explanatory if you have read through this page.

Custom 3D-Model configuration can be found on the 3D-Models page!


Vehicle Settings

bikes:
 'BLACK':
  seatMaterial: 'BLACK_TERRACOTTA'
  wheelsUrl: 'http://textures.minecraft.net/texture/444cd5d2fd2fe397ddb927e184f19ecbd0fe24af6ef68852c172ae447cd4'
  backMaterial: 'SPRUCE_SLAB'
  maxSpeed: 1.2
  acelerationValue: 0.006
  displayName: '&7Black Bike'
  permission: 'Bikes.type.BLACK'
  maxHealth: 40
  fuelCapacity: 1000
  fuelWasteSpeed: 1.2
 'ORANGE':
  seatMaterial: 'ORANGE_TERRACOTTA'
  wheelsUrl: 'http://textures.minecraft.net/texture/444cd5d2fd2fe397ddb927e184f19ecbd0fe24af6ef68852c172ae447cd4'
  backMaterial: 'CUT_RED_SANDSTONE_SLAB'
  maxSpeed: 1.4
  acelerationValue: 0.006
  displayName: '&6Orange Bike'
  permission: 'Bikes.type.ORANGE'
  maxHealth: 40
  fuelCapacity: 1200
  fuelWasteSpeed: 1.1

* This example is using the first two vehicles from the bikes section.

Setting

Info

'BLACK', 'ORANGE'

This is the unique name of the given chosen vehicle. You can choose to make these upper or lower case.m

seatMaterial, wheelsUrl, backMaterial

Set the desired material or material urls here. More info on re-texturing vehicles can be found here.

maxSpeed, acelerationValue

Set the maximum speed and how fast the vehicle accelerates.

displayName

This is the name you will see on the chests when holding them. Has to be a unique name.

permission

The permission for players to use and buy the vehicle. For more info on "Use-Permissions" click here.

maxHealth, fuelCapactiy, fuelWasteSpeed

Sets the value of the maximum vehicle health and fuel amount. You can also set how fast each vehicle loses fuel. To disable health for all vehicles check out this.


Adding more Vehicles

If you want to add more vehicles, simply copy/paste the settings (see below) from one vehicle and edit those. Keep in mind that every type has to be a unique name. To learn how to add the new vehicles to the shop click here.

 'BLACK':
  seatMaterial: 'BLACK_TERRACOTTA'
  wheelsUrl: 'http://textures.minecraft.net/texture/444cd5d2fd2fe397ddb927e184f19ecbd0fe24af6ef68852c172ae447cd4'
  backMaterial: 'SPRUCE_SLAB'
  maxSpeed: 1.2
  acelerationValue: 0.006
  displayName: '&7Black Bike'
  permission: 'Bikes.type.BLACK'
  maxHealth: 40
  fuelCapacity: 1000
  fuelWasteSpeed: 1.2
 'NEW UNIQUE VEHICLE NAME':
  seatMaterial: 'MATERIAL'
  wheelsUrl: 'http://textures.minecraft.net/texture/444cd5d2fd2fe397ddb927e184f19ecbd0fe24af6ef68852c172ae447cd4'
  backMaterial: 'MATERIAL'
  maxSpeed: 1.4
  acelerationValue: 0.006
  displayName: 'NAME'
  permission: 'PERMISSION'
  maxHealth: 40
  fuelCapacity: 1200
  fuelWasteSpeed: 1.1

Re-texture Vehicles

Old System

  mainMaterial: 'GREEN_TERRACOTTA'

Most Vehicles use the old system. Simple blocks/items can be used to re-color your vehicles.

New System

  mainMaterialUrl: 'http://textures.minecraft.net/texture/fca5bff325ed71d97a2ddfc83acf05fe7fd9cb7cbdb15ebb4f05621907e9f2b'

On the newer/newest Vehicles the materials are skin textures. That means you can upload your own custom skins as use them as a vehicle color. Below you will find two ways on how to add your own textures to Vehicles.

New System | Custom Skin

Step 1:

Customize your skin (We suggest PlanetMinecraft ("File" > "Save To File" to export)). Caution! Certain "Hat" textures may overlap with items on vehicles, hiding them behind the texture!

Step 2:

Equip it as usual (If you don't know where, click on the link below).

Step 3:

Head on over to https://www.minecraft.net/en-us/msaprofile/mygames/editskin and navigate to the following area:

Step 3:

Right-Click the image and choose Copy image address. You now have the skin texture and can change the mainMaterialUrl: in the config.

New System | Minecraft Heads

Step 1:

Navigate to https://minecraft-heads.com/ and select a Skin you want to use.

Step 2:

After selecting, scroll down to the bottom of the page to find the Minecraft-URL. Click on the blue link next to the Minecraft-URL. Simply copy that URL and add the texture to the mainMaterialUrl: in the config.

Last updated