Just a packet Kevin found, and I need this. We played around with this and.. this is used when Nexon wants to open the "Party Search" in PQ's, and even quests to open Inventory.
MaplePacketCreator.
Code:
/**
* Sends a UI utility.
* 1 - Equipment Inventory.
* 2 - Stat Window.
* 3 - Skill Window.
* 5 - Keyboard Settings.
* 6 - Quest window.
* 7 - Monsterbook Window.
* 16 - Party Search.
* 17 - Item Creation Window.
* 18 - Maple Event (???)
* 21 - DC lol.
*
* @param ui
* @return
*/
public static MaplePacket openUI(byte ui) {
MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
mplew.writeShort(SendOpcode.OPEN_UI.getValue());
mplew.write(ui);
return mplew.getPacket();
}
SendOpcode.