Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionPyramid.java
2018-10-06 22:28:00 +00:00

61 lines
1.6 KiB
Java

package com.eu.habbo.habbohotel.items.interactions;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.rooms.Room;
import java.sql.ResultSet;
import java.sql.SQLException;
public class InteractionPyramid extends InteractionGate
{
private int nextChange;
public InteractionPyramid(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem);
}
public InteractionPyramid(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells);
}
public void change(Room room)
{
if(!(this.getExtradata().equals("0") || this.getExtradata().equals("1")))
this.setExtradata("0");
if(room != null)
{
if(room.getHabbosAt(this.getX(), this.getY()).isEmpty())
{
int state = Integer.valueOf(this.getExtradata());
state = Math.abs(state - 1);
this.setExtradata(state + "");
room.updateItemState(this);
this.nextChange = Emulator.getIntUnixTimestamp() + 1 + (Emulator.getRandom().nextInt(Emulator.getConfig().getInt("pyramids.max.delay")));
}
}
}
public int getNextChange()
{
return this.nextChange;
}
@Override
public void onClick(GameClient client, Room room, Object[] objects) throws Exception
{
}
@Override
public boolean isUsable()
{
return false;
}
}