L2JMobius

C6 Clan online status

Strelook66 · 4 · 2350

Offline Strelook66

  • Knight
  • ***
    • Posts: 82
Hi,

When I enter the game, my characters status is offline (the sword is grey) in the clan list but I can see the other clan members who are online. This is the same for everyone. Nobody can see his/hers online status but can see the others.



Online Mobius

  • Distinguished King
  • *****
    • Posts: 16152
Try this.
Code: [Select]
Index: java/org/l2jmobius/gameserver/network/serverpackets/PledgeShowMemberListAll.java
===================================================================
--- java/org/l2jmobius/gameserver/network/serverpackets/PledgeShowMemberListAll.java (revision 9509)
+++ java/org/l2jmobius/gameserver/network/serverpackets/PledgeShowMemberListAll.java (working copy)
@@ -123,8 +123,8 @@
  packet.writeD(m.getLevel());
  packet.writeD(m.getClassId());
  packet.writeD(0);
- packet.writeD(m.getObjectId());
- packet.writeD(m.isOnline() ? 1 : 0);
+ packet.writeD(1);
+ packet.writeD(m.isOnline() || (m.getObjectId() == _player.getObjectId()) ? m.getObjectId() : 0);
  packet.writeD(yellow);
  }
  }


Offline Strelook66

  • Knight
  • ***
    • Posts: 82
This little check did it. Now its updating correctly. Topic can be closed. Thanks  :D