L2JMobius

Grand Crusade Instance Zone and Help in Menu din't work

D14BL3 · 7 · 7046


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16111
The instancezone command already exists.
If it is the same thing, just look what packet is triggered when clicking on the button.


Offline D14BL3

  • Vassal
  • *
    • Posts: 6
command and basic action work fine, but because in gameserver log din't show any error, so i can't figure it out where the packet handler that button


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16111
I cannot figure why it works this way, but anyways...
Try this and tell me if if feels it is correct to commit.
Code: [Select]
Index: java/org/l2jmobius/gameserver/network/clientpackets/RequestInzoneWaitingTime.java
===================================================================
--- java/org/l2jmobius/gameserver/network/clientpackets/RequestInzoneWaitingTime.java (revision 7463)
+++ java/org/l2jmobius/gameserver/network/clientpackets/RequestInzoneWaitingTime.java (working copy)
@@ -40,6 +40,6 @@
  {
  return;
  }
- client.sendPacket(new ExInzoneWaiting(player, true));
+ client.sendPacket(new ExInzoneWaiting(player, false));
  }
 }
There are obviously cases when this is sent automatically by client.
Maybe when sent by client it should not pop-up?

Do some tests, like entrering an instance, etc...


Offline D14BL3

  • Vassal
  • *
    • Posts: 6
its work, test on entering instance and hit the button, instance zone window pop up with correct information

thanks