package consolecommands; import com.aionemu.gameserver.model.gameobjects.player.Player; import com.aionemu.gameserver.utils.PacketSendUtility; import com.aionemu.gameserver.utils.chathandlers.ConsoleCommand; /** * @author ginho1 */ public class Partyrecall extends ConsoleCommand { public Partyrecall() { super("partyrecall"); } @Override public void execute(Player admin, String... params) { PacketSendUtility.sendMessage(admin, "Command not implemented."); return; } }