EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Quests::Q&A (https://www.eqemulator.org/forums/forumdisplay.php?f=599)
-   -   Flutterwing's Quest (https://www.eqemulator.org/forums/showthread.php?t=31384)

spideyak 05-27-2010 07:29 PM

Flutterwing's Quest
 
Okay, I'm new to quest writing/fixing, so I'm wondering if anybody knows of a fix for this:

Code:

#zone: tutorialb
#quest: Flutterwing's sibling
#site3op

sub EVENT_SAY {
  if($text=~/hail/i) {
    quest::signal(189022,0); #Rashere
  }
}

sub EVENT_ITEM {
  if(plugin::check_handin(\%itemcount, 54603 => 1)) { #Flutterwing's Unhatched Sibling
    quest::emote("beams with glee.");
    quest::say("Oh, $name, how can I ever repay such kindness. I will not be alone in this dreadful place after all. Please accept this small token.");
    quest::exp(500);
    quest::ding();
    if($class eq 'Warrior'){quest::summonitem(38005);}
    elsif($class eq 'Cleric'){quest::summonitem(38173);}
    elsif($class eq 'Paladin'){quest::summonitem(38089);}
    elsif($class eq 'Ranger'){quest::summonitem(38110);}
    elsif($class eq 'Shadowknight'){quest::summonitem(38068);}
    elsif($class eq 'Druid'){quest::summonitem(38194);}
    elsif($class eq 'Monk'){quest::summonitem(38026);}
    elsif($class eq 'Bard'){quest::summonitem(38152);}
    elsif($class eq 'Rogue'){quest::summonitem(38047);}
    elsif($class eq 'Shaman'){quest::summonitem(38215);}
    elsif($class eq 'Necromancer'){quest::summonitem(38299);}
    elsif($class eq 'Wizard'){quest::summonitem(38236);}
    elsif($class eq 'Magician'){quest::summonitem(38257);}
    elsif($class eq 'Enchanter'){quest::summonitem(38278);}
    elsif($class eq 'Beastlord'){quest::summonitem(38131);}
    elsif($class eq 'Berserker'){quest::summonitem(38320);}
  }
  elsif(plugin::check_handin(\%itemcount, 13014 => 1)) { #Muffin
    quest::emote("snatches the muffin from you as you barely manage to keep your fingers.");
    quest::exp(25);
  }
  else {
    quest::emote("sniffs the item and turns his head in disgust.");
    plugin::return_items(\%itemcount);
  }
}

I hail Flutterwing & he responds and says something about his sibling; however when I ask "What sibling?" Flutterwing does not respond and give the quest.

I looked in this file, but didn't see where the quest was called given the response "What sibling?"

spideyak 05-27-2010 07:37 PM

Okay, it seems as if the quest is supposed to trigger Soulbinder Rashere & he gives the quest... let me try that one.

spideyak 05-27-2010 07:42 PM

Ah-ha, please disregard... fixed now. Nothing wrong with the quest, something wrong with the player - PEBCAK. Need more coffee


All times are GMT -4. The time now is 10:07 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.