Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ListPlayersCommand.cs
Go to the documentation of this file.
1using System.Linq;
4
6
7[ChatCommand("Playing")]
9{
10 private static readonly Color RESPONSE_COLOR = new Color(255, 240, 20);
11
12 public void ProcessIncomingMessage(string text, byte clientId)
13 {
15 where player.active
16 select player.name)), RESPONSE_COLOR, clientId);
17 }
18
20 {
21 }
22}
static void SendChatMessageToClient(NetworkText text, Color color, int playerId)
Definition ChatHelper.cs:28
void ProcessOutgoingMessage(ChatMessage message)
void ProcessIncomingMessage(string text, byte clientId)
static NetworkText FromLiteral(string text)
static Player[] player
Definition Main.cs:1803