Thread: Quest Titles
View Single Post
  #4  
Old 11-06-2006, 05:25 PM
paaco
Discordant
 
Join Date: Jan 2005
Posts: 320
Default

Unless I am using it wrong, it appears to be broken. This is what I have, rest of quest works fine
I did a #reloadquest, turned the quest item in ( quest worked ), zoned to a new zone, and no title.

Paaco = Sad sad Panda :(

Code:
sub EVENT_SAY 
{
  if($text=~/Hail/i) {
    quest::say("We were once a peaceful race,living amongst the other beings of the world. Then they came...The Dragons. They destroyed our cities and trapped us here. Now it seems we are stuck here, to rot in this hell for Eternity. Every night I dream of the day a Hero will come release us from this place. Are You That [Hero]?");
  }
  if($text=~/Hero/i) {
    quest::say("Forgive me if I don't seem too moved by your words. Many have come here claiming to be the Hero we seek. As of yet, none have returned. You will have to proove yourself to us. And the only way I see to do that is deliver us from this foul place. There is a Dragon Guarding the way out of here. Kill him and bring me his head, and I will surely reward you.");}
} 
sub EVENT_ITEM { 
   if(plugin::check_handin(\%itemcount, 25118 =>1)){ 
      quest::summonitem(9046);
      quest::summonitem(3953);
      $client->SetAATitle("Dragonslayer");
      quest::say("Thank you $name . You are destined to do great things in this cruel world of ours. Speak with Delilah when you are ready for your next task.");
    quest::exp(14000);}
}
Reply With Quote