Package com.tommytony.war.config

Examples of com.tommytony.war.config.MySQLConfig


    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(";")) {
      this.getDeadlyAdjectives().add(adjective);
View Full Code Here


    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

Related Classes of com.tommytony.war.config.MySQLConfig

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.