| View previous topic :: View next topic |
| Author |
Message |
sd4
Trooper

 Joined: Dec 27, 2005 Posts: 10 Location: USA
|
Posted: Thu Aug 28, 2008 10:43 pm Post subject: linkbucks.com |
|
|
does anyone know how to make http://www.linkbucks.com/link/021da832 go automaticly to the [skip this!] link without me clicking on it
|
|
| Back to top |
|
 |
ProxFox
Proxomitron Host

 Joined: Nov 11, 2003 Posts: 940 Location: USA
|
Posted: Thu Aug 28, 2008 11:09 pm Post subject: |
|
|
my HOSTS file blocks access to that site, so i'm gonna tackle it with an "un-tested", hope it works, lol...
here's a "starting point" for you to edit: | Code: | Name = "AutoClick"
Active = TRUE
URL = "$TYPE(htm)www.linkbucks.com/link/021da832"
Limit = 32766
Match = "??+"
Replace = "<html>\r\n"
"<head><title>AutoClick</title>\r\n"
"<meta http-equiv="refresh" content="0;url=http://skip-this-link">\r\n"
"</head>\r\n"
"<body>\r\n"
"</body>\r\n"
"</html>\r\n" |
the above should work for ya, you'll need the actual skip-this-link URL from the site i can't get to...
|
|
| Back to top |
|
 |
sd4
Trooper

 Joined: Dec 27, 2005 Posts: 10 Location: USA
|
Posted: Fri Aug 29, 2008 5:01 am Post subject: |
|
|
thanks for the fast response
what if i want it to match any linkbucks links and make it go to [skip this!]?
|
|
| Back to top |
|
 |
sd4
Trooper

 Joined: Dec 27, 2005 Posts: 10 Location: USA
|
Posted: Fri Aug 29, 2008 5:20 am Post subject: |
|
|
hmm i think i did it. is this the proper way to match?
| Code: |
Name = "AutoClick"
Active = TRUE
URL = "$TYPE(htm)www.linkbucks.com"
Limit = 32766
Match = " <p>Site will load in <span id="loaderSeconds">15</span> seconds</p> "
"<a href="http://\1" id="linkBucksSkip">Skip This ></a> </div>"
Replace = "<html>\r\n"
"<head><title>AutoClick</title>\r\n"
"<meta http-equiv="refresh" content="0;url=http://\1">\r\n"
"</head>\r\n"
"<body>\r\n"
"</body>\r\n"
"</html>\r\n"
|
|
|
| Back to top |
|
 |
ProxFox
Proxomitron Host

 Joined: Nov 11, 2003 Posts: 940 Location: USA
|
Posted: Fri Aug 29, 2008 8:58 am Post subject: |
|
|
looks like that ought to do the trick...
|
|
| Back to top |
|
 |
|
|