#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
citycraft-repo
http://hs.yumc.pw:8080/plugin/repository/everything/
```
Maven Depend
```XML
cn.citycraft
TellRaw
jar
1.0
```
Maven Shade [Shade Or Depend]
```XML
org.apache.maven.plugins
maven-shade-plugin
2.3
cn.citycraft:GsonAgent
cn.citycraft:TellRaw
package
shade
```
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"));
```