View Single Post
  #3  
Old 05-08-2006, 05:11 PM
saladbowl1
Fire Beetle
 
Join Date: Aug 2004
Posts: 10
Default

something along these lines

Code:
sub EVENT_ITEM {
if($item1=="5018" && $item2=="5019" && $item3=="5020" && $item4=="1179"){
quest::summonitem(5021);}
}
with the code above they'll have to turn them in in order...

Code:
sub EVENT_ITEM {
if($itemcount{5018} == 1);
($itemcount{5019} == 1);
($itemcount{5020} == 1);
($itemcount{1179} == 1);{
quest::summonitem(5021);}
}
The one above is what you were aiming at, you only had a few minor mistakes.

Last edited by saladbowl1; 05-09-2006 at 01:18 AM..
Reply With Quote