Jump to content
  • 0

Help Antharas


Question

Posted

I Start The Console and when AI Loads Give me error:

GrandBossManager: Updated Antharas(29019) status to 1
Exception in thread "main" java.lang.NullPointerException
        at com.l2jfrozen.gameserver.ai.special.Antharas_l2j$AntharasSpawn.<init>
(Antharas_l2j.java:389)
        at com.l2jfrozen.gameserver.ai.special.Antharas_l2j.setAntharasSpawnTask
(Antharas_l2j.java:351)
        at com.l2jfrozen.gameserver.ai.special.Antharas_l2j.init(Antharas_l2j.ja
va:252)
        at com.l2jfrozen.gameserver.ai.special.Antharas_l2j.<init>(Antharas_l2j.
java:128)
        at com.l2jfrozen.gameserver.ai.special.manager.AILoader.init(AILoader.ja
va:59)
        at com.l2jfrozen.gameserver.GameServer.main(GameServer.java:479)

Recommended Posts

  • 0
Posted (edited)

if(_Zone!=null && _Zone.getCharactersInside() != null) make it like this and try again

The problem is that the zone shouldn't be null so he must solve the mess he got somewhere. Adding a null check you're not solving anything.

I guess that mess wasn't caused coz of removing a null check ^^"

Edited by ^Wyatt
  • 0
Posted

if(_Zone!=null && _Zone.getCharactersInside() != null) make it like this and try again

 

It's the sort of "false-good" solution.

 

What happens now if you got that check ? Stuff related to the zone still won't be covered, but the script will work as if nothing happened. You won't have NPE anymore, but a bigger issue as you won't know anymore what was the original issue. That's more boring to get a silent bug than a crying bug.

 

The issue is the zone is missing, in a matter or another. It can be loading related, it can be data related (wrong coords, zone id overlapping another).

 

Finally, _characterList can't be null (meaning your check is pointless). At worst it's empty, and operations on an empty stuff makes nothing.

protected L2ZoneType(int id)
    {
        _id = id;
        _characterList = new FastMap<Integer, L2Character>().shared();

Final point : THE ZONE MISSES.

  • 0
Posted

l2jserver you use, what revision?

No offense, but please don't reply if you can't help to solve the problem. Since you can't even read the error (see imports and you will know what pack he uses).

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...