Artillex-Studios Documentation Help

Developer API

Add the following to your repositories section:

maven { url 'https://repo.artillex-studios.com/releases/' }

Add the dependency to your dependencies section:

compileOnly("com.artillexstudios:AxAuctionsAPI:CHANGE-THIS")

Add the following to your repositories section:

<repository> <id>Artillex-Studios</id> <url>https://repo.artillex-studios.com/releases/</url> </repository>

Add the following to your dependencies section:

<dependency> <groupId>com.artillexstudios</groupId> <artifactId>AxAuctionsAPI</artifactId> <version>CHANGE-THIS</version> <scope>provided</scope> </dependency>

Replace CHANGE-THIS to the latest version: Ax auctions api color 40c14a amp name ax auctions api

API Usage

Don't forget to add AxAuctions to your plugin's plugin.yml, like this:

depend: - AxAuctions

or:

softdepend: - AxAuctions

Adding your own currency:

Create a new class and make it implement com.artillexstudios.axauctions.hooks.currency.CurrencyHook, it should look something like this:

public class ExampleCurrency implements CurrencyHook { @Override public void setup() { } @Override public String getName() { return null; } @Override public boolean worksOffline() { return false; } @Override public boolean usesDouble() { return false; } @Override public boolean isPersistent() { return false; } @Override public double getBalance(@NotNull UUID player) { return 0; } @Override public void giveBalance(@NotNull UUID player, double amount) { } @Override public void takeBalance(@NotNull UUID player, double amount) { } }

Next is, you will have to create a section in the currencies.yml, just copy paste one of the other currency's, for example like this:

ExampleCurrency: register: true tax: 0 display: # the way the currency will be shown in the lores of the auction gui gui: "&f%price% &#AAFFFFcoins" # used in the currency switcher and tab completion raw: "My Currency" # the item shown in the currency selector item: material: GOLD_INGOT name: "&#00DDFFMy Currency" lore: - " " - "&#00DDFF&l(!) &#00DDFFClick here to select!"

Create your implementation for all these methods, after that is done, you will have to register it by using the com.artillexstudios.axauctions.hooks.HookManager.registerCurrencyHook() method, for the plugin parameter give the instance of your plugin's main class.

And if all of this is done, congratulations, you have added a new currency to AxAuctions!

Last modified: 20 May 2024