Results 1 to 6 of 6

Thread: Remote Controlled Mouse

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2002
    Location
    UK
    Posts
    130

    Remote Controlled Mouse

    Hi, strange post this but i will explain what it is all about in good time.

    Request:
    A program (macro? i dont know) that makes your mouse move from side to side of the screen and up and down the screen extremely quickly, and i mean really quickly.

    Reason:
    There is a game on a website (www.fastwars.com) in which you must move your mouse over as many green dots as possible before they hit the screen, and it is impossible to get scores as high as what some people have got, and i know for a fact someone i know has a program that does what i want.

    If you go to the website and play the game you will understand what i want, the moust does not need to click, just move from side to side of the screen up and down at speeds so fast you cant imagine.

    I know it is possible, i just dont know how to do it as i am not very good with VB

    thanks,

    GNEVILLE

  2. #2
    Fanatic Member 007shahid's Avatar
    Join Date
    Feb 2001
    Posts
    562
    thats cheating...
    THE TIME/WEATHER IS
    Don't know how to use APIs or have problem with them,
    Download API-Guide & API-Viewer from http://www.allapi.net

  3. #3
    Junior Member MC2's Avatar
    Join Date
    Dec 2001
    Location
    Seattle WA
    Posts
    20
    Realy now? Well, he must want it 'for educational purposes only'... like the disclamer in all those cracks...
    --Matt Cohn

    EOM

  4. #4
    Fanatic Member 007shahid's Avatar
    Join Date
    Feb 2001
    Posts
    562

    Talking lol

    lol
    THE TIME/WEATHER IS
    Don't know how to use APIs or have problem with them,
    Download API-Guide & API-Viewer from http://www.allapi.net

  5. #5
    New Member
    Join Date
    Apr 2002
    Location
    NEPA
    Posts
    1

    looking for code in all the wrong places

    look for code related to "get paid while you serf" most of the "get paid to serf" programs require mouse movement or clicking, and quite a few coders have created cheats for this using vb. the speed should be adjustable in most of these projects.

  6. #6
    Lively Member
    Join Date
    Jul 2000
    Posts
    82

    cheating?? maybe, but fun

    it is cheating, but it is fun...


    Option Explicit
    Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long

    Private Sub Command1_Click()
    Dim i, z
    Me.Hide
    AppActivate ("FastWars!")
    Do
    For i = 0 To 800 Step 60
    For z = 50 To 510 Step 60
    SetCursorPos i, z
    Next z
    Next i
    'DoEvents
    Loop
    End Sub


    try this code, play with the numbers.... I haven't yet figured the right numbers for the best results. but it's fun watching the thing go automaticaly...
    have fun...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width