SCAR Code:{.include SRL\SRL.scar}
Procedure AntiNoob;
begin
if(GetCombatLevel < 20)then logout;
begin
ActivateClient;
wait(1000+random(100));
AntiNoob;
end.
I though if this last night while lying in bed, but it was a whole lot more complex than what it needed to be. you can set the 20 in if(GetCombatLevel < 20) to whatever you want the level requirement to be. I have my own way to somewhat hide this within the script, you can make your own. Also, I'd recommend calling it something else other than AntiNoob; for is the noob using the script is determined enough they could probably find the procedure by what the title of the procedure is.

