• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Yellow text popup in v83 or below

Junior Spellweaver
Joined
Jun 29, 2009
Messages
139
Reaction score
12
Is there a packet to make a message in this style appear:

f0f48040bf3bdca1d392ad4775d23f4e - Yellow text popup in v83 or below - RaGEZONE Forums


in versions 83 or under? The yellow text with a custom message.
 
Junior Spellweaver
Joined
Jun 29, 2009
Messages
139
Reaction score
12
which part of the packet is that? Should it be something like:

PHP:
	public static byte[] yellowTip(String tip){
		MaplePacketWriter out = new MaplePacketWriter();
		out.writeShort(SendOpcode.SET_WEEK_EVENT_MESSAGE.getValue());
		out.write(0xFF);
		out.writeMapleAsciiString(tip);
		out.write(new byte[] {0x6C,0x00, 0x01, 0x00, 0x31});
		
		return out.getPacket();
	}

?
 
Upvote 0
Newbie Spellweaver
Joined
Jun 19, 2016
Messages
40
Reaction score
0
which part of the packet is that? Should it be something like:

PHP:
    public static byte[] yellowTip(String tip){
        MaplePacketWriter out = new MaplePacketWriter();
        out.writeShort(SendOpcode.SET_WEEK_EVENT_MESSAGE.getValue());
        out.write(0xFF);
        out.writeMapleAsciiString(tip);
        out.write(new byte[] {0x6C,0x00, 0x01, 0x00, 0x31});
        
        return out.getPacket();
    }

?

6C 00 is header
01 00 31 is 1 ascii
try send to client
 
Upvote 0
Junior Spellweaver
Joined
Jun 29, 2009
Messages
139
Reaction score
12
I used the following code and this packet doesnt cause anything to happen:
PHP:
	public static byte[] yellowPopupTip(String tip){
		MaplePacketWriter out = new MaplePacketWriter();
		out.writeShort(0x6C);
		out.writeMapleAsciiString(tip);
		
		return out.getPacket();
	}
 
Upvote 0
Newbie Spellweaver
Joined
Jun 19, 2016
Messages
40
Reaction score
0
I used the following code and this packet doesnt cause anything to happen:
PHP:
    public static byte[] yellowPopupTip(String tip){
        MaplePacketWriter out = new MaplePacketWriter();
        out.writeShort(0x6C);
        out.writeMapleAsciiString(tip);
        
        return out.getPacket();
    }

try 0x7A
 
Upvote 0
Back
Top