Got it to work. Not sure why but the else makes it break. I tried it without the else before and it didnt work but I probably had a syntax error somewhere.
Working example of multiple item hand in:
Code:
sub EVENT_ITEM
{
if(($itemcount{120003} == 1) && ($itemcount{10503} == 1) && ($itemcount{10300} ==1 ) && ($itemcount{12038} ==1))
{
quest::say("Well what do we have here? Ah, one moment while I smith you up some of me finest armors.");
quest::exp(2500);
quest::summonitem(3053);
quest::say("There ye go, a fancy banded helm for ya. Come back soon!");
}
}