Why farm Dungeons yourself when you can AutoIt them while you sleep:bandit: ?
Ok as promised here are two examples of how to use it.
One is a LUA Script Function for our Cheatengine users.
Create a little GUI with a Wallhack-button and assign my function.
Next is an AutoIt example for the people who prefer to script all kinds of stuff instead of playing themself. ;)
The pointers in these examples are for Cabal EU/DE/IT/.. (cabalonline.com)
Feel free to adjust them to your Client.
LUA Script
for wallhacking with Cheatengine
Code:
function WallhackClick(sender)
start=readInteger("fixedmain.exe+C7BF80")+0x40814
for i=0,0x3ffff,4 do
writeBytes(start+i,0)
end
end
AutoIt Code
for scripts and bots
ofcourse this requires NomadMemory.au3 Plugin.
Code:
SetPrivilege("SeDebugPrivilege", 1)
#include <NomadMemory.au3>
Global $PID = ProcessExists('fixedmain.exe')
Global $proc=_MemoryOpen($PID)
Global $cabalmain = _MemoryModuleGetBaseAddress($PID,"fixedmain.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
I will not answer LUA-Script or AutoIt related questions.
Take this as proof of concept and feel free to play with it.
So guys enjoy your new toys, create nice hacks and bots :rolleyes:
... enough spoonfeeding for today
Remember: whenever you leave the map or enter a dungeon, the collision map is back to normal. So no more WH until you re-apply.
:mofo:
I always wanted to post this smily..