Examples of processQuestEvent()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.processQuestEvent()

        String p = _command.substring(6).trim();
        int idx = p.indexOf(' ');

        if(idx < 0)
        {
          player.processQuestEvent(p, "");
        }
        else
        {
          player.processQuestEvent(p.substring(0, idx), p.substring(idx).trim());
        }
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.processQuestEvent()

        {
          player.processQuestEvent(p, "");
        }
        else
        {
          player.processQuestEvent(p.substring(0, idx), p.substring(idx).trim());
        }
      }

      // Jstar's Custom Bypass Caller!
      else if(_command.startsWith("custom_"))
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

        return;
      }
      L2Player pl = getPlayer();
      if(pl != null && getQuest() != null && getQuest().getName() != null && getName() != null)
      {
        pl.processQuestEvent(getQuest().getName(), getName(), getNpc());
      }
      cancel();
    }
  }
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

      return;
    }
    Quest tutorial = QuestManager.getQuest(255);
    if(tutorial != null)
    {
      player.processQuestEvent(tutorial.getName(), _bypass, null);
    }
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

      return;
    }
    Quest tutorial = QuestManager.getQuest(255);
    if(tutorial != null)
    {
      player.processQuestEvent(tutorial.getName(), "CE" + event, null);
    }
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

      return;
    }
    Quest q = QuestManager.getQuest(255);
    if(q != null)
    {
      player.processQuestEvent(q.getName(), "QM" + _number, null);
    }
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

      return;
    }
    Quest q = QuestManager.getQuest(255);
    if(q != null)
    {
      player.processQuestEvent(q.getName(), _bypass, null);
    }
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

      {
        String p = bypass.substring(6).trim();
        int idx = p.indexOf(' ');
        if(idx < 0)
        {
          activeChar.processQuestEvent(p, "", npc);
        }
        else
        {
          activeChar.processQuestEvent(p.substring(0, idx), p.substring(idx).trim(), npc);
        }
View Full Code Here

Examples of l2p.gameserver.model.L2Player.processQuestEvent()

        {
          activeChar.processQuestEvent(p, "", npc);
        }
        else
        {
          activeChar.processQuestEvent(p.substring(0, idx), p.substring(idx).trim(), npc);
        }
      }
      else if(bypass.startsWith("_bbs"))
      {
        if(activeChar.isDead()
View Full Code Here

Examples of lineage2.gameserver.model.Player.processQuestEvent()

     
      QuestState qs = player.getQuestState(_10301_ShadowOfTerrorBlackishRedFog.class);
      if(qs != null && qs.getCond() == 3 && player.getVar("instance10301") == null)
      {
        Quest q = QuestManager.getQuest(10301);
        player.processQuestEvent(q.getName(), "enterInstance", null);
        //player.setVar("instance10301", "true", -1);
        return;
      }
      if (!player.getVarB("@25_20_telzone_to_magmeld"))
      {
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.