mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 17:32:39 +01:00
26 lines
1.0 KiB
Java
26 lines
1.0 KiB
Java
package com.eu.habbo.habbohotel.commands;
|
|
|
|
import com.eu.habbo.habbohotel.gameclients.GameClient;
|
|
import com.eu.habbo.habbohotel.rooms.RoomChatMessageBubbles;
|
|
|
|
public class ArcturusCommand extends Command {
|
|
public ArcturusCommand() {
|
|
super(null, new String[]{"arcturus", "emulator"});
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(GameClient gameClient, String[] params) throws Exception {
|
|
if (gameClient.getHabbo().getHabboInfo().getCurrentRoom() != null) {
|
|
gameClient.getHabbo().whisper("This hotel is powered by Arcturus Emulator! \r" +
|
|
"Cet hôtel est alimenté par Arcturus émulateur! \r" +
|
|
"Dit hotel draait op Arcturus Emulator! \r" +
|
|
"Este hotel está propulsado por Arcturus emulador! \r" +
|
|
"Hotellet drivs av Arcturus Emulator! \r" +
|
|
"Das Hotel gehört zu Arcturus Emulator betrieben!"
|
|
, RoomChatMessageBubbles.ALERT);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|