Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Modular Lobby Plugin & API for Spigot 1.19+

NotificationsYou must be signed in to change notification settings

teraprath/Lobby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lobby

Modular Plugin for Spigot 1.19+

Features

  • Easy to use and lightweight
  • World & Player Protection
  • 100% Configurable
  • Modular-System (Custom Modules)
  • Premade Modules (Navigator, Player-Hider, Cosmetics & more) [SOON]
  • Compatible withPointsAPI

Implementation

You can see the latest versionhere.

Using Maven:

<repository>    <id>jitpack.io</id>    <url>https://jitpack.io</url></repository>
<dependency>    <groupId>com.github.teraprath</groupId>    <artifactId>Lobby</artifactId>    <version>INSERT_VERSION_HERE</version></dependency>

Using Gradle:

repositories {    maven { url'https://jitpack.io' }}
dependencies {    implementation 'com.github.teraprath:Lobby:INSERT_VERSION_HERE'}

Create Module

An example code for a custom module.

publicclassExampleModuleextendsModule {publicExampleModule() {super(newModuleItem(itemstack,defaultSlot));    }@OverridepublicvoidonEnable() {// Register eventsregisterListener(listener);// Register sub-commandsregisterSubCommand("example",subCommand);    }@OverridepublicvoidonDisable() {// Shutdown logic    }@OverridepublicvoidonItemClick(PlayerInteractEvente) {// Module-Item interact logic    }}

Create amodule.yml in yourresources folder:

name:TestModuleversion:1.0main:org.example.ExampleModuleauthor:YourName

Full Example Module:https://github.com/teraprath/ExampleModule/

Visitwiki page to see usage guide.(soon)


[8]ページ先頭

©2009-2025 Movatter.jp