View Single Post
  #3  
Old 12-31-2009, 06:40 PM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Code:
sub EVENT_ITEM {
  if(plugin::check_handin(\%itemcount, 13324 => 1, 13325 => 1)) { #Petilence Scythe, Decaying Heart
    if($faction <= 2) {
      quest::say("Ahhhhhh! Finally.... The evil Grimrot has been slain! Praise Karana! Here $name, please take this gift as a reward for your troubles!");
      quest::summonitem(12238);
    }
    else {
      quest::say("You have not proven yourself worthy of my trust. Come back once you have dedicated yourself to qeynos.");
      quest::summonitem(13324);
      quest::summonitem(13325);
    }
  }
  else {
    quest::say("I have no use for this.");
    plugin::return_items(\%itemcount);
  }
}
Reply With Quote