View Single Post
  #10  
Old 09-01-2008, 12:07 PM
Neiv
Hill Giant
 
Join Date: May 2008
Location: Colorado
Posts: 238
Default

I wrote:
Quote:
I placed quest::emote checkpoints after each command line, and it seems to be failing here:

$factioncheck = $client->GetCharacterFaction(19927);

Anything apparently wrong with this statement?
I figured out the problem. The object is not . . .

$factioncheck = $client->GetCharacterFaction(19927);

The correct version is . . .

$factioncheck = $client->GetCharacterFactionLevel(19927);

As soon as I have all the details worked out, I will post the quest.
Reply With Quote