Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionBadgeDisplay.java

84 lines
2.3 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.items.interactions;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.rooms.Room;
import com.eu.habbo.habbohotel.rooms.RoomUnit;
import com.eu.habbo.habbohotel.users.HabboItem;
import com.eu.habbo.messages.ServerMessage;
import java.sql.ResultSet;
import java.sql.SQLException;
public class InteractionBadgeDisplay extends HabboItem
{
public InteractionBadgeDisplay(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem);
}
public InteractionBadgeDisplay(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells);
}
@Override
public void serializeExtradata(ServerMessage serverMessage)
{
serverMessage.appendInt(2 + (this.isLimited() ? 256 : 0));
serverMessage.appendInt(4);
serverMessage.appendString("0");
String[] data = this.getExtradata().split((char) 9 + "");
if(data.length == 3)
{
serverMessage.appendString(data[2]);
serverMessage.appendString(data[1]);
serverMessage.appendString(data[0]);
}
else
{
serverMessage.appendString(this.getExtradata());
serverMessage.appendString("Unknown User");
serverMessage.appendString("Unknown Date");
}
super.serializeExtradata(serverMessage);
}
@Override
public boolean canWalkOn(RoomUnit roomUnit, Room room, Object[] objects)
{
return true;
}
@Override
public boolean isWalkable()
{
return false;
}
@Override
public void onClick(GameClient client, Room room, Object[] objects) throws Exception
{
super.onClick(client, room, objects);
}
@Override
public void onWalk(RoomUnit roomUnit, Room room, Object[] objects) throws Exception
{
}
@Override
public void onWalkOn(RoomUnit roomUnit, Room room, Object[] objects) throws Exception
{
super.onWalkOn(roomUnit, room, objects);
}
@Override
public void onWalkOff(RoomUnit roomUnit, Room room, Object[] objects) throws Exception
{
super.onWalkOff(roomUnit, room, objects);
}
}