TheOneisBack
Junior Member
- Dec 22, 2011
- 112
- 11
Hi all,
I'm using Diabolic Traffic Bot to send traffic to a website.
I'm using one of the pre installed scripts that came with the software because I literally have no scripting knowledge. The script is called "simple_visit". For those who are not familiar with Diabolic Traffic Bot, I will post the code below.
I was wondering if someone who knows how to code could please modify the script above so that once the thread opens and the website opens, there will be a little more activity happening on the URL (example, auto scrolling). There is an auto scrolling command on the Diabolic wiki, but like I said, I don't know how to implement it because I don't have any scripting knowledge.
Basically I just want more activity happening on the URL when it loads, rather than it just opening and closing after 2 minutes.
Thanks in advance!
I'm using Diabolic Traffic Bot to send traffic to a website.
I'm using one of the pre installed scripts that came with the software because I literally have no scripting knowledge. The script is called "simple_visit". For those who are not familiar with Diabolic Traffic Bot, I will post the code below.
Code:
//DESCRIPTION: Visit a website or url
//TAB1: URL's
//TEXT1: Insert here all the url's you want to visit (one per line)
//TAB2: Referers (Optional)
//TEXT2: Insert here all the referer url's you want to use (one per line)
string url = GetRandomLine(Tab[1]);
string referer = GetRandomLine(Tab[2]);
if(referer==""){
Navigate(url);
} else {
Navigate(referer);
Browser.ExecuteScript("window.location.href = \""+url+"\";");
}
return Browser.Url;
I was wondering if someone who knows how to code could please modify the script above so that once the thread opens and the website opens, there will be a little more activity happening on the URL (example, auto scrolling). There is an auto scrolling command on the Diabolic wiki, but like I said, I don't know how to implement it because I don't have any scripting knowledge.
Basically I just want more activity happening on the URL when it loads, rather than it just opening and closing after 2 minutes.
Thanks in advance!