Examples of addOnStartActions()


Examples of lineage2.gameserver.model.entity.events.GlobalEvent.addOnStartActions()

      {
        Element parameterElement = (Element) parameterIterator.next();
        set.set(parameterElement.attributeValue("name"), parameterElement.attributeValue("value"));
      }
      GlobalEvent event = constructor.newInstance(set);
      event.addOnStartActions(parseActions(eventElement.element("on_start"), Integer.MAX_VALUE));
      event.addOnStopActions(parseActions(eventElement.element("on_stop"), Integer.MAX_VALUE));
      event.addOnInitActions(parseActions(eventElement.element("on_init"), Integer.MAX_VALUE));
      Element onTime = eventElement.element("on_time");
      if (onTime != 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.