Package com.mcbans.firestar.mcbans.callBacks

Examples of com.mcbans.firestar.mcbans.callBacks.ServerChoose


        // ban sync
        bansync = new BanSync(this);
        syncBan = new Thread(bansync);
        syncBan.start();

        ServerChoose serverChooser = new ServerChoose(this);
        (new Thread(serverChooser)).start();

        // rollback handler
        rbHandler = new RollbackHandler(this);
        rbHandler.setupHandler();
View Full Code Here


                I18n.setCurrentLanguage(config.getLanguage());
                send(ChatColor.GREEN + "Reload completed!");
            }catch(Exception ex){
                send(ChatColor.RED + "An error occured while trying to load the language file.");
            }
            ServerChoose serverChooser = new ServerChoose(plugin);
            (new Thread(serverChooser)).start();
            return;
        }
        /* for MCBans Mod */
        if (first.equalsIgnoreCase("staff") && player != null && plugin.mcbStaff.contains(player.getName())){
View Full Code Here

TOP

Related Classes of com.mcbans.firestar.mcbans.callBacks.ServerChoose

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.