Difference between revisions of "OnJoinTeam"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with "===From the Scripting Manual=== ''procedure OnJoinTeam(ID, Team: byte);'' '''Parameter Info:''' ID (Byte): ID of the player. Team (Byte): Team the player has requ...")
 
 
Line 9: Line 9:
 
   This procedure will be called every time a player joins a team.
 
   This procedure will be called every time a player joins a team.
  
==External Links==
+
==See also==
* [http://enesce.com/help/index.html?Events/OnCommand.html Scripting Manual page for OnCommand]
+
* [[OnJoinGame]]
  
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]

Latest revision as of 05:55, 19 March 2013

From the Scripting Manual

 procedure OnJoinTeam(ID, Team: byte);
 
 Parameter Info:
  ID (Byte): ID of the player.
  Team (Byte): Team the player has requested to join.
 
 Description:
  This procedure will be called every time a player joins a team.

See also