English | 简体中文
在Spigot中添加一个玩家使用末影水晶击杀玩家的事件
受支持的Minecraft版本: 1.12
JavaDoc -> PlayerDeathByPlayerWithCrystalEvent
将 JAR
文件放入服务器的 plugins
文件夹中
- 在工程的
plugin.yml
中包含下列内容
depend:
- CrystalKillListener
- 在你的构建工具中添加依赖项
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,我会认真的审核您的提交。