PDA

View Full Version : Dolgin Codslayer - Faydedar


Aramid
08-28-2006, 01:42 PM
Here is another part of the Druid 1.0 Quest.

Druid turns in the Froklog Essence to Dolgin_Codslayer located at the Oasis in Timorous Deep, which spawns the water dragon #faydedar just offshore in the lake. I set #faydedar's Aggro Radius high to 500 so he would come out of the water and attack whoever was standing on the island. Check your aggro radius. He should come out of the water quickly.
Dolgin will depop within 5 minutes after turning in the essence. I set the respawn on Dolgin to 12 hours in the database, live may be 24, don't remember... you make your own choice.
If you turn in the wrong item, he will return it.

Make sure that the Pod of Seawater is in the loot table for #Faydedar at 100%. Save the file as Dolgin_Codslayer.pl in the quests/timorous folder.


# Dolgin_Codslayer.pl
# Timorous Deep
# dolgin_codslayer
# faydedar
# turn in froglok essence to spawn faydedar
# Written by Aramid August 27, 2006


sub EVENT_ITEM
{
if (plugin::check_handin(\%itemcount, 20696 => 1))
{
quest::say("What's this? Egads! It's perfect. Now all we gotta do is hope he bites.' Dolgin takes a little of the essence and smears it on a piece of bread. He places the bait into the water and watches intently.");
my $a = 96073;
quest::summonitem("20696");
quest::spawn($a,0,0,-1932.6,-11792.9,-11.2);
quest::settimer("depop",300);
}

else
{
plugin::return_items(\%itemcount);
quest::say("I have no need for this $name, you can have it back.");
return;
}
}

sub EVENT_TIMER{
quest::depop;
quest::stoptimer("depop");
}




#END of FILE Zone:timorous ID:96018 -- Dolgin_Codslayer