mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 09:22:36 +01:00
38 lines
1.3 KiB
Java
38 lines
1.3 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.rooms.Room;
|
|
import com.eu.habbo.habbohotel.rooms.RoomChatMessageBubbles;
|
|
import com.eu.habbo.messages.outgoing.modtool.ModToolIssueHandledComposer;
|
|
|
|
public class RoomAlertCommand extends Command {
|
|
public RoomAlertCommand() {
|
|
super("cmd_roomalert", Emulator.getTexts().getValue("commands.keys.cmd_roomalert").split(";"));
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(GameClient gameClient, String[] params) throws Exception {
|
|
StringBuilder message = new StringBuilder();
|
|
|
|
if (params.length >= 2) {
|
|
for (int i = 1; i < params.length; i++) {
|
|
message.append(params[i]).append(" ");
|
|
}
|
|
|
|
if (message.length() == 0) {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_roomalert.empty"), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
|
|
Room room = gameClient.getHabbo().getHabboInfo().getCurrentRoom();
|
|
|
|
if (room != null) {
|
|
room.sendComposer(new ModToolIssueHandledComposer(message.toString()).compose());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
} |