CE

05/24/2011 13:40 broksen#1
Hey,

got a problem with cheat engine, downloaded it from cheatengine.org. When im trying to open engine.exe i got error "Error while opening this process", whats wrong?;x
05/24/2011 13:49 IRknight1337#2
i guess ya using Win7 ?
05/24/2011 14:28 broksen#3
XP
05/24/2011 14:55 WTFomgSTFUlol#4
Try a different cheat engine?-_-'
05/24/2011 16:43 broksen#5
If u dont know the reason of that so u can just stfu,
05/24/2011 17:18 Fremo.#6
Quote:
Originally Posted by broksen View Post
If u dont know the reason of that so u can just stfu,
You insult him cus he doesnt know the reason?
You didnt tell him the reason.
05/24/2011 18:00 WTFomgSTFUlol#7
There are enough cheat engines that you can try, you don't have to try the original 1, they all are made to do the same things.
05/24/2011 19:30 KillerExtreme#8
haha fail ever think about because kal detect it? Or maybe your settings are wrong gl with fixing my uce works perfectly :)
05/24/2011 21:10 strik3r2k5#9
O: wannna cookie?
05/24/2011 21:26 broksen#10
kal isnt detecting it, just cant open the process, just wanted to try this uce because any player said that he made cd hack of LA while he is using meak pickhack
05/24/2011 22:27 Fremo.#11
[Only registered and activated users can see links. Click Here To Register...]

Try it..if it doesnt work then i dunno.
05/25/2011 00:13 IRknight1337#12
need working cheat engine? code one yourself ;>
its AutoIt source, not finished (need to add search address function) but works fine

Quote:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=..\..\..\Program Files\VMware\VMware Workstation\ico\project.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <Memory.au3>
#include <NomadMemory.au3>

;Value
$Value01 = 0
$Value02 = 7
$Value01 = Inputbox("Value1","Put the Number for Value1 in it"&@CRLF&"Dont click Cancel",$Value01,"", 120, 132)
$Value02 = Inputbox("Value2","Put the Number for Value2 in it"&@CRLF&"Dont click Cancel",$Value02,"", 120, 132)
$ActiveValue = 0
$Valueadress = 0
$Freeze = 0

;Adress
$Adress = "0x"
$Adress = Inputbox("Adress","Put the Adress in it"&@CRLF&"Dont click Cancel",$Adress,"", 120, 132)

;Hotkeys
Hotkeyset("{Numpad1}","Value1")
Hotkeyset("{Numpad2}","Value2")
Hotkeyset("{Numpad3}","Freeze")
Hotkeyset("{Numpad4}","ChangeAdress")
Hotkeyset("{Numpad5}","End")

call("Menu1")
;Menu 1
Func Menu1()
While 1
sleep(30)
$GUI1 = GUICreate("KaLLox","120","160")
GUISetState(@SW_SHOW)
$Button1 = GUICtrlCreateButton("Change Value into "&$Value01,"","40","120","20")
$Button2 = GUICtrlCreateButton("Change Value into "&$Value02,"","60","120","20")
$Button3 = GUICtrlCreateButton("Freeze Value","","80","120","20")
$Button4 = GUICtrlCreateButton("Change Adress","","100","120","20")
$Button6 = GUICtrlCreateButton("Change Value 1and2","","120","120","20")
$Button5 = GUICtrlCreateButton("End","","140","120","20")
$Adressshow = GUICtrlCreateLabel("Adress:"&$Adress,10,3)
$Valueshow = GUICtrlCreateLabel("Value"&$Valueadress,10,17)
While 1

$info = _MemoryOpen(ProcessExists("engine.exe"))
$Valueadress = _MemoryRead($Adress, $info, 'dword')
GUICtrlDelete($Valueshow)
$Valueshow = GUICtrlCreateLabel("Value"&$Valueadress,10,17)

$msg = GUIGetMsg()

Select

Case $msg = $Button1
Call("Value1")

Case $msg = $Button2
Call("Value2")

Case $msg = $Button3
Guidelete($GUI1)
Call("Freeze")

Case $msg = $Button4
Call("ChangeAdress")

Case $msg = $Button5
GUIDelete($GUI1)
Exit

Case $msg = $Button6
Call("ChangeValue")
EndSelect
WEnd
WEnd
EndFunc

Func Menu2()
While 1
sleep(30)
$GUI2 = GUICreate("KaLLox","120","160")
GUISetState(@SW_SHOW)
$Button1 = GUICtrlCreateButton("Change Value into "&$Value01,"","40","120","20")
$Button2 = GUICtrlCreateButton("Change Value into "&$Value02,"","60","120","20")
$Button3 = GUICtrlCreateButton("UnFreeze Value","","80","120","20")
$Button4 = GUICtrlCreateButton("Change Adress","","100","120","20")
$Button6 = GUICtrlCreateButton("Change Value 1and2","","120","120","20")
$Button5 = GUICtrlCreateButton("End","","140","120","20")
$Adressshow = GUICtrlCreateLabel("Adress:"&$Adress,10,3)
$Valueshow = GUICtrlCreateLabel("Value"&$Valueadress,10,17)
While 1

$info = _MemoryOpen(ProcessExists("engine.exe"))
_MemoryWrite($Adress, $info, $ActiveValue)
$info = _MemoryOpen(ProcessExists("engine.exe"))
$Valueadress = _MemoryRead($Adress, $info, 'dword')
GUICtrlDelete($Valueshow)
$Valueshow = GUICtrlCreateLabel("Value"&$Valueadress,10,17)

$msg = GUIGetMsg()

Select

Case $msg = $Button1
Call("Value1")

Case $msg = $Button2
Call("Value2")

Case $msg = $Button3
Guidelete($GUI2)
Call("Freeze")

Case $msg = $Button4
Call("ChangeAdress")

Case $msg = $Button5
GUIDelete($GUI1)
Exit

Case $msg = $Button6
Call("ChangeValue")
EndSelect
WEnd
WEnd
EndFunc


;Functions
Func Value1()
$prozess = WinGetProcess("KalOnline")
$info = _MemoryOpen(ProcessExists("engine.exe"))
_MemoryWrite($Adress, $info, $Value01)
$ActiveValue = 0
$info = _MemoryOpen(ProcessExists("engine.exe"))
$Valueadress = _MemoryRead($Adress, $info, 'dword')
EndFunc

Func Value2()
$prozess = WinGetProcess("KalOnline")
$info = _MemoryOpen(ProcessExists("engine.exe"))
_MemoryWrite($Adress, $info, $Value02)
$ActiveValue = 7
$info = _MemoryOpen(ProcessExists("engine.exe"))
$Valueadress = _MemoryRead($Adress, $info, 'dword')
EndFunc

Func ChangeAdress()
$Adress = "0x"
$Adress = Inputbox("Adress","Put the Adress in it"&@CRLF&"Dont click Cancel",$Adress,"", 120, 132)
EndFunc

Func Freeze()
IF $Freeze = 0 Then
$Freeze = 1
call("Menu2")
Else
$Freeze = 0
call("Menu1")
EndIf
EndFunc

Func ChangeValue()
$Value01 = 0
$Value02 = 0
$Value01 = Inputbox("Value1","Put the Number for Value1 in it"&@CRLF&"Dont click Cancel",$Value01,"", 120, 132)
$Value02 = Inputbox("Value2","Put the Number for Value2 in it"&@CRLF&"Dont click Cancel",$Value02,"", 120, 132)
$Button1 = GUICtrlCreateButton("Change Value into "&$Value01,"","40","120","20")
$Button2 = GUICtrlCreateButton("Change Value into "&$Value02,"","60","120","20")
EndFunc


Func End()
Exit
EndFunc
05/25/2011 16:28 broksen#13
@Fr..ome

ty, worked