Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Honor?

By honour patch, do you mean something that makes it so no items have any required honour? If so, just tell me the name of the column in the item table in your database that handles the required honour for the item (usually RequiredPVPRank or RequiredHonorRank), and I'll make an SQL patch for ya.
 
I see youre post and can i use this:
UPDATE `item_template` SET `requiredhonorrank`=`requiredhonorrank`+4 WHERE `requiredhonorrank`>0;
 
You want to RAISE the honour level you need for items? o.O
BTW, don't use quote marks in that sql query.
ie. item_template, not 'item_template'
And, i'm not sure how you'd add a value to a column. Might be
UPDATE item_template SET requiredhonorrank + 4 WHERE requiredhonorrank > 0;
 
Last edited:
Back