Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Best program language to +view counts?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
rawrthisname
Grandmaster Cheater
Reputation: 0

Joined: 22 Jun 2006
Posts: 574

PostPosted: Wed Mar 19, 2008 12:01 am    Post subject: Best program language to +view counts? Reply with quote

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
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Wed Mar 19, 2008 12:42 am    Post subject: Reply with quote

tape your F5 key down.
Back to top
View user's profile Send private message
rawrthisname
Grandmaster Cheater
Reputation: 0

Joined: 22 Jun 2006
Posts: 574

PostPosted: Wed Mar 19, 2008 12:58 am    Post subject: Reply with quote

LOL will the server pick up all the requests to give all the page views?
Back to top
View user's profile Send private message
Labyrnth
Moderator
Reputation: 10

Joined: 28 Nov 2006
Posts: 6300

PostPosted: Fri Mar 21, 2008 12:57 am    Post subject: Reply with quote

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
View user's profile Send private message
XxOsirisxX
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Oct 2006
Posts: 1597

PostPosted: Fri Mar 21, 2008 1:32 am    Post subject: Reply with quote

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
View user's profile Send private message
Trow
Grandmaster Cheater
Reputation: 2

Joined: 17 Aug 2006
Posts: 957

PostPosted: Fri Mar 21, 2008 1:52 am    Post subject: Reply with quote

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
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Fri Mar 21, 2008 8:54 pm    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites