View Single Post
  #2  
Old 03-03-2015, 09:27 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default

Well, you could write a rather elaborate SQL, or you could just run this to pull up all the spawn entries of fabled mobs.
Code:
SELECT
    s.*
FROM
    `spawnentry` s
INNER JOIN `npc_types` n ON s.`npcID` = n.`id`
WHERE
    n.`name` LIKE '%Fabled%';
Reply With Quote