モンスター一覧(ワールドに出現してないMob含む)
SELECT
`npc`.`id`,
`npc`.`name`,
`npc`.`level`,
`npc`.`type`
FROM
`npc`
WHERE
`npc`.`type` = 'L2Monster' OR
`npc`.`type` = 'L2Boss' OR
`npc`.`type` = 'L2RaidBoss' OR
`npc`.`type` = 'L2FestivalMonster'
ORDER BY
`npc`.`level` ASC,
`npc`.`name` ASC
モンスター一覧(ワールドに出現しているMobのみ)
select distinct npc.id,npc.name,npc.level,type,
hp,mp,exp,sp,patk,matk,pdef,mdef
from npc,spawnlist
where npc.id = spawnlist.npc_templateid
and npc.type in ('L2Monster','L2RaidBoss','L2Minion')
order by npc.level,npc.name
最終更新:2009年01月22日 16:21