Examples of TimeControl


Examples of com.bergerkiller.bukkit.mw.TimeControl

      }
      if (args.length == 0) {
        message(ChatColor.YELLOW + "The current time of world '" +
            worldname + "' is " + TimeUtil.getTimeString(time));
      } else {
        TimeControl tc = wc.timeControl;
        boolean wasLocked = tc.isLocked();
        tc.setLocking(lock);
        tc.setTime(time);
        if (lock) {
          if (wc.isLoaded()) {
            message(ChatColor.GREEN + "Time of world '" + worldname + "' locked to " +
                TimeUtil.getTimeString(time) + "!");
          } else {
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.