View Single Post
  #9  
Old 03-19-2005, 09:03 PM
mollymillions's Avatar
mollymillions
Hill Giant
 
Join Date: May 2003
Posts: 176
Default

Great DB.
There are a few spawns/drops missing that are required for the Monk epic.

Code:
Befallen|The Thaumaturgist|Dagger of Marnek{13169}|(http://eqbeastiary.allakhazam.com/search.shtml?id=3516) Erudite, Necromancer, level 18-19, HP = 289 - 309, pos (-485,86) next to Priest_Amiaz
 
Solusek B|Targin The Rock|Code of Zan Fi{12316}|(http://eqbeastiary.allakhazam.com/search.shtml?id=3682) Human, Monk, level 35, HP = 1675, pos (-532,-355) in the King room on the thrown like seat on the wall (PH="a greater Kobald"). 
 
Lower Guk|Raster of Guk|The Idol{12317}|(http://eqbeastiary.allakhazam.com/search.shtml?id=4609) Human, Monk, level 35, HP = 1675, pos (944,-386) next to the pot in the area next to the Elder Room
 
chardok|An_Iksar_Betrayer|should not drop 'A_Metal_Pipe' (Zan)|(http://eqbeastiary.allakhazam.com/search.shtml?id=5075)
"id","loottable_id","lootdrop_id","spawngroupid","npcname","zone","item_id","name"
"103193","5076","20304","103134","an_iksar_betrayer","chardok","12979","A Metal Pipe"
And a hand in is missing from dreadlands/Brother_Balatin quest
Code:
################################### 
#Zone: The Dreadlands			 #											  
#Short Name: dreadlands		   #																  
#Zone ID: 86					  #										
###################################											 
#NPC Name: Brother_Balatin		#							 
#NPC ID: Multiple				 #
#Quest Status: Complete		   #									  
###################################
sub EVENT_SAY { 
 if($text=~/Hail/i){
  quest::emote("Brother Balatin turns toward you. A transparent human face materializes upon the skull. As he speaks the smells of rotted rat corpses rushes into your face. You must fight the urge to vomit. What discipline do you [follow]?");
 }
 if($text=~/follow/i){
  quest::say("Then we are one. The rebirth of our circle shall start with you. I have waited decades for your arrival. You should seek the living brothers within Tunaria. When you have earned your garb then you will be [ready for the true drape].");
 }
 if($text=~/ready for the true drape/i){
  quest::say("Seek the broken flute of our master. Taken from us by the Iksar twins of Vistrei. To me they shall come and to me your robe and to you shall come the dawning of the new brotherhood.");
  quest::faction(50,-3);
  quest::faction(317,7); 
 }
}
sub EVENT_ITEM { 
 if ($itemcount{12256} == 1 && $itemcount{12979} == 1 && $itemcount{12980} == 1 ){  
  quest::summonitem("12970"); 
  quest::exp("200");
 }
 else {
  quest::say("May you have the correct items or lost forever will be all");  
 }
}
#END of FILE Zone:dreadlands  ID:Not_Found -- Brother_Balatin
Reply With Quote