TellRaw/README.MD

1.6 KiB

#TellRaw A Simple Minecraft TellRaw Lib Depend GsonAgent This Lib is Compatible with 1.7.X-1.8.X

Installation

Maven Repo

<repositories>
	<repository>
		<id>yumc-repo</id>
		<url>http://repo.yumc.pw/content/groups/public/</url>
	</repository>
</repositories>

Maven Depend

<dependencies>
	<dependency>
		<groupId>cn.citycraft</groupId>
		<artifactId>TellRaw</artifactId>
		<type>jar</type>
		<version>1.0</version>
	</dependency>
	<dependency>
		<groupId>cn.citycraft</groupId>
		<artifactId>GsonAgent</artifactId>
		<type>jar</type>
		<version>1.0</version>
	</dependency>
</dependencies>

Maven Shade [Shade Or Depend]

<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]

softdepend: [TellRaw,GsonAgent]

##Usage

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"));