PDA

View Full Version : question (new to quest auth)


arkaydez
03-19-2009, 06:04 PM
Just a quick question maybe someone could hook me up.

I need a skill check in a quest routine how would I grab the skill level value for a tradeskill from the client?

Andrew80k
03-19-2009, 06:48 PM
Just a quick question maybe someone could hook me up.

I need a skill check in a quest routine how would I grab the skill level value for a tradeskill from the client?
I did this once in a quest messing around. $client->GetSkill(skill_id) works. You just have to plug in the skill_id of the tradeskill you are interested in. I'm not sure of the capitalization though. This is what's listed in the wiki but I don't remember if it's correct or not. I'd have to look at the quest I was messing with to know for sure and of course, I don't have it handy.

arkaydez
03-20-2009, 03:01 PM
Awesome! thanks for the help ill let ya know how it turns out.