EdenEternal Posted June 18, 2010 Posted June 18, 2010 lets beggin! Open Navicat->host->l2jdb right-click and select console etcitems for example Coin of Luck(4037) write there: UPDATE etcitem SET `sellable`="true" WHERE `item_id`="4037"; UPDATE etcitem SET `dropable`="true" WHERE `item_id`="4037"; UPDATE etcitem SET `tradeable`="true" WHERE `item_id`="4037"; UPDATE etcitem SET `destroyable`="true" WHERE `item_id`="4037"; with this sql query you make coin of luck sellable/dropable/tradeble/destroyable if you want to make sellable/dropable/tradeble/destroyable other item, just change 4037 to your item id. armor for example Draconic Leather Armor(6379) write there: UPDATE armor SET `sellable`="true" WHERE `item_id`="6379"; UPDATE armor SET `dropable`="true" WHERE `item_id`="6379"; UPDATE armor SET `tradeable`="true" WHERE `item_id`="6379"; UPDATE armor SET `destroyable`="true" WHERE `item_id`="6379"; with this sql query you make Draconic Leather Armor sellable/dropable/tradeble/destroyable if you want to make sellable/dropable/tradeble/destroyable other item, just change 6379 to your item id. weapon for example Arcana Mace(6579) write there: UPDATE weapon SET `sellable`="true" WHERE `item_id`="6579"; UPDATE weapon SET `dropable`="true" WHERE `item_id`="6579"; UPDATE weapon SET `tradeable`="true" WHERE `item_id`="6579"; UPDATE weapon SET `destroyable`="true" WHERE `item_id`="6579"; with this sql query you make Arcana Mace sellable/dropable/tradeble/destroyable if you want to make sellable/dropable/tradeble/destroyable other item, just change 6579 to your item id.
Matim Posted June 19, 2010 Posted June 19, 2010 Quite simple subject, but as alway, something useful.
femalesoulhound Posted November 22, 2011 Posted November 22, 2011 if u are on h5 server, u just need to re configure it @ xml of item,,, CMIIW
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now