Well since everyone around here seems reluctant to release or even explain (due to ignorance or plain greediness) the autopot part of any bot i decided to share the functions i use in my personal bot.
Thank me if you find this post useful or not (i really dont see the point tho) i might expand this post adding some of my findings or features on my bot as i see necessary.
Note: use the Nomad memory management unit in your autoit project in order to compile or use my functions.
Code:
Func IsAutoPillOn() $Mem_Open = _MemoryOpen($ProcessID) $check = _MemoryRead($APActivate, $Mem_Open) _MemoryClose($Mem_Open) if $check > 0 Then return True Else return False EndIf EndFunc Func ActivateAutoPill($HPPercent,$MPPercent) $Mem_Open = _MemoryOpen($ProcessID) if not @error then _MemoryWrite($APActivate,$Mem_Open,1) ;activamos el autopill en el cliente _MemoryWrite($APhp,$Mem_Open,$HPPercent) ;configuramos el hp _MemoryWrite($APmp,$Mem_Open,$MPPercent) ;configuramos el mp _MemoryClose($Mem_Open) Else EndIf ;falta validaciones EndFunc
Thank me if you find this post useful or not (i really dont see the point tho) i might expand this post adding some of my findings or features on my bot as i see necessary.
Note: use the Nomad memory management unit in your autoit project in order to compile or use my functions.