Hai, I already make wallhack for cabal helix,but after use get dc/closed windows!!
Here the base addres and script
Helix Base Address :
WALLHACK :
Cheat Engine Trainer
function WallhackClick(sender)
start=readInteger("helixmain.exe+C838D8")+0x40814
for i=0,0x3ffff,4 do
writeBytes(start+i,0)
end
end
Autoit Script
;Cabal Helix Wallhack 2023
#include <NomadMemory.au3>
#include <memory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
Global $WallHack = GUICreate("WallHack", 186, 138, 192, 124)
Global $Button1 = GUICtrlCreateButton("WALLHACK", 24, 32, 145, 65)
GUICtrlSetFont(-1, 14, 800, 0, "MS Sans Serif")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Global $PID = ProcessExists('helixmain.exe')
Global $proc=_MemoryOpen($PID)
Global $cabalmain = _MemoryModuleGetBaseAddress($PID,"helixmain.exe")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_setwallhack()
EndSwitch
WEnd
Func _setwallhack()
WinActivate( "HELIX | v23.10.19.1252" )
$wh=_MemoryRead($cabalmain+0xC838D8,$proc,"DWORD") +0x40814;
$test=_MemoryRead($wh,$proc,"DWORD")
For $i=$wh to $wh+0x3fffB step 4
_MemoryWrite($i,$proc,0,"DWORD")
Next
EndFunc