アットウィキロゴ

モンスター一覧

モンスター一覧(ワールドに出現してない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
ツールボックス

下から選んでください:

新しいページを作成する
ヘルプ / FAQ もご覧ください。