Difference between revisions of "TGame.OnLeave"

From Soldat Community Wiki
Jump to: navigation, search
m (Example)
 
(3 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
Event property called when any player leaves the server or gets kicked/banned.
 
Event property called when any player leaves the server or gets kicked/banned.
 
<br>
 
<br>
 +
{{note|Inside this event handler, player count is as if the player was still in game and all Player.Active is TRUE}}
  
 
==Example==
 
==Example==
Line 15: Line 16:
 
     WriteLn(Player.Name + ' has been kicked!')
 
     WriteLn(Player.Name + ' has been kicked!')
 
   else
 
   else
     WriteLn(Player.Name + ' has left the game in peace')
+
     WriteLn(Player.Name + ' has left the game in peace');
 
  end;
 
  end;
  

Latest revision as of 12:33, 10 September 2016

property OnLeave
 Access mode: RW
 Event handler type: TOnLeaveGameEvent
 Event handler declaration: procedure (Player: TActivePlayer; Kicked: Boolean);

Description

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

Note: Inside this event handler, player count is as if the player was still in game and all Player.Active is TRUE

Example

 procedure MyOnLeaveHandler(Player: TActivePlayer; Kicked: Boolean);
 begin
   if Kicked then
     WriteLn(Player.Name + ' has been kicked!')
   else
     WriteLn(Player.Name + ' has left the game in peace');
 end;

 // ...

 begin
   // assign OnLeave handler
   Game.OnLeave := @MyOnLeaveHandler;

   // ...

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