Jump to content

Recommended Posts

Posted

missing import on L2PcInstance

 

import com.l2jserver.gameserver.model.entity.Zombie;

 

and there is a config import on ZombieNpc.java that is not beeing used. Need to remove that.

 

also on Zombie.java FastList still have arguments.

       public static FastList<L2PcInstance> all = new FastList<L2PcInstance>();
       public static FastList<L2PcInstance> _infected = new FastList<L2PcInstance>();
       public static FastList<L2PcInstance> _notinfected = new FastList<L2PcInstance>();

 

it should be like this

       public static FastList<L2PcInstance> all = new FastList<>();
       public static FastList<L2PcInstance> _infected = new FastList<>();
       public static FastList<L2PcInstance> _notinfected = new FastList<>();

 

 

Posted

Dont work for me can someone help me?

it gives error or what ?

also on Zombie.java FastList still have arguments.


       public static FastList<L2PcInstance> all = new FastList<L2PcInstance>();
       public static FastList<L2PcInstance> _infected = new FastList<L2PcInstance>();
       public static FastList<L2PcInstance> _notinfected = new FastList<L2PcInstance>();

 

it should be like this

       public static FastList<L2PcInstance> all = new FastList<>();
       public static FastList<L2PcInstance> _infected = new FastList<>();
       public static FastList<L2PcInstance> _notinfected = new FastList<>();

 

 

it really doesn't matter

 

sorry for posting late didn't check the topic

  • 5 weeks later...
Posted

Hello, no errors in the console, no errors in compiling and also no errors at server startup however when i log i keep get announcements for the registration even if the event is not running at all and it doesn't start at all..

Posted

Hello, no errors in the console, no errors in compiling and also no errors at server startup however when i log i keep get announcements for the registration even if the event is not running at all and it doesn't start at all..

hmmm strange , are you sure that you registered ?

Posted

I press 'Event' button in the npc but nothing happen, anyway i just discovered that it start spam same announcements over and over 5mins right before the event should start.

  • 2 weeks later...
Posted

I press 'Event' button in the npc but nothing happen, anyway i just discovered that it start spam same announcements over and over 5mins right before the event should start.

 

Same here :(

Guest
This topic is now closed to further replies.

×
×
  • Create New...