Jump to content

Zombie Event


marwan

Recommended Posts

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<>();

 

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 5 weeks later...

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..

Link to comment
Share on other sites

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 ?

Link to comment
Share on other sites

  • 2 weeks later...
Guest
This topic is now closed to further replies.



×
×
  • Create New...