Package ch.njol.skript.lang

Examples of ch.njol.skript.lang.Statement


      if (n instanceof SimpleNode) {
        final SimpleNode e = (SimpleNode) n;
        final String s = replaceOptions("" + e.getKey());
        if (!SkriptParser.validateLine(s))
          continue;
        final Statement stmt = Statement.parse(s, "Can't understand this condition/effect: " + s);
        if (stmt == null)
          continue;
        if (Skript.debug() || n.debug())
          Skript.debug(indentation + stmt.toString(null, true));
        items.add(stmt);
        if (stmt instanceof Delay)
          hasDelayBefore = Kleenean.TRUE;
      } else if (n instanceof SectionNode) {
        String name = replaceOptions("" + n.getKey());
View Full Code Here

TOP

Related Classes of ch.njol.skript.lang.Statement

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.