Package com.bukkit.epicsaga.EpicZones

Examples of com.bukkit.epicsaga.EpicZones.EpicZonePlayer


   
  }

  public static void addPlayer(int entityID, String name)
  {
    myPlayers.add(new EpicZonePlayer(entityID, name));
  }
View Full Code Here


  }

  public static void addPlayer(int entityID, String name)
  {
    myPlayers.add(new EpicZonePlayer(entityID, name));
  }
View Full Code Here

  }

  public static void addPlayer(int entityID, String name)
  {
    myPlayers.add(new EpicZonePlayer(entityID, name));
  }
View Full Code Here

  {

    if(EpicZones.permissions.has(event.getPlayer(), "epiczones.admin"))
    {

      EpicZonePlayer ezp = General.getPlayer(event.getPlayer().getEntityId());
      int playerID = ezp.getEntityID();

      if(data.length > 1)
      {
        if(data[1].equalsIgnoreCase("create")){Create(data, event, ezp, playerID);}
        else if(data[1].equalsIgnoreCase("save")){Save(data, event, ezp, playerID);}
View Full Code Here

TOP

Related Classes of com.bukkit.epicsaga.EpicZones.EpicZonePlayer

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.