Go to file
坏黑 5843e0be04 版本更新至 4.06
新增:TLocale 新增 BOOK 类型,用于发送书本界面(代替 Language2)
新增:TLocale 新增 BAR 类型,用于发送 Bossbar(需要 BossBarAPI)
新增:TLocale#Tellraw 工具用于发送原始 json 信息
新增:TellrawJson 工具用于创建原始 json 信息
新增:VariableFormatter 工具用于变量识别
新增:ArrayUtils 新增数组修改方法
修复:Language2Book 工具失效问题
调整:JsonFormatter 工具已过时,不再维护

从该版本起不再对 1.7.10 版本进行支持与维护,任何在 1.7.10 版本内出现的问题不再修复。
1.7.10 稳定版:v3.832
2018-05-27 21:15:29 +08:00
src/main 版本更新至 4.06 2018-05-27 21:15:29 +08:00
.gitattributes Initial commit 2018-02-06 14:44:19 +08:00
.gitignore 一棒打死重构改名的 2018-05-12 16:29:29 +08:00
LICENSE Change to MIT License 2018-04-03 12:53:35 +08:00
pom.xml 版本更新至 4.06 2018-05-27 21:15:29 +08:00
README.md Update README.md 2018-05-19 23:46:07 +08:00
TabooLib.iml 版本更新至 4.02 2018-05-18 00:45:32 +08:00

TabooLib

Bukkit 开发工具库

插件文档

TabooLib 文档

下载 TabooLib 插件

这里 根据您服务器的网络状态下载在线离线版本
离线版为 offline 结尾的 jar 文件

如果你的服务器是 1.7.10 版本,在 这里 修复因 SpecialSource 版本过低导致插件无法载入的问题

添加 TabooLib 为库

Maven

<build>
  <repositories>
    <repository>
       <id>jitpack.io</id>
       <url>https://jitpack.io</url>
    </repository>
  </repositories>        
  <dependency>
    <groupId>com.github.Bkm016</groupId>
    <artifactId>TabooLib</artifactId>
    <version>JitPack版本</version>
  </dependency>
</build>

Gradle

repositories {
  maven { url 'https://jitpack.io' }
}
dependencies {
  compile 'com.github.Bkm016:TabooLib:JitPack版本'
}

sbt

resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies += "com.github.Bkm016" % "TabooLib" % "JitPack版本"

在添加依赖后,你还需要在 plugin.yml 中添加 softdepend 或者 depend 才能享受到 TabooLib 的全部功能。


3.56 版本开始 com.sun.tools.jar 不再和插件一起发布。

如果需要启用 JavaShell 功能请将 com.sun.tools.jar 放入 "TabooLib/JavaShell/lib" 文件夹中。  


3.832 版本后开源协议更改为 MIT