Jump to content
  • 0

L2NpcInstance.java error


Question

Posted

private void showQuestChooseWindow(final L2PcInstance player, final Quest[] quests)
    {
        final TextBuilder sb = new TextBuilder();
        
        sb.append("<html><body><title>Talk about:</title><br>");
        
        String state = "";
        
        for (final Quest q : quests)
        {
            
            if (q == null)
            {
                continue;
            }
            
            sb.append("<a action=\"bypass -h npc_").append(getObjectId()).append("_Quest ").append(q.getName()).append("\">[");
            
            final QuestState qs = player.getQuestState(q.getScriptName());
            
            if ((qs == null) || qs.getState().equals(State.ACTIVE))
            {
                state = "In Progress";
                
            }
            else if (qs.isStarted() && (qs.getInt("cond") > 0))
            {
                state = " (In Progress)";
                
            }
            else if (qs.isCompleted())
            {
                state = " (Done)";
            }
            
            sb.append(q.getDescr()).append(state).append("]</a><br>");
        }
        
        sb.append("</body></html>

 

Please, help. Why eclipse, show error?

3 answers to this question

Recommended Posts

  • 0
Posted

if ((qs == null) || qs.getState().equals(State.ACTIVE))
            {
                state = "In Progress";
                
            }
            else if (qs.isStarted() && (qs.getInt("cond") > 0))
            {
                state = " (In Progress)";
                
            }
            else if (qs.isCompleted())
            {
                state = " (Done)";
            }

 

 

change this to

 

state = qs.getState().toString().toLowerCase();

 

 

code is generally trash

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock