Examples of EngageAnswer()


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

    else if (_messageId == SystemMessageId.WOULD_YOU_LIKE_TO_OPEN_THE_GATE.getId())
      activeChar.gatesAnswer(_answer, 1);
    else if (_messageId == SystemMessageId.WOULD_YOU_LIKE_TO_CLOSE_THE_GATE.getId())
      activeChar.gatesAnswer(_answer, 0);   
    else if (_messageId == 614 && Config.L2JMOD_ALLOW_WEDDING)
      activeChar.EngageAnswer(_answer);   
    else if (_messageId == SystemMessageId.S1.getId())
      if (activeChar.dialog != null)
      {
        activeChar.dialog.onDlgAnswer(activeChar);
        activeChar.dialog = null;
View Full Code Here

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

        activeChar.scriptAnswer(_answer);
        break;
      case 4:
        if(Config.ALLOW_WEDDING && activeChar.isEngageRequest())
        {
          activeChar.engageAnswer(_answer);
        }
        break;
    }
  }
}
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.