Ok, so I am trying to make a bot for Scour.com.
Only problem is, when it opens the webpage to search, it makes my firefox the active window :<
Is there some kind of internal-SCAR browser I can assign it to so I can run the bot while I use the PC without having to alt + tab every 30 seconds?
Here's my code:
SCAR Code:
program Scour;
var rando:string;
var stringz:tstringarray;
begin // If you have a space in one of your strings, make sure you replace it with a +.
Stringz := ['youtube','mibbit','srl-forums','gmail','free+webmail','porn','porno','torrents','msn','stickam','4chan','robert','justin','steam','cs:s','l4d','counterstrike+source','left4dead','google','scour','scripting','programming'];
repeat
wait(300+random(3000));
rando := Stringz[random(high(Stringz))]+' '+inttostr(random(120));
openwebpage('http://scour.com/search/web/'+rando);
until(false);
end.