Quick Entity Spawn Question

11/26/2011 23:19 12k#1
While working on my 5017 source. It seems like its treating my characters as a mob instead of a char. Showing green/black/white names accordingly, and not allowing me to view equips. Is there a certain flag that needs to be set in the spawn packet or? Any help is appreciated. Thanks a lot.
11/27/2011 00:34 .Kinshi#2
Depending on the value of the entities unique identifier, the client will treat it differently.
Code:
const OBJID	MONSTERID_FIRST		= 400001;
const OBJID	MONSTERID_LAST		= 499999;

const OBJID PLAYER_ID_FIRST		= 1000000;
const OBJID PLAYER_ID_LAST		= 1999999999;
11/27/2011 00:47 12k#3
o0o crazy. I would of never thought of that. Thanks a lot. Greatly appreciated :D