Needing CE Help :D

03/15/2014 09:07 Djordyy#1
Can someone teach me how to find Adresses with Cheat Engine?
And how to make a hack working?
Because when i make a hack i use the right adresses, But it wont work when i start it.
And how to make a ingame hack?

If someone can teach me that.
Add me on skype ;)
03/15/2014 09:45 mvenus2#2
Quote:
Originally Posted by Djordyy View Post
Because when i make a hack i use the right adresses, But it wont work when i start it.
Maybe a script mistake?


For an ingamehack u need vb.net
03/15/2014 09:47 .S1mpl3*#3
First learn C++. Then u can start writing hacks. C&P is not a good way.
03/15/2014 09:49 -SoulCr4ck-#4
Quote:
Originally Posted by mvenus2 View Post
Maybe a script mistake?


For an ingamehack u need vb.net
Nop ;D
You can make a ingame Trainer in autoit :x
And i think nobody will teach you how qq
03/15/2014 10:06 Djordyy#5
Quote:
Originally Posted by x[Deadline View Post
Nop ;D
You can make a ingame Trainer in autoit :x
And i think nobody will teach you how qq
You might be right,
I asked of my skype friends to.
So i hope they can help me then.

Quote:
Originally Posted by .S1mpl3* View Post
First learn C++. Then u can start writing hacks. C&P is not a good way. [Only registered and activated users can see links. Click Here To Register...]
If it was a video of s4 league it would have helped me,
I have no idea what to do with it now.
03/15/2014 10:19 Hybrid~#6
Ingame trainer can be made in autoit too.
When u write to proc mem, you check if the checkbox is checked right?
If it is, then u write the hacked value to memory. But if the checkbox isnt checked? The program does nothing.
That's why you need an else statement.
In vb: (I dont really remember autoit anymore)
Code:
If checkbox1.checked = true then 'if the checkbox is checked then it will do something
'Write hacked value
Else 'if its not, it will do something else.
'Write normal value
End If
I would provide more help but I am on my phone ;)
03/15/2014 10:19 mvenus2#7
Quote:
Originally Posted by x[Deadline View Post
Nop ;D
You can make a ingame Trainer in autoit :x
And i think nobody will teach you how qq
: /

Quote:
Originally Posted by Hybrid~ View Post
Ingame trainer can be made in autoit too.
When u write to proc mem, you check if the checkbox is checked right?
If it is, then u write the hacked value to memory. But if the checkbox isnt checked? The program does nothing.
That's why you need an else statement.
In vb: (I dont really remember autoit anymore)
Code:
If checkbox1.checked = true then 'if the checkbox is checked then it will do something
'Write hacked value
Else 'if its not, it will do something else.
'Write normal value
End If
I would provide more help but I am on my phone ;)

Yeah maybe u can... But i prefere vb.net (:
03/15/2014 10:25 Hybrid~#8
Quote:
Originally Posted by mvenus2 View Post
: /




Yeah maybe u can... But i prefere vb.net (:
It's not maybe.
It works.
03/15/2014 10:29 mvenus2#9
Quote:
Originally Posted by Hybrid~ View Post
It's not maybe.
It works.
okok u won :D
03/15/2014 10:41 Djordyy#10
Quote:
Originally Posted by Hybrid~ View Post
It's not maybe.
It works.
Im going to try it the source code you gived. ;)
Wish me luck ;)

Should it look like this?

If checkbox1.checked = true then
837533829
Else
829800581
End If


Hybrid, I send you my source code i have now, Because i have no idea how it should work.
03/15/2014 11:09 Hybrid~#11
Quote:
Originally Posted by Djordyy View Post
Im going to try it the source code you gived. ;)
Wish me luck ;)

Should it look like this?

If checkbox1.checked = true then
837533829
Else
829800581
End If


Hybrid, I send you my source code i have now, Because i have no idea how it should work.
Please, learn the language.
The example I posted is in visual basic.
I remembered that autoit dont have a timer.
So you will need a button too, to refresh the trainer.
Code:
 case $button1
_YourFuncName ()
Now, the func
Code:
Func _YourFuncName ()
$w = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
		_MemoryWrite(Address,$OPEN,"hacked Value","Type-probably long")
Else if ; or just else, I dont remember
_MemoryWrite (Address, $ OPEN,"normal value","type-as I said, long")
	EndIf
; here u do the same with the other checkboxes.
EndFunc
03/15/2014 11:23 Djordyy#12
Quote:
Originally Posted by Hybrid~ View Post
Please, learn the language.
The example I posted is in visual basic.
I remembered that autoit dont have a timer.
So you will need a button too, to refresh the trainer.
Code:
 case $button1
_YourFuncName ()
Now, the func
Code:
Func _YourFuncName ()
$w = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
		_MemoryWrite(Address,$OPEN,"hacked Value","Type-probably long")
Else if ; or just else, I dont remember
_MemoryWrite (Address, $ OPEN,"normal value","type-as I said, long")
	EndIf
; here u do the same with the other checkboxes.
EndFunc
Sorry that im so noob in making hacks :/ Should it look like this?

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
case $button1
_REFRESH ()

EndSwitch
WEnd

Func _REFRESH ()
$w = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(Address,$OPEN,"837533829","long")
Else if
_MemoryWrite (Address, $ OPEN,"829800581","long")
EndIf
03/15/2014 11:40 Hybrid~#13
:facepalm:
replace Address with ur address -.-
03/15/2014 11:41 Djordyy#14
Quote:
Originally Posted by Hybrid~ View Post
:facepalm:
replace Address with ur address -.-
Yea, I saw that later. :)

[Only registered and activated users can see links. Click Here To Register...]

I didnt see any problems in my source code?

Problem fixed!

The "Else If" needed to be only "Else"

The game close when i click on REFRESH :)

[Only registered and activated users can see links. Click Here To Register...]
03/15/2014 15:21 mvenus2#15
Quote:
Originally Posted by Djordyy View Post
Yea, I saw that later. :)

[Only registered and activated users can see links. Click Here To Register...]

I didnt see any problems in my source code?

Problem fixed!

The "Else If" needed to be only "Else"

The game close when i click on REFRESH :)

[Only registered and activated users can see links. Click Here To Register...]


If u use the values of dark, then the godmode is buggy and lets ur game crash on some computer! :/