Page 1 of 1

Prevent accumulative armor masteries

Posted: Thu Jun 25, 2009 7:32 am
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.

Re: Prevent accumulative armor masteries

Posted: Thu Jun 25, 2009 7:44 am
by janiii

Re: Prevent accumulative armor masteries

Posted: Thu Jun 25, 2009 10:40 am
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.

Re: Prevent accumulative armor masteries

Posted: Fri Jun 26, 2009 1:24 pm
by robyfow85
No ideas about how to stop stacking of the armor masteries.