Package org.bukkit.event.player

Examples of org.bukkit.event.player.PlayerChatEvent


   * Reload Permissions plugin by issuing an "/rp" chat command
   *
   * @param server
   */
  public static void reloadPermissions(Server server) {
    Event event = new PlayerChatEvent(Type.PLAYER_COMMAND, new FakePlayer(),
        "/rp");
    server.getPluginManager().callEvent(event);
  }
View Full Code Here

TOP

Related Classes of org.bukkit.event.player.PlayerChatEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.