Got to XAntiBan and Change this:
SCAR Code:
procedure DontBanMe(mins: Integer);
var
DBanMe: Integer;
begin
if ((TimeFromMark(PickUpMouseMark) / 1000) / 60 >= mins) then
DBanMe := Random(12); (*1 over so it will do nothing sometimes*)
case DBanMe of
0: RandomRClickEvery(2 + Random(13));
1: HoverSkill('random', False);
2: RotateEvery(20 + Random(10));
3: LeaveScreenEvery(5 + Random(5));
4: HoverEvery(15 + Random(5), 'random');
5: PickUpMouse;
6: BoredEvery(9 + Random(24));
7: DragItem(1, 1 + Random(18));
8: GameTab(1 + Random(12));
9: DoEmote(1 + Random(20));
10: PolyGlotTalk;
end;
end;
To this:
SCAR Code:
procedure DontBanMe(mins: Integer);
var
DBanMe: Integer;
begin
if ((TimeFromMark(PickUpMouseMark) / 1000) / 60 >= mins) then
DBanMe := Random(11); (*1 over so it will do nothing sometimes*)
case DBanMe of // changed 12 to 11
0: RandomRClickEvery(2 + Random(13));
1: HoverSkill('random', False);
2: RotateEvery(20 + Random(10));
3: LeaveScreenEvery(5 + Random(5));
4: HoverEvery(15 + Random(5), 'random');
5: PickUpMouse;
6: BoredEvery(9 + Random(24));
7: DragItem(1, 1 + Random(18));
8: GameTab(1 + Random(12));
9: DoEmote(1 + Random(20));
end; //Took out PolyGlotTalk
end;
PolyGlotTalk isn't in the script so just remove it and save 
~Stupedspam