You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-20 15:36:17 +00:00
🆙 Fixed some missing packets
This commit is contained in:
@@ -25,6 +25,9 @@ public class RoomUserPetComposer extends MessageComposer {
|
|||||||
this.response.appendInt(this.habbo.getHabboInfo().getId());
|
this.response.appendInt(this.habbo.getHabboInfo().getId());
|
||||||
this.response.appendString(this.habbo.getHabboInfo().getUsername());
|
this.response.appendString(this.habbo.getHabboInfo().getUsername());
|
||||||
this.response.appendString("");
|
this.response.appendString("");
|
||||||
|
this.response.appendInt(0);
|
||||||
|
this.response.appendInt(0);
|
||||||
|
this.response.appendInt(0);
|
||||||
this.response.appendString(this.petType + " " + this.race + " " + this.color + " 2 2 -1 0 3 -1 0");
|
this.response.appendString(this.petType + " " + this.race + " " + this.color + " 2 2 -1 0 3 -1 0");
|
||||||
this.response.appendInt(this.habbo.getRoomUnit().getId());
|
this.response.appendInt(this.habbo.getRoomUnit().getId());
|
||||||
this.response.appendInt(this.habbo.getRoomUnit().getX());
|
this.response.appendInt(this.habbo.getRoomUnit().getX());
|
||||||
|
|||||||
+3
@@ -20,6 +20,9 @@ public class RoomUserDataComposer extends MessageComposer {
|
|||||||
this.response.appendString(this.habbo.getHabboInfo().getGender().name() + "");
|
this.response.appendString(this.habbo.getHabboInfo().getGender().name() + "");
|
||||||
this.response.appendString(this.habbo.getHabboInfo().getMotto());
|
this.response.appendString(this.habbo.getHabboInfo().getMotto());
|
||||||
this.response.appendInt(this.habbo.getHabboStats().getAchievementScore());
|
this.response.appendInt(this.habbo.getHabboStats().getAchievementScore());
|
||||||
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandBg());
|
||||||
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandStand());
|
||||||
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandOverlay());
|
||||||
return this.response;
|
return this.response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -40,10 +40,10 @@ public class RoomUsersComposer extends MessageComposer {
|
|||||||
this.response.appendInt(this.habbo.getHabboInfo().getId());
|
this.response.appendInt(this.habbo.getHabboInfo().getId());
|
||||||
this.response.appendString(this.habbo.getHabboInfo().getUsername());
|
this.response.appendString(this.habbo.getHabboInfo().getUsername());
|
||||||
this.response.appendString(this.habbo.getHabboInfo().getMotto());
|
this.response.appendString(this.habbo.getHabboInfo().getMotto());
|
||||||
this.response.appendString(this.habbo.getHabboInfo().getLook());
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandBg());
|
||||||
this.response.appendInt(this.habbo.getHabboInfo().getInfostandBg());
|
|
||||||
this.response.appendInt(this.habbo.getHabboInfo().getInfostandStand());
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandStand());
|
||||||
this.response.appendInt(this.habbo.getHabboInfo().getInfostandOverlay());
|
this.response.appendInt(this.habbo.getHabboInfo().getInfostandOverlay());
|
||||||
|
this.response.appendString(this.habbo.getHabboInfo().getLook());
|
||||||
this.response.appendInt(this.habbo.getRoomUnit().getId()); //Room Unit ID
|
this.response.appendInt(this.habbo.getRoomUnit().getId()); //Room Unit ID
|
||||||
this.response.appendInt(this.habbo.getRoomUnit().getX());
|
this.response.appendInt(this.habbo.getRoomUnit().getX());
|
||||||
this.response.appendInt(this.habbo.getRoomUnit().getY());
|
this.response.appendInt(this.habbo.getRoomUnit().getY());
|
||||||
|
|||||||
Reference in New Issue
Block a user