mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
19 lines
618 B
C#
19 lines
618 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace MinecraftClient.Commands
|
|||
|
|
{
|
|||
|
|
class Status : Command
|
|||
|
|
{
|
|||
|
|
public override string CMDName { get { return "status"; } }
|
|||
|
|
public override string CMDDesc { get { return "status: Display Health and Food saturation."; } }
|
|||
|
|
|
|||
|
|
public override string Run(McTcpClient handler, string command, Dictionary<string, object> localVars)
|
|||
|
|
{
|
|||
|
|
return "Health: " + handler.GetHealth() + "\n[MCC] Saturation: " + handler.GetSaturation(); // any good ways to print multiple lines?
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|