background clicks

02/23/2012 16:20 injection illusion logic#1
should i hook memory for conquer client clicks to click on background or there is some way to click on background on conquer client ?
if exist post/pm me the code snippet including (select process-AdjustClickEvents-disablePopUpOnClick)
02/23/2012 16:28 IAmHawtness#2
You don't have to "hook" anything, a simple 1-byte change is enough to disable the background click checks. I think I even made a tutorial/post explaining how to, somewhere.
02/24/2012 01:06 injection illusion logic#3
and about sending click to background ?
02/24/2012 01:21 IAmHawtness#4
Quote:
Originally Posted by injection illusion logic View Post
and about sending click to background ?
Oh, mis-read your question. Get a handle to the CO window and use Send/PostMessage to simulate mouse clicks.

I think that you in .NET can simply get a handle to the CO window by using the Process class

Code:
Process pr = Process.GetProcessesByName("Conquer")[0];
IntPtr windowHandle = pr.MainWindowHandle;

PostMessage(windowHandle, WM_LBUTTONDOWN,...);
PostMessage(windowHandle, WM_LBUTTONUP,...);
You need to remove the background click checks first though before attempting this.
02/24/2012 18:14 injection illusion logic#5
well thanks bro i thought postmeg wont work there and yeah i can handle background clicks