About PartyDungeon.Lua

06/19/2013 16:47 raventh1984#1
Hi elitepvpers,

I am currently setting up the v18 dungeons like Eflyff.

However its bugging me that it wont work.

I have no crashes.

This is what i did.

For Sanpress i added with beast the 2 mobs.
Midd Boss and Boss

This is my Lua for it

However i dont need to kill the mid level boss i can go ahead to the boss and kill that one.

Now maybe i thought well i dont need to add those mobs with beast.
So i deleted them from Sanpress 2

Lua

I enter the dungeon and there is no Mid level boss to be found. Also no Boss.

Now my question is do i need to add those mobs also to the map with beast or is there something else missing.

Cause i opend Behemoth cave with beast and Behemoth is not added with beast. However i can kill it when i kill those statues.

With kind regards
06/19/2013 16:55 xInvitcum#2
Hey, i am not sure, if this will solve the Problem and i stopped develope Flyff about 10 months ago, but i think i remember, that you have to set the monster who has to be killed, to the false parameter, so it will looks like this :




excuse me if i am wrong, but i think this is how it works ...


best regards
Invitcum
06/19/2013 17:20 raventh1984#3
Thank you for the answer but that didnt solved it

For sanpress 1 both the mid and high boss are there. Even i didnt killed the mid boss.

For Sanpress 2 Nothing is there.
06/19/2013 17:57 xTwiLightx#4
Quote:
Originally Posted by xInvitcum View Post
Hey, i am not sure, if this will solve the Problem and i stopped develope Flyff about 10 months ago, but i think i remember, that you have to set the monster who has to be killed, to the false parameter, so it will looks like this :




excuse me if i am wrong, but i think this is how it works ...


best regards
Invitcum
False/True is just the aggro state...


Try this one:
Code:
AddDungeon( "WI_INSTANCE_UPRESIA" )
--{
	SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
	SetLevel( 75 , 300 )
	SetCoolTime( MIN(90) )
	SetMonster( ID_BOSS, "MI_DREAMQEEN01", true, 2151, 100, 1727 )

--}



AddDungeon( "WI_INSTANCE_UPRESIA_1" )
--{
	SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
	SetLevel( 75 , 300 )
	SetCoolTime( MIN(90) )
	SetMonster( ID_BOSS, "MI_DREAMQEEN01_1", true, 2151, 100, 1727 )	
--}



AddDungeon( "WI_INSTANCE_HERNEOS" )
--{
	SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
	SetLevel( 90 , 300 )
	SetCoolTime( MIN(90) )

	SetMonster( ID_MIDBOSS, "MI_HERNSIREN01", true, 689, 100, 508 )

	SetMonster( ID_BOSS, "MI_HERNKRAKEN01", true, 1942, 100, 1424 )	
--}



AddDungeon( "WI_INSTANCE_HERNEOS_1" )
--{
	SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
	SetLevel( 90 , 300 )
	SetCoolTime( MIN(90) )

	SetMonster( ID_MIDBOSS, "MI_HERNSIREN01_1", true, 689, 100, 508 )

	SetMonster( ID_BOSS, "MI_HERNKRAKEN01_1", true, 1942, 100, 1424 )
--}



AddDungeon( "WI_INSTANCE_SANPRES" )
--{
	SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
	SetLevel( 105 , 300 )
	SetCoolTime( MIN(90) )

	SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH", true, 1961, 101, 253 )

	SetMonster( ID_BOSS, "MI_SHIPHARPINEES", true, 1362, 109, 1730 )
--}



AddDungeon( "WI_INSTANCE_SANPRES_1" )
--{
	SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
	SetLevel( 105 , 300 )
	SetCoolTime( MIN(90) )
	
	SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH_1", true, 1961, 101, 253 )

	SetMonster( ID_BOSS, "MI_SHIPHARPINEES_1", true, 1362, 109, 1730 )
--}
This is from official flyff.