Examples of addOnTimeActions()


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

        for (Iterator<?> onTimeIterator = onTime.elementIterator("on"); onTimeIterator.hasNext();)
        {
          Element on = (Element) onTimeIterator.next();
          int time = Integer.parseInt(on.attributeValue("time"));
          List<EventAction> actions = parseActions(on, time);
          event.addOnTimeActions(time, actions);
        }
      }
      for (Iterator<?> objectIterator = eventElement.elementIterator("objects"); objectIterator.hasNext();)
      {
        Element objectElement = (Element) objectIterator.next();
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.