PostBasic quick peek

Posts 19 of 9 · Page 1 of 1
Basic quick peek
Code:
Local $hDLL = DllOpen("user32.dll")
#include <Misc.au3>
#include <AutoItConstants.au3>
HotKeySet("{F1}","Terminate")

MsgBox(64, "Cheeky Breeki Quick Peeki", "IMPORTANT: Make sure to run this as program as Admin. Also, Set [ as Lean left And ] as Lean right in control options for this to work. Make sure Q and E keys are NOT set for the lean keys, This program still uses Q and E to lean though. Press F1 to Terminate the Script.")

While 1
   LeanL()
   LeanR()
WEnd

Func LeanL()
   While _IsPressed("51", $hDLL)
	  Send("[")
		 Sleep(165)
			MouseDown($MOUSE_CLICK_LEFT)
			Sleep(60)
			MouseUp($MOUSE_CLICK_LEFT)
		 Send("[")
	  Sleep(120)
   WEnd
EndFunc

Func LeanR()
   While _IsPressed("45", $hDLL)
	  Send("]")
		 Sleep(165)
			MouseDown($MOUSE_CLICK_LEFT)
			Sleep(60)
			MouseUp($MOUSE_CLICK_LEFT)
		 Send("]")
	  Sleep(120)
   WEnd
EndFunc

Func Terminate()
   Exit 1
EndFunc
Quote Originally Posted by bruh97 View Post
Code:
Local $hDLL = DllOpen("user32.dll")
#include <Misc.au3>
#include <AutoItConstants.au3>
HotKeySet("{F1}","Terminate")

MsgBox(64, "Cheeky Breeki Quick Peeki", "IMPORTANT: Make sure to run this as program as Admin. Also, Set [ as Lean left And ] as Lean right in control options for this to work. Make sure Q and E keys are NOT set for the lean keys, This program still uses Q and E to lean though. Press F1 to Terminate the Script.")

While 1
   LeanL()
   LeanR()
WEnd

Func LeanL()
   While _IsPressed("51", $hDLL)
	  Send("[")
		 Sleep(165)
			MouseDown($MOUSE_CLICK_LEFT)
			Sleep(60)
			MouseUp($MOUSE_CLICK_LEFT)
		 Send("[")
	  Sleep(120)
   WEnd
EndFunc

Func LeanR()
   While _IsPressed("45", $hDLL)
	  Send("]")
		 Sleep(165)
			MouseDown($MOUSE_CLICK_LEFT)
			Sleep(60)
			MouseUp($MOUSE_CLICK_LEFT)
		 Send("]")
	  Sleep(120)
   WEnd
EndFunc

Func Terminate()
   Exit 1
EndFunc
nice contribution
any quick peek for ahk !! ??
Hi, I was wondering where I can insert this code so I can use it? Thanks, please reply!!
Quote Originally Posted by skyx54 View Post
any quick peek for ahk !! ??
Dont use AHK unless you want ban

Quote Originally Posted by KillerSpectrax View Post
Hi, I was wondering where I can insert this code so I can use it? Thanks, please reply!!
Obfuscate and compile
Quote Originally Posted by bruh97 View Post
Dont use AHK unless you want ban



Obfuscate and compile
Where i can do this?
Literally just change the code in such a way that it works but is hard to reverse by eye. Throw a ton of random junk in there if you want. He gave you the easy code, now you have to use those variables and functions to make the hard code (which isn't THAT hard).
how to do that obfuscate
Posts 19 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?