| View previous topic :: View next topic |
| Author |
Message |
rawrthisname Grandmaster Cheater
Reputation: 0
Joined: 22 Jun 2006 Posts: 574
|
Posted: Wed Mar 19, 2008 12:01 am Post subject: Best program language to +view counts? |
|
|
hi, what language would be best to: enter a url in and then it'll reload the page fast to get thousands of page views on myspace, youtube etc. and i am also looking for a low bandwidth way if that is also possible. if its not possible to + view count that dramatically.. any other suggestions would be appreciated.. i do use the firefox extension to reload.
i will try learning the language (skip to what i need to know) to write the script or make what ever is needed.
thx =]
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Wed Mar 19, 2008 12:42 am Post subject: |
|
|
| tape your F5 key down.
|
|
| Back to top |
|
 |
rawrthisname Grandmaster Cheater
Reputation: 0
Joined: 22 Jun 2006 Posts: 574
|
Posted: Wed Mar 19, 2008 12:58 am Post subject: |
|
|
| LOL will the server pick up all the requests to give all the page views?
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6300
|
Posted: Fri Mar 21, 2008 12:57 am Post subject: |
|
|
kiwi you can do a simple page refresh with autoit.
This one would work on myspace.
Refreshes the page every 7 seconds. Giving the page time to reload.
May have to slow it down even more, but you can see what to do.
| Code: |
Opt("WinWaitDelay", 100)
Opt("WinTitleMatchMode", 4)
Opt("WinDetectHiddenText", 1)
Opt("MouseCoordMode", 0)
HotKeySet("{END}", "Stop")
$refresh = 1
While $refresh = 1
WinWait("MySpace.com", "")
If Not WinActive("MySpace.com", "") Then WinActivate("MySpace.com", "")
WinWaitActive("MySpace.com", "")
Send("{F5}")
Sleep(7000)
WEnd
Func Stop()
Exit
EndFunc ;==>Stop
|
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Fri Mar 21, 2008 1:32 am Post subject: |
|
|
Or you can do it at VB 6/.net {Needs WebBroser and Timer}
| Code: | private sub form_load ()
webbrowser1.navigate ("MySpaceShyt.com")
timer1.enabled = true
timer1.interval = 1
end sub
private sub timer1_tick()
sendkeys "{F5}" 'SendKeys.Send "{F5}" at .Net
end sub |
_________________
|
|
| Back to top |
|
 |
Trow Grandmaster Cheater
Reputation: 2
Joined: 17 Aug 2006 Posts: 957
|
Posted: Fri Mar 21, 2008 1:52 am Post subject: |
|
|
| XxOsirisxX wrote: | Or you can do it at VB 6/.net {Needs WebBroser and Timer}
| Code: | private sub form_load ()
webbrowser1.navigate ("MySpaceShyt.com")
timer1.enabled = true
timer1.interval = 1
end sub
private sub timer1_tick()
sendkeys "{F5}" 'SendKeys.Send "{F5}" at .Net
end sub |
|
You realize that's really just going to keep refreshing your page before the request gets sent to the server so you get to page views recorded?
The solution may be an array of 100 browser controls, all going to your youtube site, and then refreshing them all one by one, allowing each instance some time to load the page...
_________________
Get kidnapped often. |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Mar 21, 2008 8:54 pm Post subject: |
|
|
There is absolutely no reason you should use SendKeys in a VB program while using the default web browser control. Just check if the control is busy or not, then have it renavigate when it's finished loading:
| Code: | Option Explicit
Private Sub Form_Load()
WebBrowser1.Navigate "http://www.google.com/"
Timer1.Interval = 10 '// Don't rape the CPU with an interval of 1.
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
If WebBrowser1.Busy = False Then
WebBrowser1.Navigate "http://www.google.com/"
End If
End Sub |
_________________
- Retired. |
|
| Back to top |
|
 |
|