Custom Quest Progress v83?

Results 1 to 3 of 3
  1. #1
    Apprentice phutran97 is offline
    MemberRank
    Jul 2013 Join Date
    5Posts

    Custom Quest Progress v83?

    I have a question.
    How to do that ?
    Thank for your help :)


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

    Re: Custom Quest Progress v83?

    That's a packet that was used for the Explorer tutorial, should be in MoopleDEV as far as I know. Try to look for it there in MaplePacketCreator.

  3. #3
    Member Drum is offline
    MemberRank
    Jul 2013 Join Date
    80Posts

    Re: Custom Quest Progress v83?

    @oxysoft haha

    OT; Add this in MaplePacketCreator if you don't already have it:

    PHP Code:
    /**
         * Sends a player hint.
         * 
         * [MENTION=1333357818]param[/MENTION] hint
         *            The hint it's going to send.
         * [MENTION=1333357818]param[/MENTION] width
         *            How tall the box is going to be.
         * [MENTION=1333357818]param[/MENTION] height
         *            How long the box is going to be.
         * [MENTION=850422]return[/MENTION] The player hint packet.
         */
        
    public static byte[] sendHint(String hintint widthint height) {
            if (
    width 1) {
                
    width hint.length() * 10;
                if (
    width 40) {
                    
    width 40;
                }
            }
            if (
    height 5) {
                
    height 5;
            }
            final 
    MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
            
    mplew.writeShort(SendOpcode.PLAYER_HINT.getValue());
            
    mplew.writeMapleAsciiString(hint);
            
    mplew.writeShort(width);
            
    mplew.writeShort(height);
            
    mplew.write(1);
            return 
    mplew.getPacket();
        } 
    SendOpcode.PLAYER_HINT = 0xD6

    Go nuts.



Advertisement