SCAR Code:
procedure Antiban;
begin
if not LoggedIn then Exit;
case Random(13) of
0: begin
case Random(7) of
0: HoverSkill('Ranged', False);
1: HoverSkill('Fletching', False);
2: HoverSkill('Attack', False);
3: HoverSkill('Crafting', False);
4: HoverSkill('Smithing', False);
5: HoverSkill('Summoning', False);
6: HoverSkill('Slayer', False);
end;
writeln('Preformed Antiban "HoverSkill". ')
end;
1: begin
GameTab(3 + Random(8));
wait(1000 + random(800));
GameTab(4);
writeln('Preformed Antiban "GameTab swap". ')
end;
2: begin
BoredHuman;
writeln('Preformed Antiban "Bored Human". ')
end
3: begin
MessageFriendEx(Friend[i], 'Hey nub.');
writeln('Preformed Antiban "Msg Friend". ')
end
4:begin
DoEmote(Random(36));
writeln('Preformed Antiban "Random Emote". ')
end;
end;
end;
idk if i did anything right..
SCAR Code:
MessageFriendEx(Friend[i], 'Hey nub.');
for that.. i was thinking int he declare player or whatnot.. you can put the friends name.. idk so that all your players aren't msg'ing the same person. maybe do the same thing for the msg, might look a little suspicious having all your guys saying "hey nub".
Any suggestions or anything?