Thread: EventChat
View Single Post
  #5  
Old 10-07-2012, 11:00 AM
41Sqn_Banks 41Sqn_Banks is offline
Approved Member
 
Join Date: Oct 2007
Posts: 644
Default

This allows the server to write chat messages:
Code:
string msg = "Hello World!";
if (GamePlay is GameDef)
{
    (GamePlay as GameDef).gameInterface.CmdExec("chat " + msg);
}
Is there a way to send a chat message only to a specific player?
Reply With Quote