Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Opening website with packet

Newbie Spellweaver
Joined
Aug 28, 2015
Messages
95
Reaction score
47
Hello people, while I researched some in IDA I found cool packet that open website page, this feature can help you with voting, open your server TOS and etc..

* The header is for v160 so idk about another versions.

OPEN_WEBSITE(0x2A7)

strcture:

Code:
public static final byte[] openWebsite(String url) {
     MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
 
     mplew.writeShort(SendPacketOpcode.OPEN_WEBSITE.getValue());
     mplew.write(1); // 0 will send "No current broadcasts." pop up message.
     mplew.writeMapleAsciiString(url);
     return mplew.getPacket();
   }

Have fun :)
 
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Nice find. As for lower versions, I never tried it myself but I remember back then that you could use a ToS packet (or guest login?) to open URLs. That or people just put google.com there and made packets like that for the lulz..
 
Newbie Spellweaver
Joined
Aug 28, 2015
Messages
95
Reaction score
47
BTW if someone didn't understand this packet will open the website in your browser it doesn't like GM board.
 
Junior Spellweaver
Joined
Dec 22, 2013
Messages
105
Reaction score
15
Mind telling us what opcodes are around this one? So we can guess it for other versions
 
Back
Top