Procedure OnJoinTeam(ID, Team: byte);
var i: byte;
begin
if (GetPlayerStat(ID,'Human') = true) then begin
for i := 1 to 32 do if (GetPlayerStat(i,'Active') = true) then if (GetPlayerStat(i,'HWID') = GetPlayerStat(ID,'HWID')) and (i<>ID) then begin
WriteConsole(ID,'Please stop buggs! You can not, go two accounts per server at a time.',$ff0033);
KickPlayer(ID);
end;
end;
end;
I hope that helped.