Difference between revisions of "OnJoinGame"

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

Latest revision as of 05:54, 19 March 2013

From the Scripting Manual

 procedure OnJoinGame(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 the game.
  (event is called when xxx joining game(xx.xx.xx.xx:xx) occurs in console)


See also