Examples of WorldListener


Examples of com.gmail.nossr50.listeners.WorldListener

        pluginManager.registerEvents(new PlayerListener(this), this);
        pluginManager.registerEvents(new BlockListener(this), this);
        pluginManager.registerEvents(new EntityListener(this), this);
        pluginManager.registerEvents(new InventoryListener(this), this);
        pluginManager.registerEvents(new SelfListener(), this);
        pluginManager.registerEvents(new WorldListener(this), this);
    }
View Full Code Here

Examples of com.kellerkindt.scs.listeners.WorldListener

   
    //Instantiate and Register the listeners.  Do this last to avoid NPEs for chunk load events.
    log(Level.INFO, "Register event listeners.", true);
    registerEvents(new PlayerListener  (this));
    registerEvents(new BlockListener   (this));
    registerEvents(new WorldListener   (this));
    registerEvents(new InventoryListener(this));
    registerEvents(new EntityListener  (this));
   
    registerEvents(new ShowCaseStandalonePluginListener(this));
   
View Full Code Here

Examples of org.mctourney.autoreferee.listeners.WorldListener

    // listener utility classes, subdivided for organization
    pm.registerEvents(new TeamListener(this), this);
    pm.registerEvents(new CombatListener(this), this);
    pm.registerEvents(new ZoneListener(this), this);
    pm.registerEvents(new WorldListener(this), this);
    pm.registerEvents(new ObjectiveTracker(this), this);
    pm.registerEvents(new ObjectiveTracer(this), this);

    // save this reference to use for setting up the referee channel later
    pm.registerEvents(refChannelListener = new SpectatorListener(this), this);
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.