RSC Posted February 14, 2022 Posted February 14, 2022 Help me how to add Letter Collector event and how to add it to the right shortcut bar. Source code: L2J_Mobius_Essence_5.2_FrostLord I'm a rookie and learning everything about server side out of hobby, please help me thank you all
0 RSC Posted February 20, 2022 Author Posted February 20, 2022 I learned through a friend that Mobius free source code does not share the new version of the letter activity file. So this question has an answer, please lock it.
0 api Posted February 24, 2022 Posted February 24, 2022 (edited) 1 hour ago, frogsandstarfish said: package l2s.gameserver.network.l2.s2c; import l2s.gameserver.network.l2.ServerPacketOpcodes; /** * @author Bonux (bonuxq@gmail.com) * @date 16.11.2020 **/ public class ExLetterCollectorUiLauncher extends L2GameServerPacket { private final boolean activate; private final int minLevel; public ExLetterCollectorUiLauncher(boolean activate, int minLevel) { this.activate = activate; this.minLevel = minLevel; } @Override protected void writeImpl() { writeOpcode(ServerPacketOpcodes.ExLetterCollectorUiLauncher); writeC(activate); writeD(minLevel); } } /*0xFE:0x23F*/ ExLetterCollectorUiLauncher, // S_EX_LETTER_COLLECTOR_UI_LAUNCHER this show only event window for add new event icon in sidebar - need work with interface.u sidebar not show\hide btns from server, only live\classic ver. difference, l2.ini params and hardcode in *.uc scripts Edited February 24, 2022 by api 1
0 RSC Posted February 24, 2022 Author Posted February 24, 2022 (edited) Quote Quote Thanks ! Does interface.u need editing? I tried to open 311System interface.u with UT Package Tool v2.0 beta5 and found _S_EX_LETTRE_COLLECTOR_UI_LAUNCHER But this tool doesn't modify the file, maybe I won't use it. I don't know how to modify it. no suitable tools Thanks again for your answer anyway. Thanks! Edited February 24, 2022 by RSC
0 api Posted February 24, 2022 Posted February 24, 2022 2 hours ago, RSC said: Thanks ! Does interface.u need editing? I tried to open 311System interface.u with UT Package Tool v2.0 beta5 and found _S_EX_LETTRE_COLLECTOR_UI_LAUNCHER But this tool doesn't modify the file, maybe I won't use it. I don't know how to modify it. no suitable tools Thanks again for your answer anyway. Thanks! you can edit it via UTPT+hex, small fix need to delete it and btn will stop being hide by default
0 RSC Posted February 25, 2022 Author Posted February 25, 2022 15 hours ago, frogsandstarfish said: if you want to ADD a NEW event icon for a custom event or anything else you need to go through interface but if you just want letter collector to work the packet i posted controls the letter collector icon in sidebar Sorry, just found out that two people replied to me My fault and thank you very much for answering my question. Thanks again! 20 hours ago, api said: 您可以通过 UTPT+hex 编辑它,小修复 需要删除它,btn 默认会停止隐藏 OK, I'll try to do that. grateful!
0 RSC Posted March 8, 2022 Author Posted March 8, 2022 16 hours ago, Vision said: Have you found solution to your problem? @RSC Yes. I have roughly understood the principle, if need to lock, please lock it. Thanks again everyone!
0 Vision Posted March 8, 2022 Posted March 8, 2022 3 hours ago, RSC said: Yes. I have roughly understood the principle, if need to lock, please lock it. Thanks again everyone! Ok locked.
Question
RSC
Help me how to add Letter Collector event and how to add it to the right shortcut bar.
Source code: L2J_Mobius_Essence_5.2_FrostLord
I'm a rookie and learning everything about server side out of hobby,
please help me thank you all
8 answers to this question
Recommended Posts