0 Members and 1 Guest are viewing this topic.
//UNTESTED!procedure OnJoinTeam(ID, Team: byte);begin if (GetPlayerStat(ID,'team')) = 2 then begin KickPlayer(ID);end;
procedure OnJoinTeam(ID, Team: byte);begin if (GetPlayerStat(ID, 'Team') = 2) and (GetPlayerStat(ID, 'Human') = True) then Command('/setteam1 '+IntToStr(ID));end;