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

Got it working for a 4 identical item turn in. 1 in each slot. Here is the code change...

Code:
for (int inum = 0; inum<4; inum++) {
     if (TradeList[inum] != NULL)
         CheckQuests(zone->GetShortName(), "%%item%%", tmp->CastToNPC()->GetNPCTypeID(), TradeList[inum], tmp);
}
Changed the quest to have a single TRIGGER_ITEM and it is working perfectly. Now to get the charges working...
Reply With Quote