Examples of OlympiadTeam


Examples of lineage2.gameserver.model.entity.olympiad.OlympiadTeam

  public void onOlympiadEnd(OlympiadGame og, QuestState qs)
  {
    if (qs.getCond() == 1)
    {
      int count = qs.getInt("count");
      OlympiadTeam winner = og.getWinnerTeam();
      if ((winner != null) && winner.contains(qs.getPlayer().getObjectId()))
      {
        count++;
      }
      else
      {
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.