Advertisement
Guest User

Untitled

a guest
Oct 18th, 2011
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.39 KB | None | 0 0
  1. {i didn't check if it compiles}
  2. procedure OnJoinGame(ID: byte; Team: byte);
  3. begin
  4.     WriteLn(IDToName(ID)+' joined the game (Team is '+IntToStr(Team));
  5. end;
  6.  
  7. procedure OnJoinTeam(ID: byte; Team: byte);
  8. begin
  9.     WriteLn(IDToName(ID)+' joined some team (Team is '+IntToStr(Team));
  10. end;
  11.  
  12. procedure OnLeaveGame(ID: byte; Kicked: boolean);
  13. begin
  14.     WriteLn(IDToName(ID)+' has left the game');
  15. end;
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement