procedure OnPlayerSpeak(ID: Byte; Text: String);
begin
// Help
if Text = '!commands' then begin
WriteConsole(ID, 'Commands:', RGB(255, 255, 255));
WriteConsole(ID, '!alpha', RGB(255, 255, 255));
WriteConsole(ID, '!bravo', RGB(255, 255, 255));
end;
// Commands
if Text = '!alpha' then Command('/setteam1 ' + IntToStr(ID));
if Text = '!bravo' then Command('/setteam2 ' + IntToStr(ID));
end;