R remark New Member Joined Nov 13, 2014 Messages 58 Reaction score 0 Dec 24, 2014 #1 How would i check what difficulty they are? been searching and reading for 2 hours now, and cant get it. thanks in advance for help
How would i check what difficulty they are? been searching and reading for 2 hours now, and cant get it. thanks in advance for help
R remark New Member Joined Nov 13, 2014 Messages 58 Reaction score 0 Dec 25, 2014 #2 Log(me.target.npcGradeId.ToString()); should this not work? or what am i doing wrong?
A AUser New Member Joined Oct 17, 2014 Messages 26 Reaction score 0 Jan 2, 2015 #3 remark said: Log(me.target.npcGradeId.ToString()); should this not work? or what am i doing wrong? Click to expand... There is no npcGradeId property directly on target (which is of type Creature). Try: Log(me.target.db.npcGradeId.ToString());
remark said: Log(me.target.npcGradeId.ToString()); should this not work? or what am i doing wrong? Click to expand... There is no npcGradeId property directly on target (which is of type Creature). Try: Log(me.target.db.npcGradeId.ToString());