Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

v83 VEGA'S SPELL packet

Newbie Spellweaver
Joined
Apr 7, 2009
Messages
54
Reaction score
3
v83 VEGA'S SPELL

Unfinished source

cash item 5610000

SendPacketOpcode
Code:
VEGA_SCROLL(0x166)


MaplePacketCreator.java

Code:
    public static MaplePacket sendVegaScroll(int op) {
        MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter(3);
        mplew.writeHandler(SendPacketOpcode.VEGA_SCROLL);
        mplew.write(op);
        return mplew.getPacket();
    }

This made the stay the :O:
 
Isn't this already in all v83 sources?

If so, you're just like the others, you didn't do the handling in UseCashItemHandler.
 
This is as incomplete I suppose. I haven't seen any public source so far, but, this doesn't have the handler nor where the "op" comes from nor... anything. If this is what is missing in others sources.. it's just way too insignificant to believe.
 
Back