Results 1 to 14 of 14
  1. #1
    ipwnuuaal5's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    275
    Reputation
    16
    Thanks
    33

    Get Mouse Coords?

    Does anyone have the function to get mouse coords in combat arms?

  2. #2
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Just take a screenshot paste in paint press f11 and make a quick thing in vb..

  3. #3
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    GetCursorPos...
    /fpalm

  4. #4
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    Code:
    POINT myCursor; 
    GetCursorPos(&myCursor);
    Code:
    myCursor.x
    myCursor.y

  5. The Following 2 Users Say Thank You to DeadLinez For This Useful Post:

    Gab (10-14-2010),ipwnuuaal5 (10-14-2010)

  6. #5
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Label1.Text = (Cursor.Position.X & ", " & Cursor.Position.Y)
    in vb /ftw.

  7. #6
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    hes not asking for VB so gtfo.

  8. #7
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    stfu he could do as i said.

  9. #8
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    Code:
    #include <windows.h>
    #include <iostream>
    
    using namespace std;
    
    int main()
    {
        while(1)
        {
                if(GetAsyncKeyState(VK_F9))
                {
                     POINT p;;
                     cout<< " X: " << p.x << " Y: " << p.y <<endl;
                }
                Sleep(250);
        }
    }
    I made that to find the position of buttons to make an AFK bot a loooong time ago.


  10. The Following 2 Users Say Thank You to Disturbed For This Useful Post:

    ipwnuuaal5 (10-14-2010),wassup40 (10-14-2010)

  11. #9
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Quote Originally Posted by Disturbed View Post
    Code:
    #include <windows.h>
    #include <iostream>
    
    using namespace std;
    
    int main()
    {
        while(1)
        {
                if(GetAsyncKeyState(VK_F9))
                {
                     POINT p;;
                     cout<< " X: " << p.x << " Y: " << p.y <<endl;
                }
                Sleep(250);
        }
    }
    I made that to find the position of buttons to make an AFK bot a loooong time ago.
    Who are you i have never seen you before..

  12. #10
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed
    Quote Originally Posted by wassup40 View Post

    Who are you i have never seen you before..
    i have never seen him before 2
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  13. #11
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    ObamaBinLaden


  14. #12
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Quote Originally Posted by Disturbed View Post
    ObamaBinLaden
    Yep your kewl and isnt leeching

    Could i have your MSN??

  15. #13
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    He's the new Minion. Congratz him instead of "Who the f*ck is that guy?"

  16. #14
    Gordon`'s Avatar
    Join Date
    Dec 2007
    Gender
    male
    Posts
    283
    Reputation
    24
    Thanks
    325
    Mouse Hook also works.


Similar Threads

  1. Get Flag Coords in CTF Mod
    By sdm in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 8
    Last Post: 03-13-2011, 06:24 AM
  2. Get flag coords
    By sdm in forum Call of Duty Modern Warfare 2 Help
    Replies: 4
    Last Post: 03-11-2011, 08:20 AM
  3. GSC Modding: Get Flag Coords in CTF Mod
    By sdm in forum Call of Duty Modern Warfare 2 Help
    Replies: 3
    Last Post: 03-06-2011, 01:21 PM
  4. [Tutorial]Mouse Coords[MSDN]
    By Unkn0wn_h4cker in forum Visual Basic Programming
    Replies: 1
    Last Post: 03-15-2010, 06:14 AM
  5. Get Mouse Click
    By Xocitus in forum C++/C Programming
    Replies: 4
    Last Post: 07-11-2007, 09:47 PM