Redirect a wrong click

Ask gaming related questions (AHK v1.1 and older)
Gonzalo94
Posts: 40
Joined: 17 Jul 2017, 12:56

Redirect a wrong click

04 Feb 2019, 12:11

The idea of this code was to redirect the mouse click to another point
You can find the code above
Last edited by Gonzalo94 on 09 Feb 2019, 16:42, edited 4 times in total.
A_AhkUser
Posts: 1147
Joined: 06 Mar 2017, 16:18
Location: France
Contact:

Re: Redirect a wrong click

04 Feb 2019, 13:05

Hola Gonzalo! :wave:,


Try this:

Code: Select all

#NoEnv
#SingleInstance force
#Warn

; ====================== preferences /======================
coordinatesRelativeTo := "Screen" ;  asigna el origen del sistema de coordenadas y aqui la esquina izquierda superior de la pantalla
x1 := 673, x2 := 693
y1 := 340, y2 := 381
rectifiedx := 683, rectifiedy := 369
winTitle := "ahk_class Notepad" ; reemplazalo por el titulo de la ventana de tu juego
; ======================/ preferences ======================
return

#If (WinActive(winTitle) && IsOverArea(673, 693, 340, 381, coordinatesRelativeTo))
	LButton::Click, %rectifiedx%, %rectifiedy%
#If


isOverArea(_x1, _x2, _y1, _y2, _relativeTo:="Screen") {
	_coordModeMouse := A_CoordModeMouse
	CoordMode, Mouse, % _relativeTo
	MouseGetPos, _x, _y
	CoordMode, Mouse, % _coordModeMouse
return (((_x1 <= _x) && (_x <= _x2)) && ((_y1 <= _y) && (_y <= _y2)))
}


Cheers
my scripts
Gonzalo94
Posts: 40
Joined: 17 Jul 2017, 12:56

Re: Redirect a wrong click

04 Feb 2019, 14:39

thanks!
Portwolf
Posts: 161
Joined: 08 Oct 2018, 12:57

Re: .

09 Feb 2019, 04:51

Please don't edit your posts to "." because people might have the same questions, and this is a self.centered scummy move....
Forums are about sharing, not deleting info when you get your questions answered.
Gonzalo94
Posts: 40
Joined: 17 Jul 2017, 12:56

Re: .

09 Feb 2019, 16:43

Portwolf wrote:
09 Feb 2019, 04:51
Please don't edit your posts to "." because people might have the same questions, and this is a self.centered scummy move....
Forums are about sharing, not deleting info when you get your questions answered.
my bad, i put it back ;) will not happend again
Portwolf
Posts: 161
Joined: 08 Oct 2018, 12:57

Re: Redirect a wrong click

10 Feb 2019, 02:15

Mucho thanks :P

May help people search if needed :)

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: Google [Bot] and 84 guests