AHK script for cs:go

Ask gaming related questions (AHK v1.1 and older)
KassabianJr
Posts: 1
Joined: 21 Mar 2023, 11:43

AHK script for cs:go

Post by KassabianJr » 21 Mar 2023, 12:01

So, I recently discovered a script that allows players playing CS:GO to force use r_drawothermodels 2.

Code: Select all

#Include classMemory.ahk
gui Add, Text, cPurple, Milky.cc FREE CSGO WH
gui, -caption
gui, add, text, x135 y1 h15 w15 gCls,
gui, add, picture, x0 y0 w150 h55, 
gui, add, checkbox, cpurple x20 y20 vWH gWH, On/Off
guicontrol, , WH, 1
gui, color,141415
gui, show, w150 h55



OnMessage(0x0201, "WM_LBUTTONDOWN")


WinSet, Transparent, %TransVal%
WM_LBUTTONDOWN() {
	PostMessage, 0xA1, 2,,, A
}



setbatchlines -1
Process, Wait, csgo.exe
csgo := new _ClassMemory("ahk_exe csgo.exe", "", hProcess)
if !IsObject(csgo)
{
if (hProcess = "")
msgbox class memory not correctly installed. Or the (global class) variable "_ClassMemory" has been overwritten
msgbox A_LastError %A_LastError%
ExitApp
}
 
base := csgo.getModuleBaseAddress("client.dll")
 
Pattern := [0x33, 0xC0, 0x83, 0xFA, "??", 0xB9, 0x20]
 
address := csgo.modulePatternScan("client.dll", Pattern*)
offsetwallhack := (address - base) + 4
 
WH:
t := !t
 
Data := t
Size := 1
 
VarSetCapacity(pBuffer, Size, 0)
NumPut(Data, pBuffer, "Uchar")
 
csgo.writeRaw(base + offsetwallhack, &pBuffer, Size)
return


Cls:
exitapp
return


guiclose:
exitapp
return
[Mod edit: [code][/code] tags added.]
[Mod edit: Moved topic to AHK v1 help.]

I would like a fix that doesn't allow players to enable that, preferably on sourcepawn.
Maybe even an anticheat for ahk, preventing CS:GO players to use an ahk.
Cheers!

fluroahk
Posts: 1
Joined: 11 May 2023, 02:35
Contact:

Re: AHK script for cs:go

Post by fluroahk » 11 May 2023, 04:56

Please give credit to where it came from :)

https://www.youtube.com/watch?v=qjP5pkuFgBQ

- fluro

cloudmiloriAOE
Posts: 2
Joined: 29 Jul 2023, 08:32

Re: AHK script for cs:go

Post by cloudmiloriAOE » 29 Jul 2023, 08:37

Hello , the wallhack wont detect bought agents .

cloudmiloriAOE
Posts: 2
Joined: 29 Jul 2023, 08:32

Re: AHK script for cs:go

Post by cloudmiloriAOE » 29 Jul 2023, 08:57

lastly , where can i modify the ahk if i want to remove the allies backbones color . i want only the enemy chams.

Post Reply

Return to “Gaming Help (v1)”