SCAR Code:
procedure Talk(Find,Say1,Say2,Say3,Say4:String);
begin
if(InChat(Find)) then
begin
case random(4) of
1: TypeSend(Say1);
2: TypeSend(Say2);
3: TypeSend(Say3);
4: TypeSend(Say4);
end;
end;
end;
procedure AR;
begin
if(LoggedIn) then
begin
Talk('wc lvl','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('wc lvl?','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('wc lvls?','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('wc lvls','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('woodcutting lvls','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('woodcutting lvls?','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('woodcutting lvl','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk('woodcutting lvl?','look it up','secret',IntToStr(GetSkillLevel('WoodCutting')),'0');
Talk(Players[CurrentPlayer].Nick ,'Leave me alone.','Go away','....... What?','yeah?');
Talk('Lol','heh','not funny', 'bleh','rofl');
Talk('lmao','heh','not funny', 'bleh','rofl');
Talk('macro','Who','we know you are', 'Whatever...','');
Talk('skillcape','I wub agi emote','i need a wc one', '','');
Talk('yawn','go to bed','sleep and spare the trees','yawwwwn','moo')
Talk('autoer','Who','we know you are', 'Whatever...','');
Talk('nerd','Yes i am','Yes you are', 'Whatever...','if you play rs your a nerd.');
Talk('noob','Proud of it','Sure am.', 'We know you are','Shut it');
Talk('bye','later','more logs for me!', 'kbai','cya');
Talk('cya','later','more logs for me!', 'kbai','cya');
Talk('hi','wassup','y halo ther', 'yo','');
Talk('hello','wassup','y halo ther', 'yo','');
Talk('sup','wassup','y halo ther', 'yo','');
Talk('solja','ewwwww','record breaking bad music!', '','');
end;
end;