also ich hab mit hilfe eines tutorials (s4 league section) mal versucht nen kleinen
trainer für KalOnline zu machen ;) er sollte Cooldown adressen ändern nun spuckt er mir aber nur Errors aus^^
was hab ich falsch gemacht?^^
er findet den Prozess irgendwie nicht auch wenn er offen ist.
trainer für KalOnline zu machen ;) er sollte Cooldown adressen ändern nun spuckt er mir aber nur Errors aus^^
was hab ich falsch gemacht?^^
PHP Code:
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#RequireAdmin
GuiCreate("KalOnline Cooldown Hack",170,370,392,109)
$button1=GuiCtrlCreateButton("Hack",42,276,80,80)
$Input1=GuiCtrlCreateInput("-1",53,53,50,20)
$Input2=GuiCtrlCreateInput("-1",53,125,50,20)
$Input3=GuiCtrlCreateInput("-1",53,207,50,20)
$label1=GuiCtrlCreateLabel("Pimp",67,35,43,15)
$label2=GuiCtrlCreateLabel("Rev.",67,106,43,15)
$label3=GuiCtrlCreateLabel("Eb.",67,188,43,15)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Button1()
EndSwitch
Wend
Func Button1()
$PID = ProcessGetStats("engine.exe")
If $PID=-1 Then MsgBox(16,"Error","Process not found!")
$hprocess = _MemoryOpen($PID)
$Pimp = GUICtrlRead($Input1)
$Rev = GUICtrlRead($Input2)
$Eb = GUICtrlRead($Input3)
_MemoryWrite(0x4E9C8F, $hprocess, $Pimp, 20)
_MemoryWrite(0x4E9C86, $hprocess, $Rev, 20)
_MemoryWrite(0x4E9C5F, $hprocess, $Eb, 20)
If Not @Error then Exit
If @Error then MsgBox(16,"Error","Could not change values")
EndFunc
er findet den Prozess irgendwie nicht auch wenn er offen ist.