コード例 #1
0
ファイル: L2SummonAI.java プロジェクト: impos89/l2emu
  @Override
  protected void onIntentionActive() {
    if (_actor instanceof L2MerchantSummonInstance) return;

    if (_startFollow) setIntention(AI_INTENTION_FOLLOW, getActor().getOwner());
    else super.onIntentionActive();
  }
コード例 #2
0
ファイル: L2SummonAI.java プロジェクト: impos89/l2emu
  @Override
  protected void onEvtFinishCasting() {
    if (_actor instanceof L2MerchantSummonInstance) return;

    if (getIntention() != AI_INTENTION_ATTACK) getActor().setFollowStatus(_startFollow);

    super.onEvtFinishCasting();
  }