Delete this:
Collection<L2PcInstance> plrs =L2World.getInstance().getAllPlayers().values();
replace for:
L2PcInstance[] plrs = L2World.getInstance().getAllPlayersArray();
I hope this helps you. Take care ;)
Hi I see other user have same problem, check if this answer helps you: http://maxcheaters.com/forum/index.php?topic=224487.msg1970528#msg1970528
Take care
Man I reply about your problem here: http://maxcheaters.com/forum/index.php?topic=224487.msg1970528#msg1970528
You make double thread about same problem and I think isn't correct section.
Hi!, try this:
delete this line:
Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
also delete and replace this line with this
-for (L2PcInstance pl : pls)
+ for (L2PcInstance pl : L2World.getInstance().getAllPlayersArray())
I hope this help you :)