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
|