Jump to content
  • 0

Frintezza Ai


Question

Posted

Acis 352

I addapt frintezza ai and have 1 error. Can anyone help pls? Sorry 4 noob question.

 

L2BossZone.java

	public void updateKnownList(L2Npc npc) 
	{
		if (_characterList == null || _characterList.isEmpty())
		{
			return;
		}
		
		for (L2Character character : _characterList)
		{
			if (character instanceof L2PcInstance)
			{
			    npc.getKnownList().addKnownObject(character);
			}
		}
	}
    [javac] public void updateKnownList(L2Npc npc) 
    [javac]                                               ^
    [javac]   symbol:   class L2Npc
    [javac]   location: class L2BossZone
    [javac] 1 error

2 answers to this question

Recommended Posts

Guest
This topic is now closed to further replies.


×
×
  • Create New...