mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 09:22:36 +01:00
35 lines
1.4 KiB
Java
35 lines
1.4 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.RoomChatMessageBubbles;
|
|
|
|
public class SetMaxCommand extends Command {
|
|
public SetMaxCommand() {
|
|
super("cmd_setmax", Emulator.getTexts().getValue("commands.keys.cmd_setmax").split(";"));
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(GameClient gameClient, String[] params) throws Exception {
|
|
if (params.length >= 2) {
|
|
int max;
|
|
try {
|
|
max = Integer.valueOf(params[1]);
|
|
} catch (Exception e) {
|
|
return false;
|
|
}
|
|
|
|
if (max > 0 && max < 9999) {
|
|
gameClient.getHabbo().getHabboInfo().getCurrentRoom().setUsersMax(max);
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.success.cmd_setmax").replace("%value%", max + ""), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
} else {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_setmax.invalid_number"), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
} else {
|
|
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_setmax.forgot_number"), RoomChatMessageBubbles.ALERT);
|
|
return true;
|
|
}
|
|
}
|
|
} |