| View previous topic :: View next topic |
| Author |
Message |
4jax_cheater Cheater
Reputation: 0
Joined: 14 Apr 2009 Posts: 31
|
Posted: Wed Oct 28, 2009 6:42 pm Post subject: help autoclick click |
|
|
help me not getting to do it selecioanr the process: S
FindWindow example: = window ( 'GunBound');
hotkey?? helīp
|
|
| Back to top |
|
 |
p99 Master Cheater
Reputation: 0
Joined: 21 Jan 2007 Posts: 271
|
Posted: Wed Oct 28, 2009 9:42 pm Post subject: |
|
|
More information and in English please
_________________
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Fri Oct 30, 2009 4:51 am Post subject: |
|
|
| Code: | HWND hWndGame;
while ( ! GetAsyncKeyState( VK_F10 ) )
{
Sleep( 100 );
if( hWndGame = FindWindow( _T("Softnyx"), _T("GunBound") ) )
break;
} |
|
|
| Back to top |
|
 |
4jax_cheater Cheater
Reputation: 0
Joined: 14 Apr 2009 Posts: 31
|
Posted: Sat Oct 31, 2009 10:20 am Post subject: |
|
|
| error, help create auto click for gunbound!
|
|
| Back to top |
|
 |
NoMercy Master Cheater
Reputation: 1
Joined: 09 Feb 2009 Posts: 289
|
Posted: Sun Nov 01, 2009 2:52 am Post subject: |
|
|
| Code: | #include <iostream>
#include <windows.h>
#include <stdlib.h>
using namespace std;
int main()
{
SetConsoleTitle(" AutoClicker");
{
cout << " autoclicker" << endl;
cout << " " << endl;
cout << " " << endl;
cout << " " << endl;
int x,y,slpTime,i;
cout << "Enter the number of times to click: " << endl;
cin >> i;
cout << "Enter X Coordinate: " << endl;
cin >> x;
cout << "Enter y Coordinate: " << endl;
cin >> y;
cout << "Enter time in between clicks: " << endl;
cin >> slpTime;
cout << "Status." << "\n X coordinate: " << x << " \nY coordinate: " << y << " \nTime in seconds between clicks: " << slpTime << endl;
for(int t = 1; t <= i; t++){
SetCursorPos(x,y);
mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, x, y, 0, 0);
Sleep(slpTime*1000);
if (GetAsyncKeyState(VK_ESCAPE)){
exit(0);
}
else continue;
}
return 0;
}
} |
|
|
| Back to top |
|
 |
4jax_cheater Cheater
Reputation: 0
Joined: 14 Apr 2009 Posts: 31
|
Posted: Sun Nov 01, 2009 7:57 am Post subject: |
|
|
| not languagem delphi :S
|
|
| Back to top |
|
 |
4jax_cheater Cheater
Reputation: 0
Joined: 14 Apr 2009 Posts: 31
|
Posted: Tue Nov 03, 2009 7:08 pm Post subject: |
|
|
| hel for linguagem dephi auto click plix?
|
|
| Back to top |
|
 |
h4c0r-BG Master Cheater
Reputation: 0
Joined: 29 Nov 2006 Posts: 449 Location: The yogurt country
|
Posted: Thu Nov 05, 2009 10:47 am Post subject: |
|
|
myPostMessageA(h,WM_LBUTTONDBLCLK,0,MakeLong(X,Y)) ;
// ? myPostMessageA(h,WM_LBUTTONUP,0,MakeLong(X,Y));
mySendMessageA(h,WM_LBUTTONDBLCLK,0,MakeLong(X,Y)) ;
// ? mySendMessageA(h,WM_LBUTTONUP,0,MakeLong(X,Y));
my_mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
my_mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
Try one of those combinations.
Goodluck.
Else try out mySendInput();
_________________
|
|
| Back to top |
|
 |
SkeleTron Grandmaster Cheater Supreme
Reputation: 1
Joined: 28 Jun 2007 Posts: 1022
|
Posted: Thu Nov 05, 2009 10:55 am Post subject: |
|
|
nice code
_________________
Reedemer. |
|
| Back to top |
|
 |
|