Skip to content

BongleXD/BridgeLeveling

Repository files navigation

English (Current Page) | 简体中文

downloads downloads license

BridgeLeveling

BridgeLeveling is an Bukkit Plugin can leveling for your Bridge Servers and provides lots of unique functions.

Features

  • Max Level Limitation (config.yml set max-level to -1 to disable)
  • Obtain EXP from Placeing Blocks / Combat / Online Reward
  • Support MySQL / SQLite
  • Bridge Combat System
  • Ranking System
  • Fully Configurable
  • PlaceHolderAPI Hook (Version >= 2.10.10)

Links (Free Download)

Dependency

Installation

  1. Download BridgeLeveling-*.jar File.
  2. Put it in Plugins folder.
  3. Start your server.
  4. Modify configurations you want.
  5. Restart your server.
  6. Done.

API

  • Events - BridgeLeveling provides total of 4 events.
@EventHandler
public void onKill(PlayerKillEvent e) {
  // TO DO
}

@EventHandler
public void onLevelUp(PlayerLevelUpEvent e) {
  // TO DO
}

@EventHandler
public void onRankUp(PlayerRankUpEvent e) {
  // TO DO
}

@EventHandler
public void onXpGain(PlayerXpGainEvent e) {
  // TO DO
}
  • Player Data
PlayerData data = PlayerData.getData(Player.getUniqueId());