Skip to content

Latest commit

 

History

History
102 lines (75 loc) · 2.75 KB

README_cn.md

File metadata and controls

102 lines (75 loc) · 2.75 KB

CrystalKillListener

Build Dev-Build MAVEN LICENSE STARS DOWNLOAD

English | 简体中文

在Spigot中添加一个玩家使用末影水晶击杀玩家的事件

受支持的Minecraft版本: 1.12

JavaDoc -> PlayerDeathByPlayerWithCrystalEvent

使用方法

对于用户

JAR 文件放入服务器的 plugins 文件夹中

对于开发者

  1. 在工程的 plugin.yml 中包含下列内容
depend:
  - CrystalKillListener
  1. 在你的构建工具中添加依赖项
Gradle :
repositories {
    maven {
        url = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
    }
}

dependencies {
    compileOnly 'io.github.guangchen2333:CrystalKillListener:{VERSION}'
}
Maven:
<repositories>
    <repository>
        <id>OSSRH</id>
        <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>io.github.guangchen2333</groupId>
        <artifactId>CrystalKillListener</artifactId>
        <version>{VERSION}</version>
        <scope>compile</scope>
    </dependency>
</dependencies>

使用示例

import org.bukkit.event.Listener;
import org.bukkit.event.EventHandler;
import cn.guangchen233.crystallistener.events.PlayerDeathByPlayerWithCrystalEvent;

public class Example implements Listener {
    @EventHandler
    public void onPlayerDeathWithCrystal(PlayerDeathByPlayerWithCrystalEvent event) {
        System.out.println(event.toString());
    }
}

关于

如果你喜欢这个项目,请给本项目点个Star。

如果你有任何关于本项目的想法或建议,欢迎提交Pull Requests或Issue,我会认真的审核您的提交。