Prevent accumulative armor masteries

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
robyfow85
Posts: 49
Joined: Wed Apr 15, 2009 8:07 am

Prevent accumulative armor masteries

Post by robyfow85 »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Revision 3230: /branches/L2_GameServer_T2.2:
L2JDP Revision Revision 6329: /branches/T2.2_DataPack:

First I want to thank you for you for your great job you're doing.
Secondly: I want to know if there is a way to prevent stacking of armor masteries for the multiskill server. (all classes can learn all skills ) ( there was o method for hellbound :

Code: Select all

int id = rset.getInt("skill_id");                int level = rset.getInt("skill_level");                int chclass = rset.getInt("class_index");                 if (id > 9000 && id < 9007)                    continue; // fake skills for base stats                 if(chclass != getClassIndex())                 {                    // Remove armor mastery from other classes                    if(id == 118 || id == 163 || id == 236 || id == 249 || id == 252 || id == 253 || id == 258 || id == 259) continue;                } 
How can i check the ip for a pvp reward system to prevent dualboxing ( or any other kind of protection ) in L2PcInstance

Thank you in advance.
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Prevent accumulative armor masteries

Post by janiii »

DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
robyfow85
Posts: 49
Joined: Wed Apr 15, 2009 8:07 am

Re: Prevent accumulative armor masteries

Post by robyfow85 »

Thank you for your prompt reply...
I will see how does that work and I'll let you know.
Maybe the other matter will be debated in the meanwhile.
robyfow85
Posts: 49
Joined: Wed Apr 15, 2009 8:07 am

Re: Prevent accumulative armor masteries

Post by robyfow85 »

No ideas about how to stop stacking of the armor masteries.
Post Reply