Make money with you...
 
Notifications
Clear all

Make money with your programs using my source

Page 1 / 4

Rage
Posts: 164
 Rage
Topic starter
(@Rage)
Estimable RivalGamer
Joined: 9 years ago

[WARNING="NEW VERSION!"]Here you can find the version of this tool [Click here][/WARNING]

Hello users of Gamerz.me I am Rage aka Ragemoddzz, I have been thinking about writing a script that auto runs through ads in the background of my programs so when users are using my tools I am getting paid and last night I decided to start it and today I have completed it !

The source works great, you can change all your links in one place on the source, the rest is copy and paste (tried to make it as user friendly as possible)

You can use import my source found HERE or follow the tutorial

Here is how it works...

Adf.ly Sign Up Link: Adf.ly Sign Up

______________________________________________________________________________

Step 1.) You will need a website that you can easily implement html into your site, the best thing to do is use Weebly as you can create a free blog or shop there but we are going to use it for a free subdomain from Weebly and you can create as many pages as you want and implement html to redirect ! So create an account on Weebly and create a site and create 50 pages

(Why 50 pages ? Well you will have 50 ads on your tool which users will run though while using it)

______________________________________________________________________________

Step 2.) You now need to add a redirect to each page, on Weebly there is a toolbox to the left which has something called "EMBED CODE"

Simply drag the html to each page and add the following code...


Each page will need a different link so you will need to create 50 links on Adf.ly
(Yes its a lot I know but its well worth it and I advise you change your adf.ly links every few days to increase revenue)

______________________________________________________________________________

Step 3.) Now you have your Weebly website and your Adf.ly account and all 50 links added to your site (if not make sure you do that!)

Now you need to add the following to your program...

Create another Form (For this example I will be using Form2 as my ad form)

Add the following to "private void Form1_Load(object sender, EventArgs e)"

Form2 fm2 = new Form2();
	fm2.Hide();

Should end up looking like...

private void Form1_Load(object sender, EventArgs e)
	{
	   Form2 fm2 = new Form2();
	   fm2.Hide();
	}

This will start up Form2 which will be containing all your ads, this is to prevent the user from experiencing lag from having the ads run in the background and the tool to stop responding out of nowhere

For those wondering why the code is "fm2.Hide();" and not "fm2.Show();" it is because we want users to not have to deal with any pop-ups or ads and having it hide makes it to where the users start viewing ads in the background with no pop-ups !

______________________________________________________________________________

Step 4.) Now we need to add a few things to Form2 so it runs through the ads

Form2 will need a webBrowser and 100 timers

(Simply copy one timer and hold "ctrl" and click "v" to paste your timers faster, and you can simply copy everything shown in this thead, timers code are seen in step 7)

Some of you may think thats a lot of timers, and that because it is but the code is written so it executes what is needed from the timer then kills the timer so it is no longer running and will only have 1 timer running at a time 😀

______________________________________________________________________________

Step 5.) Double click the Form so it opens up "private void Form2_Load(object sender, EventArgs e)"

Add the following...

webBrowser1.Navigate(Link1);
	timer1.Interval = timestart;
	timer1.Start();

Also scroll to the top of your code and add the following...

using System.Runtime.InteropServices;

______________________________________________________________________________

Step 6.) Under "public partial class Form2 : Form" (found on top on Form2.cs)

Add the following...

//Start Timer (15000+ Recommended)
	        public int timestart = 15000;
	
	        //Timer from Ad to Ad (10000+ Recommended)
	        public int timea2a = 10000;
	
	        //Add redirect links to each Link or add adf.ly links (works better with redirects as you can update them everyday if you want from your site)
	        public string Link1 = "http://moddedps4.com";
	        public string Link2 = "http://adf.ly/1IRqEw";
	        public string Link3 = "http://adf.ly/1IJFnA";
	        public string Link4 = "http://adf.ly/1HFBmQ";
	        public string Link5 = "";
	        public string Link6 = "";
	        public string Link7 = "";
	        public string Link8 = "";
	        public string Link9 = "";
	        public string Link10 = "";
	        public string Link11 = "";
	        public string Link12 = "";
	        public string Link13 = "";
	        public string Link14 = "";
	        public string Link15 = "";
	        public string Link16 = "";
	        public string Link17 = "";
	        public string Link18 = "";
	        public string Link19 = "";
	        public string Link20 = "";
	        public string Link21 = "";
	        public string Link22 = "";
	        public string Link23 = "";
	        public string Link24 = "";
	        public string Link25 = "";
	        public string Link26 = "";
	        public string Link27 = "";
	        public string Link28 = "";
	        public string Link29 = "";
	        public string Link30 = "";
	        public string Link31 = "";
	        public string Link32 = "";
	        public string Link33 = "";
	        public string Link34 = "";
	        public string Link35 = "";
	        public string Link36 = "";
	        public string Link37 = "";
	        public string Link38 = "";
	        public string Link39 = "";
	        public string Link40 = "";
	        public string Link41 = "";
	        public string Link42 = "";
	        public string Link43 = "";
	        public string Link44 = "";
	        public string Link45 = "";
	        public string Link46 = "";
	        public string Link47 = "";
	        public string Link48 = "";
	        public string Link49 = "";
	        public string Link50 = "";
	
	[DllImport("winmm.dll")]
	        public static extern int waveOutGetVolume(IntPtr h, out uint dwVolume);
	
	        [DllImport("winmm.dll")]
	        public static extern int waveOutSetVolume(IntPtr h, uint dwVolume);
	

This is your user friendly menu where you can add your adf.ly links or redirect links (redirect is recommended)

All links must be filled, if a link is left empty it will get a script error once it reaches the empty Link, you can always remove or add more link options simply by following the pattern or just add the 50 ads and make things much faster and easier.

______________________________________________________________________________

Step 7.) Now you must add the code for your timers, scroll to the bottom of your code
at the bottom you should see...

private void Form1_Load(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link1);
	            timer1.Interval = timestart;
	            timer1.Start();
	
	
	
	            uint _savedVolume;
	            waveOutGetVolume(IntPtr.Zero, out _savedVolume);
	
	            this.FormClosing += delegate
	            {
	
	                waveOutSetVolume(IntPtr.Zero, _savedVolume);
	            };
	
	
	            waveOutSetVolume(IntPtr.Zero, 0);
	        }
	//HERE IS WHERE YOU ADD THE CODE FOUND BELOW
	    }
	}

Add the following...

private void timer1_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer1.Stop();
	            timer2.Start();
	        }
	
	        private void timer2_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link2);
	
	            timer2.Stop();
	            timer3.Interval = timea2a;
	            timer3.Start();
	        }
	
	        private void timer3_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer3.Stop();
	            timer4.Start();
	        }
	
	        private void timer4_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link3);
	
	            timer4.Stop();
	            timer5.Interval = timea2a;
	            timer5.Start();
	        }
	
	        private void timer5_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer5.Stop();
	            timer6.Start();
	        }
	
	        private void timer6_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link4);
	
	            timer6.Stop();
	            timer7.Interval = timea2a;
	            timer7.Start();
	        }
	
	        private void timer7_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer7.Stop();
	            timer8.Start();
	        }
	
	        private void timer8_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link5);
	
	            timer8.Stop();
	            timer9.Interval = timea2a;
	            timer9.Start();
	        }
	
	        private void timer9_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer9.Stop();
	            timer10.Start();
	        }
	
	        private void timer10_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link6);
	
	            timer10.Stop();
	            timer11.Interval = timea2a;
	            timer11.Start();
	        }
	
	        private void timer11_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer11.Stop();
	            timer12.Start();
	        }
	
	        private void timer12_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link7);
	
	            timer12.Stop();
	            timer13.Interval = timea2a;
	            timer13.Start();
	        }
	
	        private void timer13_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer13.Stop();
	            timer14.Start();
	        }
	
	        private void timer14_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link8);
	
	            timer14.Stop();
	            timer15.Interval = timea2a;
	            timer15.Start();
	        }
	
	        private void timer15_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer15.Stop();
	            timer16.Start();
	        }
	
	        private void timer16_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link9);
	
	            timer16.Stop();
	            timer17.Interval = timea2a;
	            timer17.Start();
	        }
	
	        private void timer17_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer17.Stop();
	            timer18.Start();
	        }
	
	        private void timer18_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link10);
	
	            timer16.Stop();
	            timer17.Interval = timea2a;
	            timer17.Start();
	        }
	
	        private void timer19_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer19.Stop();
	            timer20.Start();
	        }
	
	        private void timer20_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link11);
	
	            timer20.Stop();
	            timer21.Interval = timea2a;
	            timer21.Start();
	        }
	
	        private void timer21_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer21.Stop();
	            timer22.Start();
	        }
	
	        private void timer22_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link12);
	
	            timer22.Stop();
	            timer23.Interval = timea2a;
	            timer23.Start();
	        }
	
	        private void timer23_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer23.Stop();
	            timer24.Start();
	        }
	
	        private void timer24_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link13);
	
	            timer24.Stop();
	            timer25.Interval = timea2a;
	            timer25.Start();
	        }
	
	        private void timer25_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer25.Stop();
	            timer26.Start();
	        }
	
	        private void timer26_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link14);
	
	            timer26.Stop();
	            timer27.Interval = timea2a;
	            timer27.Start();
	        }
	
	        private void timer27_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer27.Stop();
	            timer28.Start();
	        }
	
	        private void timer28_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link15);
	
	            timer28.Stop();
	            timer29.Interval = timea2a;
	            timer29.Start();
	        }
	
	        private void timer29_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer29.Stop();
	            timer30.Start();
	        }
	
	        private void timer30_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link16);
	
	            timer30.Stop();
	            timer31.Interval = timea2a;
	            timer31.Start();
	        }
	
	        private void timer31_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer31.Stop();
	            timer32.Start();
	        }
	
	        private void timer32_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link17);
	
	            timer32.Stop();
	            timer33.Interval = timea2a;
	            timer33.Start();
	        }
	
	        private void timer33_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer33.Stop();
	            timer34.Start();
	        }
	
	        private void timer34_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link18);
	
	            timer34.Stop();
	            timer35.Interval = timea2a;
	            timer35.Start();
	        }
	
	        private void timer35_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer35.Stop();
	            timer36.Start();
	        }
	
	        private void timer36_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link19);
	
	            timer36.Stop();
	            timer37.Interval = timea2a;
	            timer37.Start();
	        }
	
	        private void timer37_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer37.Stop();
	            timer38.Start();
	        }
	
	        private void timer38_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link20);
	
	            timer38.Stop();
	            timer39.Interval = timea2a;
	            timer39.Start();
	        }
	
	        private void timer39_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer39.Stop();
	            timer40.Start();
	        }
	
	        private void timer40_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link21);
	
	            timer40.Stop();
	            timer41.Interval = timea2a;
	            timer41.Start();
	        }
	
	        private void timer41_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer41.Stop();
	            timer42.Start();
	        }
	
	        private void timer42_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link22);
	
	            timer42.Stop();
	            timer43.Interval = timea2a;
	            timer43.Start();
	        }
	
	        private void timer43_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer43.Stop();
	            timer44.Start();
	        }
	
	        private void timer44_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link23);
	
	            timer44.Stop();
	            timer45.Interval = timea2a;
	            timer45.Start();
	        }
	
	        private void timer45_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer45.Stop();
	            timer46.Start();
	        }
	
	        private void timer46_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link24);
	
	            timer46.Stop();
	            timer47.Interval = timea2a;
	            timer47.Start();
	        }
	
	        private void timer47_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer47.Stop();
	            timer48.Start();
	        }
	
	        private void timer48_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link25);
	
	            timer48.Stop();
	            timer49.Interval = timea2a;
	            timer49.Start();
	        }
	
	        private void timer49_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer49.Stop();
	            timer50.Start();
	        }
	
	        private void timer50_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link26);
	
	            timer50.Stop();
	            timer51.Interval = timea2a;
	            timer51.Start();
	        }
	
	        private void timer51_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer51.Stop();
	            timer52.Start();
	        }
	
	        private void timer52_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link27);
	
	            timer52.Stop();
	            timer53.Interval = timea2a;
	            timer53.Start();
	        }
	
	        private void timer53_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer53.Stop();
	            timer54.Start();
	        }
	
	        private void timer54_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link28);
	
	            timer54.Stop();
	            timer55.Interval = timea2a;
	            timer55.Start();
	        }
	
	        private void timer55_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer55.Stop();
	            timer56.Start();
	        }
	
	        private void timer56_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link29);
	
	            timer56.Stop();
	            timer57.Interval = timea2a;
	            timer57.Start();
	        }
	
	        private void timer57_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer57.Stop();
	            timer58.Start();
	        }
	
	        private void timer58_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link30);
	
	            timer58.Stop();
	            timer59.Interval = timea2a;
	            timer59.Start();
	        }
	
	        private void timer59_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer59.Stop();
	            timer60.Start();
	        }
	
	        private void timer60_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link31);
	
	            timer60.Stop();
	            timer61.Interval = timea2a;
	            timer61.Start();
	        }
	
	        private void timer61_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer61.Stop();
	            timer62.Start();
	        }
	
	        private void timer62_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link32);
	
	            timer62.Stop();
	            timer63.Interval = timea2a;
	            timer64.Start();
	        }
	
	        private void timer63_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer63.Stop();
	            timer64.Start();
	        }
	
	        private void timer64_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link33);
	
	            timer64.Stop();
	            timer65.Interval = timea2a;
	            timer65.Start();
	        }
	
	        private void timer65_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer65.Stop();
	            timer66.Start();
	        }
	
	        private void timer66_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link34);
	
	            timer66.Stop();
	            timer67.Interval = timea2a;
	            timer67.Start();
	        }
	
	        private void timer67_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer67.Stop();
	            timer68.Start();
	        }
	
	        private void timer68_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link35);
	
	            timer68.Stop();
	            timer69.Interval = timea2a;
	            timer69.Start();
	        }
	
	        private void timer69_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer69.Stop();
	            timer70.Start();
	        }
	
	        private void timer70_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link36);
	
	            timer70.Stop();
	            timer71.Interval = timea2a;
	            timer71.Start();
	        }
	
	        private void timer71_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer71.Stop();
	            timer72.Start();
	        }
	
	        private void timer72_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link37);
	
	            timer72.Stop();
	            timer73.Interval = timea2a;
	            timer73.Start();
	        }
	
	        private void timer73_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer73.Stop();
	            timer74.Start();
	        }
	
	        private void timer74_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link38);
	
	            timer74.Stop();
	            timer75.Interval = timea2a;
	            timer75.Start();
	        }
	
	        private void timer75_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer75.Stop();
	            timer76.Start();
	        }
	
	        private void timer76_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link39);
	
	            timer76.Stop();
	            timer77.Interval = timea2a;
	            timer77.Start();
	        }
	
	        private void timer77_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer77.Stop();
	            timer78.Start();
	        }
	
	        private void timer78_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link40);
	
	            timer78.Stop();
	            timer79.Interval = timea2a;
	            timer79.Start();
	        }
	
	        private void timer79_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer79.Stop();
	            timer80.Start();
	        }
	
	        private void timer80_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link41);
	
	            timer80.Stop();
	            timer81.Interval = timea2a;
	            timer81.Start();
	        }
	
	        private void timer81_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer81.Stop();
	            timer82.Start();
	        }
	
	        private void timer82_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link42);
	
	            timer82.Stop();
	            timer83.Interval = timea2a;
	            timer83.Start();
	        }
	
	        private void timer83_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer83.Stop();
	            timer84.Start();
	        }
	
	        private void timer84_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link43);
	
	            timer84.Stop();
	            timer85.Interval = timea2a;
	            timer85.Start();
	        }
	
	        private void timer85_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer85.Stop();
	            timer86.Start();
	        }
	
	        private void timer86_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link44);
	
	            timer86.Stop();
	            timer87.Interval = timea2a;
	            timer87.Start();
	        }
	
	        private void timer87_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer87.Stop();
	            timer88.Start();
	        }
	
	        private void timer88_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link45);
	
	            timer88.Stop();
	            timer89.Interval = timea2a;
	            timer89.Start();
	        }
	
	        private void timer89_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer89.Stop();
	            timer90.Start();
	        }
	
	        private void timer90_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link46);
	
	            timer90.Stop();
	            timer91.Interval = timea2a;
	            timer91.Start();
	        }
	
	        private void timer91_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer91.Stop();
	            timer92.Start();
	        }
	
	        private void timer92_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link47);
	
	            timer92.Stop();
	            timer93.Interval = timea2a;
	            timer93.Start();
	        }
	
	        private void timer93_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer93.Stop();
	            timer94.Start();
	        }
	
	        private void timer94_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link48);
	
	            timer94.Stop();
	            timer95.Interval = timea2a;
	            timer95.Start();
	        }
	
	        private void timer95_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer95.Stop();
	            timer96.Start();
	        }
	
	        private void timer96_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link49);
	
	            timer96.Stop();
	            timer97.Interval = timea2a;
	            timer97.Start();
	        }
	
	        private void timer97_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer97.Stop();
	            timer98.Start();
	        }
	
	        private void timer98_Tick(object sender, EventArgs e)
	        {
	            webBrowser1.Navigate(Link50);
	
	            timer98.Stop();
	            timer99.Interval = timea2a;
	            timer99.Start();
	        }
	
	        private void timer99_Tick(object sender, EventArgs e)
	        {
	            HtmlDocument doc = webBrowser1.Document;
	            HtmlElement submit = doc.GetElementById("skip_ad_button");
	            submit.InvokeMember("click");
	
	            timer99.Stop();
	            timer100.Start();
	        }
	
	        private void timer100_Tick(object sender, EventArgs e)
	        {
	            this.Close();
	        }

______________________________________________________________________________

Credits all go to me, Rage aka Ragemoddzz

To help me out and thank me for this please add one of my adf.ly links

My Adf.ly link [HIDE]moddedps4.com [/HIDE]

*WARNING: This is NOT meant to be used to bot your Adf.ly links yourself, doing so can get your account banned, I will not be held responsible for you getting banned for using this out of Adf.ly terms of services.

Reply
16 Replies
Posts: 0
 Anonymous
Guest
(@Anonymous)
Joined: 1 second ago

Nice post Rage, I am sure many of people will find this useful.

Reply
Rage
Posts: 164
 Rage
Topic starter
(@Rage)
Estimable RivalGamer
Joined: 9 years ago

Nice post Rage, I am sure many of people will find this useful.

Thanks and just to ensure everything I ran myself through the tutorial and everything worked just as planned 😀

Some ads will require a captcha code once in a while but the script will just leave the page lol

Reply
Shenmue
Posts: 201
(@Shenmue)
Estimable RivalGamer
Joined: 9 years ago

Not a huge fan of Weebly so wish the best to thoes who use it.

Reply
Rage
Posts: 164
 Rage
Topic starter
(@Rage)
Estimable RivalGamer
Joined: 9 years ago

Not a huge fan of Weebly so wish the best to thoes who use it.

Weebly is just used to redirect to your ads, it just a way to use this method completely free, there are other sites but Weebly is simple to use and works for me

Reply
Page 1 / 4