Originally Posted by
Cypher
Containers (bags etc) aren't GameObjects. Examples of GameObjects are Herbs, Mines, Chests, etc.
yea that's where i failed i was using eGameObjType trying to identify what kind of objects it was, altho i found the right one 
Code:
enum ObjectType
{
ITEM = 1,
CONTAINER = 2,
NPC = 3,
PLAYER = 4,
GAMEOBJECT = 5,
DYNAMIC_OBJECT = 6,
CORPSE = 7
};
i guess u get kinda blind after working on the same stuff for 2-3 days
GameObject is only the Objects with ObjectTypeId 5 and Items is 1 container is 2 etc..
:yuck: