You are on page 1of 1

LUA SCRIPT

//////////////////////////////////////////////
start=readInteger("107BF80")+0x40814
for i=0,0x3ffff,4 do
writeBytes(start+i,0)
end
///////////////////////////////////////////

function WallhackClick(sender)
start=readInteger("cabalmain.exe+BB2670")+0x40814
for i=0,0x3ffff,4 do
writeBytes(start+i,0)
end
end

////////////////////////////////////////////

AUTOIT

SetPrivilege("SeDebugPrivilege", 1)
#include <NomadMemory.au3>
Global $PID = ProcessExists('Cabalmain.exe')
Global $proc=_MemoryOpen($PID)
Global $cabalmain = _MemoryModuleGetBaseAddress($PID,"Cabalmain.exe")

(...)

Func _setwallhack()
$wh=_MemoryRead($cabalmain+0xC7BF80,$proc,"DWORD")+0x40814;
$test=_MemoryRead($wh,$proc,"DWORD")
For $i=$wh to $wh+0x3ffff step 4
_MemoryWrite($i,$proc,0,"DWORD")
Next
EndFunc

You might also like