VehiclesPlus/README.md

91 lines
4.4 KiB
Markdown
Raw Normal View History

2023-04-16 10:46:23 +00:00
# VehiclesPlus
2024-02-28 17:37:11 +00:00
*Realistic custom vehicles for your Minecraft server!*
2024-02-28 17:31:40 +00:00
[![Version](https://img.shields.io/spiget/version/70523?label=version)](https://www.spigotmc.org/resources/vehiclesplus-1-12-1-20-4.70523/)
[![Downloads](https://img.shields.io/spiget/downloads/70523)](https://www.spigotmc.org/resources/vehiclesplus-1-12-1-20-4.70523/)
[![Rating](https://img.shields.io/spiget/stars/70523?color=orange)](https://www.spigotmc.org/resources/vehiclesplus-1-12-1-20-4.70523/)
## Installation
2024-02-28 17:37:11 +00:00
**Supported Versions:** VehiclesPlus works on all Spigot/Paper versions from 1.12.x, **except 1.14.x**!
2024-02-28 17:31:40 +00:00
### 0. Check your Java version
2024-02-28 17:37:11 +00:00
VehiclesPlus requires **Java 11** or higher. Make sure your server is compatible with Java 11 or higher.
2024-02-28 17:31:40 +00:00
### 1. Download the latest version
2024-02-28 17:37:11 +00:00
Download the latest stable version from [SpigotMC](https://www.spigotmc.org/resources/vehiclesplus-1-12-1-20-4.70523/) or [Polymart](https://polymart.org/resource/vehiclesplus-1-12-1-20-4.633).
2024-02-28 17:31:40 +00:00
Put the .jar file into the `/plugins` folder of your server.
### 2. Download the dependencies
2024-02-28 17:37:11 +00:00
2024-02-28 17:34:00 +00:00
> ## ❗ **VehiclesPlus requires additional dependencies** ❗<br>
> VehiclesPlus requires additional plugins to work correctly. The plugin __WON'T LOAD__ without them.
VehiclesPlus requires [ProtocolLib](https://www.spigotmc.org/resources/protocollib.1997/), [Vault](https://www.spigotmc.org/resources/vault.34315/) and an economy plugin (like [EssentialsX](https://essentialsx.net/downloads.html)) to work. Make sure you have them installed!
2024-02-28 17:31:40 +00:00
### 3. Download the example resourcepack
2024-02-28 17:37:11 +00:00
> ## ⚠ **VehiclesPlus requires a resourcepack!** ⚠<br>
2024-02-28 17:31:40 +00:00
> VehiclesPlus uses items to display the vehicles in your server. If you don't use the resourcepack, it's not possible to see the vehicles.
Download the correct example resourcepack for your Minecraft server. You can find [the correct version here](https://docs.sbdevelopment.tech/en/vehiclesplus/setup#resourcepack-download).
Install it into your Minecraft server ([follow the instructions](https://docs.sbdevelopment.tech/en/vehiclesplus/setup#using-our-example-pack-as-server-resourcepack)) or into your Minecraft client if you prefer to test it yourself.
> ### ⚠ **VehiclesPlus contains an EXAMPLE resourcepack!** ⚠<br>
> The plugin is designed to make it easy to create your own vehicles. We recommend making or buying your own vehicles to suit your server better.<br>
> If you want to buy one of the example vehicles included with the plugin, you can find them [here](https://polymart.org/team/sbdevelopment.93).
### 4. Restart your server
2024-02-28 17:37:11 +00:00
2024-02-28 17:31:40 +00:00
Restart your server using the Restart button. Do ***NOT*** reload, it will break the plugin!
### 5. Have fun!
2024-02-28 17:37:11 +00:00
2024-02-28 17:31:40 +00:00
The plugin is now installed into your Minecraft server! Have fun with testing the plugin and creating your own vehicles.
## Support
2024-02-28 17:37:11 +00:00
First check if [the Wiki](https://docs.sbdevelopment.tech/en/vehiclesplus/about) answers your question. Can't find the correct answer or need more help? You can contact us in [our Discord server](https://discord.gg/z26ZGrrFWB).
2023-07-22 13:17:20 +00:00
2023-04-16 10:56:52 +00:00
## License
2024-02-28 17:37:11 +00:00
2023-04-16 10:56:52 +00:00
Please be advised that the materials contained within this repository are subject to the terms and conditions of the Creative Commons Attribution-NoDerivatives 4.0 International License (CC BY-ND 4.0). We kindly request that you review the `LICENSE.md` file, which provides further details regarding the applicable license.
By accessing or utilizing any of the materials within this repository, you acknowledge and agree to comply with all of the terms and conditions of the applicable license.
2023-09-08 13:04:56 +00:00
2024-02-18 19:22:45 +00:00
### v3 example resourcepack models
Additionally, please note that the v3 models included in this repository have been created by MelchMwoan ([mkmodels.eu](https://polymart.org/user/melchmwoan.2244)) and are subject to specific limitations under the aforementioned license. Redistribution of these models is strictly prohibited without express written consent from the owner.
2023-09-08 13:04:56 +00:00
## Maven
2024-02-28 17:37:11 +00:00
2023-09-08 13:04:56 +00:00
You can find both the v2 and v3 API on our Maven repository.
2024-02-28 17:37:11 +00:00
2023-09-08 13:04:56 +00:00
```xml
<repository>
<id>sbdevelopment-repo-releases</id>
<name>SBDevelopment Repository</name>
<url>https://repo.sbdevelopment.tech/releases</url>
</repository>
<!-- v2 Dependency -->
<dependency>
<groupId>nl.sbdeveloper</groupId>
<artifactId>VehiclesPlus-API</artifactId>
<version>2.3.5</version>
2023-09-08 13:07:08 +00:00
<scope>provided</scope>
2023-09-08 13:04:56 +00:00
</dependency>
<!-- V3 Dependency -->
<dependency>
<groupId>nl.sbdeveloper</groupId>
<artifactId>VehiclesPlus-API</artifactId>
<version>3.0.0-SNAPSHOT</version>
2023-09-08 13:07:08 +00:00
<scope>provided</scope>
2023-09-08 13:04:56 +00:00
</dependency>
2024-02-28 17:31:40 +00:00
```