Examples of ECOCMD


Examples of me.ic3d.eco.Command.ECOCMD

      setupPermissions();
    this.config = this.getConfiguration();
    singularCurrency = this.config.getString("Currency.Singuluar", "Dollar");
    pluralCurrency = this.config.getString("Currency.Plural", "Dollars");
    config.save();
    this.getCommand("eco").setExecutor(new ECOCMD(this));
    log.info("[3co] Version " + this.getDescription().getVersion() + " by IC3D enabled");
    for(World world : this.getServer().getWorlds()) {
      for(Player player : world.getPlayers()) {
        ECOP pClass = getDatabase().find(ECOP.class).where().ieq("PlayerName", player.getName()).findUnique();
        if (pClass== null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.