TGame.OnJoin
property OnJoin Access mode: RW Event handler type: TOnJoinEvent 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;