![]() |
|
#5
|
|||
|
|||
|
This allows the server to write chat messages:
Code:
string msg = "Hello World!";
if (GamePlay is GameDef)
{
(GamePlay as GameDef).gameInterface.CmdExec("chat " + msg);
}
|
|
|