Quest bug in Q00182_NewRecruits

Issue #192 invalid
Koroniz created an issue

Cannot start quest with a character that meets quest requirements. That's because the quest only tests for human_fighter class.

@Override
    public String onTalk(L2Npc npc, L2PcInstance player)
    {
        ........

        final int npcId = npc.getId();
        if (npcId == KEKROPUS)
        {
            switch (st.getState())
            {
                case State.CREATED:

                    ........

                    }
                    else if ((level >= 17) && (level <= 21) && (player.getClassId().ordinal() == 0))
                    {
                        htmltext = "32138-01.htm";
                    }

                    ........

            }
        }
    }

Comments (2)

  1. Log in to comment