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