Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/effects/WiredEffectGiveEffect.java

43 lines
1.1 KiB
Java
Raw Normal View History

2019-03-18 02:22:00 +01:00
package com.eu.habbo.habbohotel.items.interactions.wired.effects;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.rooms.Room;
import com.eu.habbo.habbohotel.rooms.RoomUnit;
import java.sql.ResultSet;
import java.sql.SQLException;
public class WiredEffectGiveEffect extends WiredEffectWhisper
{
public WiredEffectGiveEffect(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem);
}
public WiredEffectGiveEffect(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells);
}
@Override
public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff)
{
int effectId;
try
{
effectId = Integer.valueOf(this.message);
} catch (Exception e)
{
return false;
}
if (effectId >= 0)
{
room.giveEffect(roomUnit, effectId, Integer.MAX_VALUE);
return true;
}
return false;
}
}