ariantpq + correct use catch item
This commit is contained in:
@@ -4988,7 +4988,7 @@ public class MaplePacketCreator {
|
||||
|
||||
public static byte[] updateAriantPQRanking(String name, int score, boolean empty) {
|
||||
final MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
|
||||
mplew.writeShort(SendOpcode.ARIANT_SCORE.getValue());
|
||||
mplew.writeShort(SendOpcode.ARIANT_ARENA_USER_SCORE.getValue());
|
||||
mplew.write(empty ? 0 : 1);
|
||||
if (!empty) {
|
||||
mplew.writeMapleAsciiString(name);
|
||||
@@ -4996,6 +4996,12 @@ public class MaplePacketCreator {
|
||||
}
|
||||
return mplew.getPacket();
|
||||
}
|
||||
|
||||
public static byte[] showAriantScoreBoard() {
|
||||
MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
|
||||
mplew.writeShort(SendOpcode.ARIANT_ARENA_SHOW_RESULT.getValue());
|
||||
return mplew.getPacket();
|
||||
}
|
||||
|
||||
public static byte[] catchMessage(int message) { // not done, I guess
|
||||
final MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
|
||||
|
||||
Reference in New Issue
Block a user