PDA

View Full Version : disable lore flag on items


Dabloon
04-05-2012, 09:09 AM
I am trying to remove the lore flag on items and i am running into problems.
I tried this update items set loreflag=0; but that does not work. Any ideas what will work? Any help on this is greatly appreciated

lerxst2112
04-05-2012, 12:51 PM
Two ways:

Add a variable named disablelore and set it to 1 in the variables table in your database.

update items set loregroup = 0;

The first is probably better as it isn't a permanent data change in case you should want to enable it again later.