Package ch.njol.skript.events.bukkit

Examples of ch.njol.skript.events.bukkit.ScriptEvent


 
  @Override
  public void register(final Trigger t) {
    this.t = t;
    if (load)
      t.execute(new ScriptEvent());
  }
View Full Code Here


 
  @Override
  public void unregister(final Trigger t) {
    assert t == this.t;
    if (!load)
      t.execute(new ScriptEvent());
    this.t = null;
  }
View Full Code Here

  }
 
  @Override
  public void unregisterAll() {
    if (!load && t != null)
      t.execute(new ScriptEvent());
    t = null;
  }
View Full Code Here

TOP

Related Classes of ch.njol.skript.events.bukkit.ScriptEvent

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.