Package ch.njol.skript.lang.util

Examples of ch.njol.skript.lang.util.SimpleEvent


    this.executableBy = executableBy;
   
    this.pattern = pattern;
    this.arguments = arguments;
   
    trigger = new Trigger(script, "command /" + name, new SimpleEvent(), items);
   
    bukkitCommand = setupBukkitCommand();
  }
View Full Code Here


    // here to allow recursion
    Functions.functions.put(name, new FunctionData(this));
   
    Functions.currentFunction = this;
    try {
      trigger = new Trigger(node.getConfig().getFile(), "function " + name, new SimpleEvent(), ScriptLoader.loadItems(node));
    } finally {
      Functions.currentFunction = null;
    }
  }
View Full Code Here

TOP

Related Classes of ch.njol.skript.lang.util.SimpleEvent

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.