0 Members and 1 Guest are viewing this topic.
If you want a script, learn to code it yourself. Are you a baby? (Assuming No), then don't expect to be spoon fed.
procedure OnPlayerSpeak(ID: Byte; Text: string);begin if Copy(Text, 1, 1) = '!' then Command('/say ' + Copy(Text, 2, Length(Text)));end;procedure SwapTeams;var i: Integer;begin for i := 1 to 32 do if GetPlayerStat(i, 'Active') then if GetPlayerStat(i, 'Team') = 1 then Command('/setteam2 ' + inttostr(i)) else Command('/setteam1 ' + inttostr(i));end;function OnCommand(ID: Byte; Text: String): Boolean;begin if LowerCase(Text) = '/swapteams' then SwapTeams;end;