Difference between revisions of "TGame.OnJoin"

From Soldat Community Wiki
Jump to: navigation, search
m
m (Example)
 
Line 28: Line 28:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
[[Category:TGame]]
+
[[Category:TGame]][[Category:Events]]

Latest revision as of 14:27, 26 July 2013

property OnJoin
 Access mode: RW
 Event handler type: TOnJoinGameEvent
 Event handler declaration: procedure (Player: TActivePlayer; Team: TTeam);

Description

Event property called when a player joins the server.

Example

 procedure SpecOnJoin(Player: TActivePlayer; Team: TTeam);
 begin
   Player.Team := 5;
 end;

 // ...

 begin
   // assign OnJoin handler
   Game.OnJoin := @SpecOnJoin;

   // ...

   // unassign
   Game.OnJoin := nil;
 end;