From my last item event, if you want to remove the gold part, try this:
Code:
sub EVENT_ITEM {
if (plugin::check_handin(\%itemcount, 1079=>1)) {
if($class eq "Wizard") {
quest::exp(15);
quest::summonitem(15036);
quest::summonitem(15377);
quest::summonitem(15378);
quest::summonitem(15230);
quest::summonitem(15376);
}
else {
quest::say("You are no Wizard, and I know a Wizard when I see one!");
quest::summonitem(1079);
}
}
else {
quest::say("I have no use for this, $name.");
plugin::return_items(\%itemcount);
}
}