PlayerPoof
WebsiteDashboardFree versionDiscord
  • 👋Welcome to PlayerPoof
  • 🌎Overview
    • ✨Our Features
    • 🧩Our modules
  • 🔧Installation
    • 💻Bukkit
    • 🌊Bungeecord
    • 🖥️Velocity
    • 🔌Messaging services
  • 📘Basics
    • ⌨️Commands
    • 📃Permissions
    • 🔗Placeholders
  • 🧩Modules
    • 🔌Ping
    • 🆙Vote
    • 👋Welcome
    • 📈Fluctuation
    • 💬Chat
    • 🛡️Ranks
    • 💰Auctions
    • 🚶Citizens
  • 👩‍💻Developers
    • API
Powered by GitBook
On this page
  • Getting Started
  • Maven
  • Gradle
  • Useful functions
  1. Developers

API

Getting Started

To get started you need to install our repository and dependencies to your project. You can simply copy and paste the maven & gradle configuration as follows:

Maven

<repositories>
  <!-- playerpoof -->
  <repository>
    <id>playerpoof</id>
    <url>https://maven.playerpoof.com/repository/maven-public/</url>
  </repository>
</repositories
<dependencies>
  <!-- playerpoof bukkit api -->
  <dependency>
    <groupId>com.playerpoof</groupId>
    <artifactId>api-bukkit</artifactId>
    <version>1.1.1</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Gradle

repositories {
                mavenLocal()
                maven("https://maven.playerpoof.com/repository/maven-public/")
            }
implementation("com.playerpoof:api-bukkit:1.1.1")

Useful functions

Our api is not finished so at the moment you'll find all interesting functions in the PlayerPoofAPI class.

PlayerPoofAPI.isFakePlayer(player); # org.bukkit.OfflinePlayer
PlayerPoofAPI.isFakePlayer(playerName); # String
PlayerPoofAPI.isFakePlayer(playerId); # UUID
PreviousCitizens

Last updated 1 year ago

👩‍💻