Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.59 KB

README.md

File metadata and controls

60 lines (37 loc) · 1.59 KB

Minestom Payments

Minestom Payments is a quick and easy library to hook in with your webstore. Currently supports Tebex and CraftingStore, with Agora and MineStoreCMS planned.

Badges

GitHub License

GitHub Actions Workflow Status

Libraries.io dependency status for GitHub repo

GitHub Issues or Pull Requests

Javadocs

https://repo.expx.dev/javadoc/releases/dev/expx/minestom/Payments/{version}

Installation

<repositories>
    <repository>
        <id>cams-utils-releases</id>
        <url>https://repo.expx.dev/releases</url>
    </repository>
</repositories>

<dependency>
    <groupId>dev.expx.minestom</groupId>
    <artifactId>Payments</artifactId>
    <version>1.2.3</version>
</dependency>

Usage

import net.minestom.server.MinecraftServer;
import dev.expx.payments.PaymentHandler;
import dev.expx.payments.StoreType;

public static void main(String[] args) {
    MinecraftServer server = MinecraftServer.init();
    PaymentHandler.init(StoreType.TEBEX_STORE, Path.of("store"));
    server.start("0.0.0.0", 25565)
}

Contributing

Contributions are always welcome!

Open an issue/pr :)