Arcturus-Community/src/main/java/com/eu/habbo/messages/rcon/ExecuteCommand.java

47 lines
1.0 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.messages.rcon;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.commands.CommandHandler;
import com.eu.habbo.habbohotel.users.Habbo;
import com.google.gson.Gson;
public class ExecuteCommand extends RCONMessage<ExecuteCommand.JSONExecuteCommand>
{
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
public ExecuteCommand()
{
super(JSONExecuteCommand.class);
}
@Override
public void handle(Gson gson, JSONExecuteCommand json)
{
try
{
Habbo habbo = Emulator.getGameServer().getGameClientManager().getHabbo(json.user_id);
if (habbo == null)
{
status = HABBO_NOT_FOUND;
return;
}
CommandHandler.handleCommand(habbo.getClient(), json.command);
}
catch (Exception e)
{
status = STATUS_ERROR;
Emulator.getLogging().logErrorLine(e);
}
}
2018-10-07 00:28:00 +02:00
public static class JSONExecuteCommand
2018-07-06 15:30:00 +02:00
{
2018-10-07 00:28:00 +02:00
2018-07-06 15:30:00 +02:00
public int user_id;
2018-10-07 00:28:00 +02:00
2018-07-06 15:30:00 +02:00
public String command;
}
}