Prevent accumulative armor masteries
Posted: Thu Jun 25, 2009 7:32 am
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 :
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.
» 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; }
Thank you in advance.