[v83] OpenUI Packet.

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    [v83] OpenUI Packet.

    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.

    Code:
    OPEN_UI(0xDC),
    Last edited by Fraysa; 05-12-10 at 03:45 PM.


  2. #2
    while(true) spam(); kevintjuh93 is offline
    MemberRank
    Jun 2008 Join Date
    The NetherlandsLocation
    4,119Posts

    Re: OpenUI Packet.

    PHP Code:
        /**
         * Sends a UI utility.
         * 0x01 - Equipment Inventory.
         * 0x02 - Stat Window.
         * 0x03 - Skill Window.
         * 0x05 - Keyboard Settings.
         * 0x06 - Quest window.
         * 0x09 - Monsterbook Window.
         * 0x0A - Char Info
         * 0x0B - Guild BBS
         * 0x12 - Monster Carnival Window
         * 0x16 - Party Search.
         * 0x17 - Item Creation Window.
         * 0x1A - My Ranking O.O
         * 0x1B - Family Window
         * 0x1C - Family Pedigree
         * 0x1D - GM Story Board /funny shet
         * 0x1E - Envelop saying you got mail from an admin. lmfao
         * 0x1F - Medal Window
         * 0x20 - Maple Event (???)
         * 0x21 - Invalid Pointer Crash
         *
         * @param ui
         * @return
         */
        
    public static MaplePacket openUI(byte ui) {
            
    MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter(3);
            
    mplew.writeShort(SendOpcode.OPEN_UI.getValue());
            
    mplew.write(ui);
            return 
    mplew.getPacket();
        } 
    Oh lol
    Last edited by kevintjuh93; 05-12-10 at 04:12 PM.

  3. #3
    Account Upgraded | Title Enabled! ImReplay is offline
    MemberRank
    Jun 2010 Join Date
    305Posts

    Re: OpenUI Packet.

    What is that packet for? >.<

  4. #4
    while(true) spam(); kevintjuh93 is offline
    MemberRank
    Jun 2008 Join Date
    The NetherlandsLocation
    4,119Posts

    Re: OpenUI Packet.

    Quote Originally Posted by ImReplay View Post
    What is that packet for? >.<
    It's funny to open people's UI. They will go like omg wtf. Lol send the admin mail thingy, it's funny xD

  5. #5
    Account Upgraded | Title Enabled! jadeling is offline
    MemberRank
    Jul 2008 Join Date
    706Posts

    Re: OpenUI Packet.

    LOL.I found this packets on MSEA v97 last tuesday too.

    Edit: 1D = Maple Story In Game Internet Explorer.LOL
    Last edited by jadeling; 05-12-10 at 03:36 PM.

  6. #6
    while(true) spam(); kevintjuh93 is offline
    MemberRank
    Jun 2008 Join Date
    The NetherlandsLocation
    4,119Posts

    Re: OpenUI Packet.

    Quote Originally Posted by jadeling View Post
    LOL.I found this packets on MSEA v97 last tuesday too.
    I already had the header 3 months or so ago. But he asked me if I knew how to open an UI. And yeah I did :P

  7. #7
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: OpenUI Packet.

    The admin mail thingy does nothing. I'm sure we can "modify" the board to write our own stuff, that way it's a cool way to send messages.

  8. #8
    Account Upgraded | Title Enabled! flav is offline
    MemberRank
    Jul 2008 Join Date
    655Posts

    Re: OpenUI Packet.

    Maybe this can be used to open GM Tool. (:
    I assume that 0xDC is the opcode for v0.83?

  9. #9
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: OpenUI Packet.

    Yes, This is for v83. GM Tool is that thing Nexon uses to ban/ etc? I saw it someday at the wz. LOL @ 1D.

  10. #10
    while(true) spam(); kevintjuh93 is offline
    MemberRank
    Jun 2008 Join Date
    The NetherlandsLocation
    4,119Posts

    Re: OpenUI Packet.

    Quote Originally Posted by flav View Post
    Maybe this can be used to open GM Tool. (:
    I assume that 0xDC is the opcode for v0.83?
    Yes it is, LOCK_UI - 1.

  11. #11
    Account Upgraded | Title Enabled! jadeling is offline
    MemberRank
    Jul 2008 Join Date
    706Posts

    Re: [v83] OpenUI Packet.

    What I've got for Msea.
    Code:
    	// 00 = inventory
    	// 01 = equipped
    	// 02 = stats
    	// 03 = skill
    	// 05 = keyboard
    	// 06 = quest
    	// 09 = monster book
    	// 0A = char info
    	// 0B = bbs
    	// 12 = monster carnival pts UI
    	// 16 = party search
    	// 17 = item maker
    	// 1A = My Ranking
    	// 1B = Family
    	// 1C = Family Pedigree
    	// 1D = GM Story board
    	// 1F = Medal window
    	// 20 = maple event ?
    	// 21 = evan skill window but with current skill

  12. #12
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: [v83] OpenUI Packet.

    Quote Originally Posted by jadeling View Post
    What I've got for Msea.
    Code:
    	// 00 = inventory
    	// 01 = equipped
    	// 02 = stats
    	// 03 = skill
    	// 05 = keyboard
    	// 06 = quest
    	// 09 = monster book
    	// 0A = char info
    	// 0B = bbs
    	// 12 = monster carnival pts UI
    	// 16 = party search
    	// 17 = item maker
    	// 1A = My Ranking
    	// 1B = Family
    	// 1C = Family Pedigree
    	// 1D = GM Story board
    	// 1F = Medal window
    	// 20 = maple event ?
    	// 21 = evan skill window but with current skill
    Yea. 0A is the character info. Probably the character's byte after this (Reecoreded when the cahr skills, etc).

    We gotta find a way to edit the address for the Maple Browser ^_^.

  13. #13
    Account Upgraded | Title Enabled! flav is offline
    MemberRank
    Jul 2008 Join Date
    655Posts

    Re: OpenUI Packet.

    Quote Originally Posted by Fraysa View Post
    Yes, This is for v83. GM Tool is that thing Nexon uses to ban/ etc? I saw it someday at the wz. LOL @ 1D.
    UI.wz > UIWindow.img > Admin > Block

  14. #14
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: [v83] OpenUI Packet.

    Oh I see. I'm trying to find this.. Btw, 0B is the Guild BBS.

  15. #15
    Account Upgraded | Title Enabled! redeemer34 is offline
    MemberRank
    Aug 2008 Join Date
    335Posts

    Re: [v83] OpenUI Packet.

    This looks like fun. :D



Page 1 of 2 12 LastLast

Advertisement