L2JMobius

Homunculus Krofin Nest Instance

CostyKiller · 26 · 10573

Online CostyKiller

  • Distinguished King
  • *****
    • Posts: 953
the last boss appears twice. After the first kill, the boss appears again. and you get the award twice.

Updated first post patch with spawn check.


Offline KachambA

  • Black Sheep
  • Heir
  • **
    • Posts: 12
the last boss appears twice. After the first kill, the boss appears again. and you get the award twice.

Updated first post patch with spawn check.

now the last boss form does not appear at all


Online CostyKiller

  • Distinguished King
  • *****
    • Posts: 953

Offline KachambA

  • Black Sheep
  • Heir
  • **
    • Posts: 12
Updated again, it should be fine now.

now everything works fine, it remains to add effects and skills for the monsters.


Offline Mechagon3k

  • Knight
  • ***
    • Posts: 67
First, thank you for your great work. Much appreciated.

Queen Krosha skills (partially)

<skill id="32628" level="1" /> <!-- Queen Krosha Swing Slasher -->
<skill id="32629" level="3" /> <!-- Queen Krosha Stamp -->
<skill id="32630" level="2" /> <!-- Queen Krosha Howling -->
<skill id="32631" level="2" /> <!-- Queen Krosha Fatal Stamp -->
<skill id="32632" level="2" /> <!-- Queen Krosha Brilliance -->
<skill id="32633" level="2" /> <!-- Queen Krosha Rage -->
<skill id="32634" level="3" /> <!-- Queen Krosha Electric Beam -->
<skill id="32653" level="1" /> <!-- Queen Krosha Stun -->
<skill id="32654" level="1" /> <!-- Queen Krosha Disappear -->
<skill id="32656" level="1" /> <!-- Queen Krosha Water Protection -->




Ref:
--
CHRONOS SERVER - NEW KROFIN 110






Offline Shekinah

  • Vassal
  • *
    • Posts: 1

Online gigilo1968

  • Black Sheep
  • Elder
  • ****
    • Posts: 187
    • Hi5
Event Triggers for cave doors is:

        // Trigers
   private static final int FIRST_CAVE_CLOSE = 23227500;
   private static final int FIRST_CAVE_OPEN = 23227502;
   private static final int SECOND_CAVE_CLOSE = 24257710;
   private static final int SECOND_CAVE_OPEN = 24257712;
   private static final int THIRD_CAVE_CLOSE = 24257720;
   private static final int THIRD_CAVE_OPEN = 24257722;
   private static final int FOURTH_CAVE_CLOSE = 24257730;
   private static final int FOURTH_CAVE_OPEN = 24257732;
-----------------------------------------------------------------------------------------------
   private static final int WATERFALL = 24257780;  // it's waterfall effect in Krofin Boss room. don't know what it's for, but it's beautiful


Online CostyKiller

  • Distinguished King
  • *****
    • Posts: 953
Hi, do you use those event triggers? I tried adding them into instance script and only the first one is working fine.


Online gigilo1968

  • Black Sheep
  • Elder
  • ****
    • Posts: 187
    • Hi5
Hi, do you use those event triggers? I tried adding them into instance script and only the first one is working fine.

I tested all triggers from the GM panel. everything worked correctly


Online gigilo1968

  • Black Sheep
  • Elder
  • ****
    • Posts: 187
    • Hi5
Maybe it does not display because when teleport in second area chang geomap 23_22 --> 24_25

Code: [Select]
       addCreatureSeeId(KROPION_110);

----

        @Override
public String onCreatureSee(Npc npc, Creature creature)
{
final Instance world = npc.getInstanceWorld();
if (creature.isPlayer())
{
world.broadcastPacket(new OnEventTrigger(SECOND_CAVE_CLOSE, true));
}
return super.onCreatureSee(npc, creature);
}

all work fine


Online CostyKiller

  • Distinguished King
  • *****
    • Posts: 953