26 lines
1.0 KiB
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.commands;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.rooms.RoomChatMessageBubbles;
2019-05-26 21:14:53 +03:00
public class ArcturusCommand extends Command {
public ArcturusCommand() {
super(null, new String[]{"arcturus", "emulator"});
2018-07-06 13:30:00 +00:00
}
2019-05-26 21:14:53 +03:00
2018-07-06 13:30:00 +00:00
@Override
2019-05-26 21:14:53 +03:00
public boolean handle(GameClient gameClient, String[] params) throws Exception {
if (gameClient.getHabbo().getHabboInfo().getCurrentRoom() != null) {
2018-07-06 13:30:00 +00:00
gameClient.getHabbo().whisper("This hotel is powered by Arcturus Emulator! \r" +
2019-05-26 21:14:53 +03:00
"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!"
2018-07-06 13:30:00 +00:00
, RoomChatMessageBubbles.ALERT);
}
return true;
}
}