| View previous topic :: View next topic |
| Author |
Message |
sulidude Cheater
Reputation: 0
Joined: 23 Aug 2007 Posts: 37
|
Posted: Sat Aug 25, 2007 4:46 pm Post subject: mouse cursor hack |
|
|
| can some one tell me if they can enlarge the area the mouse selects in one click i know i can drag but i need it to be enlarged and work in a larger area
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Sat Aug 25, 2007 5:27 pm Post subject: |
|
|
Install a mouse hook then send a mouse_event to every pixel inside a certain area around the click.
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
sulidude Cheater
Reputation: 0
Joined: 23 Aug 2007 Posts: 37
|
Posted: Sun Aug 26, 2007 7:46 am Post subject: |
|
|
| can you give me a link and a little bit of info how to do this
|
|
| Back to top |
|
 |
the_undead Expert Cheater
Reputation: 1
Joined: 12 Nov 2006 Posts: 235 Location: Johannesburg, South Africa
|
|
| Back to top |
|
 |
sulidude Cheater
Reputation: 0
Joined: 23 Aug 2007 Posts: 37
|
Posted: Sun Aug 26, 2007 8:08 am Post subject: |
|
|
well the thats the info but i cant find the download. can you send it plz?
so can i duplicate my mouse with this?
|
|
| Back to top |
|
 |
the_undead Expert Cheater
Reputation: 1
Joined: 12 Nov 2006 Posts: 235 Location: Johannesburg, South Africa
|
Posted: Sun Aug 26, 2007 8:24 am Post subject: |
|
|
Download? wtf?
No, you can install a windows mouse hook....
_________________
|
|
| Back to top |
|
 |
sulidude Cheater
Reputation: 0
Joined: 23 Aug 2007 Posts: 37
|
Posted: Sun Aug 26, 2007 8:29 am Post subject: |
|
|
sry i'm a noob
how can i install it ?
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Sun Aug 26, 2007 8:45 am Post subject: |
|
|
he wants you to make the program and give it to him o.o
what the fuck, lol
_________________
|
|
| Back to top |
|
 |
the_undead Expert Cheater
Reputation: 1
Joined: 12 Nov 2006 Posts: 235 Location: Johannesburg, South Africa
|
Posted: Sun Aug 26, 2007 9:23 am Post subject: |
|
|
| Code: | #include "windows.h"
HHOOK hHOOK = NULL;
LRESULT __declspec(dllexport)__stdcall CALLBACK MouseProc( int nCode,WPARAM wParam,LPARAM lParam )
{
if (nCode > 0)
{
if ( wParam == WM_LBUTTONDOWN )
{
MOUSEHOOKSTRUCT *MouseHook = (MOUSEHOOKSTRUCT *)lParam;
SendMessage( MouseHook->hwnd, WM_LBUTTONDOWN, MK_LBUTTON, MAKELONG(MouseHook->pt.x+100, MouseHook->pt.y+100));
}
}
return CallNextHookEx( hHOOK, nCode, wParam, lParam );
}
BOOL APIENTRY DllMain( HMODULE hModule, DWORD ulReason, LPVOID lpReserved )
{
if ( ul_reason_for_call == DLL_PROCESS_ATTACH )
hHOOK = SetWindowsHookEx(WH_MOUSE,(HOOKPROC)MouseProc,hModule,0);
else if ( ul_reason_for_call == DLL_PROCESS_DETACH )
UnhookWindowsHookEx(hHOOK);
return TRUE;
} |
Thats basically what you want no? I cant be bothered to test it
_________________
Last edited by the_undead on Sun Aug 26, 2007 9:44 am; edited 1 time in total |
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sun Aug 26, 2007 9:43 am Post subject: |
|
|
| Code: |
else if ( ul_reason_for_call == DLL_PROCESS_DETACH )
UnhookWindowsHookEx(hHOOK);
|
|
|
| Back to top |
|
 |
sulidude Cheater
Reputation: 0
Joined: 23 Aug 2007 Posts: 37
|
Posted: Sun Aug 26, 2007 9:59 am Post subject: |
|
|
| thank you for youre help
|
|
| Back to top |
|
 |
|