mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 17:32:39 +01:00
72 lines
3.0 KiB
Java
72 lines
3.0 KiB
Java
package com.eu.habbo.habbohotel.commands;
|
|
|
|
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.RoomChatMessageBubbles;
|
|
import com.eu.habbo.habbohotel.users.Habbo;
|
|
import com.eu.habbo.habbohotel.users.HabboItem;
|
|
import com.eu.habbo.messages.outgoing.inventory.InventoryRefreshComposer;
|
|
import com.eu.habbo.messages.outgoing.wired.WiredRewardAlertComposer;
|
|
|
|
public class RoomGiftCommand extends Command {
|
|
public RoomGiftCommand() {
|
|
super("cmd_roomgift", Emulator.getTexts().getValue("commands.keys.cmd_roomgift").split(";"));
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(final GameClient gameClient, String[] params) throws Exception {
|
|
if (params.length >= 2) {
|
|
int itemId;
|
|
|
|
try {
|
|
itemId = Integer.valueOf(params[1]);
|
|
} catch (Exception e) {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_a_number"), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
|
|
if (itemId <= 0) {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_a_number"), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
|
|
final Item baseItem = Emulator.getGameEnvironment().getItemManager().getItem(itemId);
|
|
|
|
if (baseItem == null) {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_found").replace("%itemid%", itemId + ""), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
|
|
StringBuilder message = new StringBuilder();
|
|
|
|
if (params.length > 2) {
|
|
for (int i = 2; i < params.length; i++) {
|
|
message.append(params[i]).append(" ");
|
|
}
|
|
}
|
|
|
|
final String finalMessage = message.toString();
|
|
|
|
for (Habbo habbo : gameClient.getHabbo().getHabboInfo().getCurrentRoom().getHabbos()) {
|
|
HabboItem item = Emulator.getGameEnvironment().getItemManager().createItem(0, baseItem, 0, 0, "");
|
|
|
|
Item giftItem = Emulator.getGameEnvironment().getItemManager().getItem((Integer) Emulator.getGameEnvironment().getCatalogManager().giftFurnis.values().toArray()[Emulator.getRandom().nextInt(Emulator.getGameEnvironment().getCatalogManager().giftFurnis.size())]);
|
|
|
|
String extraData = "1\t" + item.getId();
|
|
extraData += "\t0\t0\t0\t" + finalMessage + "\t0\t0";
|
|
|
|
Emulator.getGameEnvironment().getItemManager().createGift(habbo.getHabboInfo().getUsername(), giftItem, extraData, 0, 0);
|
|
|
|
habbo.getClient().sendResponse(new InventoryRefreshComposer());
|
|
|
|
habbo.getClient().sendResponse(new WiredRewardAlertComposer(WiredRewardAlertComposer.REWARD_RECEIVED_ITEM));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|