Difference between revisions of "OnAdminMessage"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with "===From the Scripting Manual=== ''procedure OnAdminMessage(IP, Msg: string);'' '''Parameter Info:''' IP (String): IP Address of the admin who sent the command. Ms...")
 
 
Line 10: Line 10:
 
   Note: REFRESH, SHUTDOWN and REFRESHX will not be called with this function.
 
   Note: REFRESH, SHUTDOWN and REFRESHX will not be called with this function.
  
==External Links==
+
==See also==
* [http://enesce.com/help/index.html?Events/OnAdminMessage.html Scripting Manual page for OnAdminMessage]
+
* [[OnAdminConnect]]
 +
* [[OnAdminDisconnect]]
 +
* [[OnPlayerSpeak]]
  
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]

Latest revision as of 04:58, 18 March 2013

From the Scripting Manual

 procedure OnAdminMessage(IP, Msg: string);
 
 Parameter Info:
  IP (String): IP Address of the admin who sent the command.
  Msg (String): Command received by the admin.
 
 Description:
  This procedure will be called every time a TCP Admin sends data to the Server.
  Note: REFRESH, SHUTDOWN and REFRESHX will not be called with this function.

See also