CarouselSelector
  • Introduction
  • Introduction
    • Installation
  • In Game Documentation
    • Commands
    • Custom player head
    • Click animations
    • Custom model data
  • API Documentation
    • JavaDoc
    • CarouselSelectorPlugin.class
    • CarouselSelector.class
    • Open a 3D-Menu
Powered by GitBook
On this page
  • Server startup
  • Getting started
  • Using Maven

Was this helpful?

  1. Introduction

Installation

To use this plugin, follow this page.

PreviousIntroductionNextCommands

Last updated 1 year ago

Was this helpful?

Server startup

The plugin will only work with the latest updated version available .

Getting started

Put the CarouselSelector.jar file in your plugins folder.

If you want to use the API, you must indicate that you are going to use the it in your plugin.yml file.

D'ont forget to add it to the dependencies in your IDE !

depend: [CarouselSelector]

Using Maven

Add the dependency to your pom.yml after adding the jar into your librairies.

<dependency>
    <groupId>fr.icrossing</groupId>
    <artifactId>CarouselSelector</artifactId>
    <version>4.0.2</version>
    <scope>system</scope>
    <systemPath>PATH_OF_CAROUSELSELECTOR.JAR</systemPath>
</dependency>
here