View Single Post
  #2  
Old 12-29-2008, 03:09 PM
GeorgeS
Forum Guide
 
Join Date: Sep 2003
Location: California
Posts: 1,474
Default

First of all if this is your server, then you need a sql browser and must examine the character and linked inventory tables. It may be the inventory link is incorrect for your character.

table Character_ field id stores the unique id for the toon. It's inventory is found in;
table inventory, field charid.

If there are no items for the character, then the error must lie somewhere else.

Run this query to examine the contents of your toon.

SELECT name,slotid,itemid FROM character_ , inventory WHERE name="mytoon" AND (character_.id=inventory.charid)



GeorgeS
__________________
Your source for EQ database tools
Toolshop is open for business


http://www.georgestools.chrsschb.com//
Reply With Quote