Thread: Noobie question
View Single Post
  #5  
Old 05-29-2007, 06:40 AM
Secrets's Avatar
Secrets
Demi-God
 
Join Date: May 2007
Location: b
Posts: 1,449
Default

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!)
Reply With Quote