Examples of KillstreakReward


Examples of com.tommytony.war.config.KillstreakReward

    reward.put(0, new ItemStack(Material.CAKE, 1));
    this.getDefaultInventories().setReward(reward);
   
    this.getCommandWhitelist().add("who");
    this.getZoneMakerNames().add("tommytony");
    this.setKillstreakReward(new KillstreakReward());
    this.setMysqlConfig(new MySQLConfig());
   
    // Add constants
    this.getDeadlyAdjectives().clear();
    for (String adjective : this.getString("pvp.kill.adjectives").split(";")) {
View Full Code Here

Examples of com.tommytony.war.config.KillstreakReward

      }
    }

    // Killstreak config
    if (warRootSection.isConfigurationSection("war.killstreak")) {
      War.war.setKillstreakReward(new KillstreakReward(warRootSection.getConfigurationSection("war.killstreak")));
    }

    if (warRootSection.isConfigurationSection("war.mysql")) {
      War.war.setMysqlConfig(new MySQLConfig(warRootSection.getConfigurationSection("war.mysql")));
    }
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.