Examples of ScriptEvent


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

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

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

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

  }
 
  @Override
  public void unregisterAll() {
    if (!load && t != null)
      t.execute(new ScriptEvent());
    t = null;
  }
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.