I checked the script in my version of PEQ's release..
I think it's just a bug with their quest release.
You need to add the sub EVENT_ITEM into the quest, like this:
Code:
sub EVENT_ITEM
{
if(plugin::check_handin(\%itemcount, 14550 => 4))
{
quest::summonitem(1369,1);
quest::say("You have done well, young initiate. I grant you this medallion invested with the divine hatred of Innoruuk. Wear it proudly as a representation of your importance to these sacred spires. Now, if you will excuse me, I must proceed with the burning of these pathetic halfling symbols of faith.");
quest::faction(87,10);
quest::faction(69,10);
quest::faction(155,10);
quest::faction(260,-10);
}
}
To the bottom of the file.
Hope that helps. Also, there is a wiki page that helps understand it, but seeing a complete part should be enough to understand it (trust me, it's not easy starting from scratch!)