Inherited by Terraria.ModLoader.ChatCommandCaller, Terraria.ModLoader.ConsoleCommandCaller, and Terraria.ModLoader.PlayerCommandCaller.
|
void | Reply (string text, Color color=default(Color)) |
| Use this to repond to the Player that invoked this command. This method handles writing to the console, writing to chat, or sending messages over the network for you depending on the CommandType used. Avoid using Main.NewText, Console.WriteLine, or NetMessage.SendChatMessageToClient directly because the logic would change depending on CommandType. More...
|
|
|
CommandType | CommandType [get] |
|
Player | Player [get] |
| The Player object corresponding to the Player that invoked this command. Use this when the Player is needed. Don't use Main.LocalPlayer because that would be incorrect for various CommandTypes.
|
|
◆ Reply()
void Terraria.ModLoader.CommandCaller.Reply |
( |
string |
text, |
|
|
Color |
color = default(Color) |
|
) |
| |
Use this to repond to the Player that invoked this command. This method handles writing to the console, writing to chat, or sending messages over the network for you depending on the CommandType used. Avoid using Main.NewText, Console.WriteLine, or NetMessage.SendChatMessageToClient directly because the logic would change depending on CommandType.
- Parameters
-