|
Zu zweitens 2.
Geh in PartyDungeon.lua und füge bei den Roten SetClass die Definireten Jobs ein.
zb:
--[[
-- Sample
AddDungeon( "WI_DUNGEON_FL_MAS" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 80, 120 )
SetCoolTime( MIN(1) )
SetTeleportPos( ID_NORMAL, 695, 90, 684 ) -- Á¤ÀÇÇÏÁö ¾ÊÀ¸¸é ¸Ê¿¡¼* ¼³Á¤ÇÑ ÁÂÇ¥·Î À̵¿ÇÑ´Ù.
SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_NORMAL, "MI_CAITSITH04_1", false, 695, 90, 684 )
SetMonster( ID_NORMAL, "MI_CAITSITH04_1", false, 695, 90, 684 )
SetMonster( ID_NORMAL, "MI_CAITSITH04_1", false, 695, 90, 684 )
SetMonster( ID_MIDBOSS, "MI_AIBATT1", false, 695, 90, 684 )
SetMonster( ID_BOSS, "MI_AIBATT1", true, 695, 100, 684 )
--}
--]]
|