Package org.moparscape.msc.gs.config.Config

Examples of org.moparscape.msc.gs.config.Config.AdditionalDeathPenalties


  public void killedBy(Mob mob, boolean stake) {
    if (!loggedIn) {
      Logger.error(username + " not logged in, but killed!");
      return;
    }
    AdditionalDeathPenalties adp = Config.ADDITIONAL_DEATH_PENALTIES;
    if (adp.enabled) {
      System.out.println("adp enabled");
      System.out.println(adp.npc);
      System.out.println(mob);
      boolean apply = false;
View Full Code Here

TOP

Related Classes of org.moparscape.msc.gs.config.Config.AdditionalDeathPenalties

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.