- Expand GunzDB
- Expand Tables
- Right click dbo.Character > Open Table
- Find the name of the character who's inventory or equipped items you want to edit. Scroll right untill you see the column called CID, it's the number of a particular character. Make note of the CID number for the character you want to edit.
- To edit currently equipped items, continue scrolling right. You will see columns head_itemid, chest_itemid, etc. The numbers in those columns are the itemid's of particular items that are equipped by a character. You can get itemid's from zitem.xml
- If you want to add item's in a character's inventory, close the dbo.character table that you opened.
- Now right click dbo.items > Open Table
- Scroll to the bottom of the table, and insert a new row for each new item you want to add. In the CID column, put the CID of the character you wish to give the item to. In the ItemID column, put the itemid of the item from zitem.xml. And in the CIID column, put the CIID of the row directly above this new row +1.. The CIID's go in numerical order. For example, the first row in this table will have a CIID of 1, second row will have 2, 3rd will have 3, 28th will have 28, etc.
Always remember that to save any changes to a table, you need to right click > Execute SQL.