Difference between revisions of "TTeam.OnJoin"

From Soldat Community Wiki
Jump to: navigation, search
(new page)
 
m (Example)
Line 23: Line 23:
 
  begin
 
  begin
 
   // assign OnJoinTean handler
 
   // assign OnJoinTean handler
   Game.Team[1].OnJoin := @MyOnJoinTeamHandler;
+
   Game.Teams[1].OnJoin := @MyOnJoinTeamHandler;
  
 
   // ...
 
   // ...
  
 
   // unassign
 
   // unassign
   Game.Team[1].OnJoin := nil;
+
   Game.Teams[1].OnJoin := nil;
 
  end;
 
  end;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:TTeam]][[Category:Events]]
 
[[Category:TTeam]][[Category:Events]]

Revision as of 14:28, 26 July 2013

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

Description

Event property called when any player leaves the server or gets kicked/banned.

Example

 procedure MyOnJoinTeamHandler(Player: TActivePlayer; Team: TTeam);
 begin
   if Team.ID = 2 then
   begin
     Player.Team := 1;
     Player.Tell('Sorry, you can''t join Bravo Team');
   end;
 end;

 // ...

 begin
   // assign OnJoinTean handler
   Game.Teams[1].OnJoin := @MyOnJoinTeamHandler;

   // ...

   // unassign
   Game.Teams[1].OnJoin := nil;
 end;