Page 1 of 1

Event mod race remove

Posted: Wed Nov 24, 2010 6:27 am
by babyjason
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4432
L2JDP Revision Number: 7766


I d like to know how to remove other stack types besides speed up when race event start, is it good like this?

Code: Select all

("speed_up,possession")) 
i suppose this is the line wich removes ww and other speed up buffs...

Code: Select all

        for (L2Effect e : player.getAllEffects())        {            if (e.getStackType().equalsIgnoreCase("speed_up,possession"))                e.exit();        }