添加README说明文件...

Signed-off-by: 502647092 <jtb1@163.com>
master
502647092 2016-02-29 20:41:55 +08:00
parent d65ba8f5f3
commit ae46a4a8a9
1 changed files with 66 additions and 0 deletions

66
README.MD Normal file
View File

@ -0,0 +1,66 @@
#TellRaw
A Simple Minecraft TellRaw Lib Depend [GsonAgent](https://coding.net/u/502647092/p/GsonAgent/git)
This Lib is Compatible with 1.7.X-1.8.X
## Installation
Maven Repo
```XML
<repositories>
<repository>
<id>citycraft-repo</id>
<url>http://hs.yumc.pw:8080/plugin/repository/everything/</url>
</repository>
</repositories>
```
Maven Depend
```XML
<dependencies>
<dependency>
<groupId>cn.citycraft</groupId>
<artifactId>TellRaw</artifactId>
<type>jar</type>
<version>1.0</version>
</dependency>
</dependencies>
```
Maven Shade [Shade Or Depend]
```XML
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<configuration>
<artifactSet>
<includes>
<include>cn.citycraft:GsonAgent</include>
<include>cn.citycraft:TellRaw</include>
</includes>
</artifactSet>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
```
Bukkit Depend [Shade Or Depend]
```XML
softdepend: [TellRaw,GsonAgent]
```
##Usage
```java
FancyMessage fm = FancyMessage.newFM();
/*Item Tooltip*/
fm.then("Wood").itemTooltip(new ItemStack(Material.WOOD));
/*Web Link*/
fm.then("link").link("www.yumc.pw");
/*Command Suggest*/
fm.then("suggest").suggest("qs help");
/*Send To Player*/
fm.send(Bukkit.getPlayer("XXX"));
```