Examples of showRegion()


Examples of com.garbagemule.MobArena.region.ArenaRegion.showRegion()

            String toShow = s.split(" ")[1].trim();

            // Regions
            if (toShow.equalsIgnoreCase("r") || toShow.equalsIgnoreCase("regions")) {
                if (region.isDefined()) {
                    region.showRegion(player);
                    if (region.isLobbyDefined()) {
                        region.showLobbyRegion(player);
                        next = formatYellow("Showing both %s.", "regions");
                    } else {
                        next = formatYellow("Showing %s (lobby region not defined).", "arena region");
View Full Code Here

Examples of com.garbagemule.MobArena.region.ArenaRegion.showRegion()

                }
                return this;
            } else if (toShow.equalsIgnoreCase("ar")) {
                if (region.isDefined()) {
                    next = formatYellow("Showing %s.", "arena region");
                    region.showRegion(player);
                } else {
                    next = "The region has not been defined yet.";
                }
                return this;
            } else if (toShow.equalsIgnoreCase("lr")) {
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.