View Single Post
  #16  
Old 01-30-2003, 04:18 AM
cybert
Fire Beetle
 
Join Date: Jan 2003
Posts: 6
Default

Quote:
Originally Posted by Wiz
use TradeList[0-3] not just 0.
I am assuming here that in client-process.cpp you were speaking of line 3245 that says...
Code:
CheckQuests(zone->GetShortName(), "%%item%%", tmp->CastToNPC()->GetNPCTypeID(), TradeList[0], tmp);
and change the code to this...
Code:
CheckQuests(zone->GetShortName(), "%%item%%", tmp->CastToNPC()->GetNPCTypeID(), TradeList[0-3], tmp);
I've done this and now get nothing when turing in items. Still looking through the code but for now I'm dealing...
Reply With Quote