The following code works with any skill except fishing skills. Am I missing something?
Thanks,
TripleT
Thanks,
TripleT
Code:
uint skillId = castingSkillId(me);
Log("Trying to get skill with id:" + skillId.ToString());
Skill s = getSkill(skillId);
if(s != null)
{
Log("Skill Loaded");
}
Log("Got Skill");
Log("Skill Name is: " + s.name);