Random Stuff Forums
 

Go Back   Random Stuff Forums > The Archives > Archives

Archives Old useless posts are moved here.

 
 
LinkBack Thread Tools Display Modes
  #1  
Old 09-02-2008, 03:17 PM
lordsaber (Offline)
New Member
 
Join Date: Oct 2007
Posts: 23
lordsaber is an unknown quantity at this point
Default Help

Does anyone know how to move and click the mouse(Cursor) silently(without using the mouse on the screen) and how to look up a user on the runescape highscores, if you do can you please help me?:lol:
  #2  
Old 28-12-2008, 08:48 PM
Blupig's Avatar
Blupig (Offline)
wat i don't even
 
Join Date: Aug 2007
Posts: 156
Blupig is an unknown quantity at this point
Default

moveMouseSmooth function:

    Public Sub moveMouseSmooth(ByVal x As Integer, ByVal Y As Integer, ByVal steps As Integer)
        Dim diffX As Integer
        Dim diffY As Integer
        Dim I As Integer

        If mousePos.X > x Then
            diffX = mousePos.X - x
        Else : diffX = x - mousePos.X
        End If

        If mousePos.Y > Y Then
            diffY = mousePos.Y - Y
        Else : diffY = Y - mousePos.Y
        End If

        diffX = diffX / steps
        diffY = diffY / steps

        For I = 1 To steps
            If mousePos.X > x Then
                moveMouse(mousePos.X - diffX, mousePos.Y)
            Else : moveMouse(mousePos.X + diffX, mousePos.Y)
            End If

            If mousePos.Y > Y Then
                moveMouse(mousePos.X, mousePos.Y - diffY)
            Else : moveMouse(mousePos.X, mousePos.Y + diffY)
            End If

            wait(1)
        Next
    End Sub
^^Credits to AB.

I'm not going to spoon-feed it to you either, if you want to know how to use it actually TRY to learn how.
__________________
Spark a match and light the flame, come sit down and play a game. Before you sit, you should know, you've lost the game, you dirty ho.
  #3  
Old 30-12-2008, 07:37 PM
Nullware (Offline)
New Member
 
Join Date: Feb 2007
Posts: 39
Nullware is an unknown quantity at this point
Default

Blupig:

1) That won't work since you omitted other necessary declarations/functions.
2) That isn't what he wants... what you posted will use the on-screen cursor.
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 12:41 PM.

Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0
Copyright © 2006 - 2012, Rsforums.org