[Tutorial] How To Make Your (Ingame & AOB-Scan) trainer

06/16/2015 20:42 naruhinasakusasu#16
Quote:
Originally Posted by BeatZz- View Post
I would be happy if you could make a tutorial for vb.net because I have no idea how to include the aob scan in vb.net

I was a little bit confused because AutoIt said that "_memorywrite" is not declared so I was to stupid to work with copy&paste q.q :confused:

The Tutorial itselfe was pretty nice I want more like this :handsdown:

Here the Code :



Edit: Now I fixed the error but it still dont work q.q Im too stupid
:D :D ofcourse it will not work cuz u didnt add the aob of inf sp in $InfSP

hamada where i can find the normal and hacked values
06/16/2015 23:28 BeatZz-#17
Quote:
Originally Posted by naruhinasakusasu View Post
:D :D ofcourse it will not work cuz u didnt add the aob of inf sp in $InfSP

hamada where i can find the normal and hacked values
Im totaly confused q.q WTF

The normal and hacked values are here :

[Only registered and activated users can see links. Click Here To Register...]
06/16/2015 23:58 HaMaDa..#18
InfSp Aob: D945F88BE55DC3CCCCCCCCCCCCCC558BEC51894D

Normal: 2348303833
Hacked: 2348303835
Credits for the aob "D3v1n3r" <3
06/17/2015 00:11 MASCH4RA#19
Thanks for this very nice tutorial MATE!! Helped me much
06/17/2015 00:24 HaMaDa..#20
Quote:
Originally Posted by likado View Post
Thanks for this very nice tutorial MATE!! Helped me much
Don't forget my thanks :D
06/17/2015 18:49 Xonivion#21
" Gj? "
Do you want to this?
^
oke, good job for-
-

---
--
06/17/2015 23:43 HaMaDa..#22
Quote:
Originally Posted by Xonivion View Post
" Gj? "
Do you want to this?
^
oke, good job for-
-

---
--
You're so greedy...
06/19/2015 15:16 BeatZz-#23
Hey Hamada,
now Iīm struggling for like 20 hours and I dont know what to do.
I think in my script is no mistake but it wont work.

Code :

I would be very happy if you could take a look and answer what I did wrong. I start it with Slicktorīs Bypass and start the script when I`m in a room. Then I activate InfSp but it wont work.
06/19/2015 18:19 naruhinasakusasu#24
Quote:
Originally Posted by BeatZz- View Post
Hey Hamada,
now Iīm struggling for like 20 hours and I dont know what to do.
I think in my script is no mistake but it wont work.

Code :

I would be very happy if you could take a look and answer what I did wrong. I start it with Slicktorīs Bypass and start the script when I`m in a room. Then I activate InfSp but it wont work.
in (0x7ffffff fffffffff) , u need to remove the space so it will be (0x7fffffffffffffff)
06/19/2015 20:08 HaMaDa..#25
Quote:
Originally Posted by BeatZz- View Post
Hey Hamada,
now Iīm struggling for like 20 hours and I dont know what to do.
I think in my script is no mistake but it wont work.

Code :

I would be very happy if you could take a look and answer what I did wrong. I start it with Slicktorīs Bypass and start the script when I`m in a room. Then I activate InfSp but it wont work.
$InfSpMEMSCAN = _MEMSCAN($OPEN,$InfSp,0x0000000000000000,0x7ffffff fffffffff)
Remove the space and remove ;4Bytes you just need long

Don't forget to add Case $Checkbox1,2.... before if Guictrl....
Cuz i forgot to add it.
06/19/2015 23:59 [Beatrice]#26
Quote:
0x0000000000000000,0x7fffffffffffffff
y u do dis ;_;
06/20/2015 00:03 HaMaDa..#27
I love spam it :D
06/20/2015 15:04 alexmen10#28
Quote:
Originally Posted by HaMaDa.. View Post
$InfSpMEMSCAN = _MEMSCAN($OPEN,$InfSp,0x0000000000000000,0x7ffffff fffffffff)
Remove the space and remove ;4Bytes you just need long

Don't forget to add Case $Checkbox1,2.... before if Guictrl....
Cuz i forgot to add it.
Fixed Code Work:
Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NoMadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("BeatZz Trainer", 338, 100, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Inf Sp", 144, 40, 65, 17)
$Button1 = GUICtrlCreateButton("Exit", 136, 64, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

$Pid = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($Pid)

$InfSp = "D945F88BE55DC3CCCCCCCCCCCCCC558BEC51894D"
$InfSpMEMSCAN = _MEMSCAN($OPEN,$InfSp,0x0000000000000000,0x7fffffffffffffff)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Exit
case $Checkbox1
If GUICtrlRead($Checkbox1) = 1 Then
_memorywrite($InfSpMEMSCAN,$open,2348303835,"long")
Else
_memorywrite($InfSpMEMSCAN,$open,2348303833,"long")
EndIf

EndSwitch
WEnd


Func _MEMSCAN($AH_HANDLE, $AB_ARRAY, $BASE_ADD = 0x00400000, $STOP_ADD = 0xFFFFFFFF)
For $ADD = $BASE_ADD To $STOP_ADD Step 51200 - (StringLen($AB_ARRAY) / 2)
StringRegExp(_MREAD($ADD, $AH_HANDLE, "byte[" & 51200 & "]"), $AB_ARRAY, 1, 2)
If Not @Error Then
Return StringFormat("0x%.8X", $ADD + ((@extended - StringLen($AB_ARRAY) - 2) / 2))
EndIf
Next
EndFunc

Func _MOPEN($IV_PID, $IV_DESIREDACCESS = 2035711, $IV_INHERITHANDLE = 1)
If Not ProcessExists($IV_PID) Then
SetError(1)
Return 0
EndIf
Local $AH_HANDLE[2] = [DllOpen("kernel32.dll")]
If @error Then
SetError(2)
Return 0
EndIf
Local $AV_OPENPROCESS = DllCall($AH_HANDLE[0], "int", "OpenProcess", "int", $IV_DESIREDACCESS, "int", $IV_INHERITHANDLE, "int", $IV_PID)
If @error Then
DllClose($AH_HANDLE[0])
SetError(3)
Return 0
EndIf
$AH_HANDLE[1] = $AV_OPENPROCESS[0]
Return $AH_HANDLE
EndFunc

Func _MREAD($IV_ADDRESS, $AH_HANDLE, $SV_TYPE = "dword")
If Not IsArray($AH_HANDLE) Then
SetError(1)
Return 0
EndIf
Local $V_BUFFER = DllStructCreate($SV_TYPE)
If @error Then
SetError(@error + 1)
Return 0
EndIf
DllCall($AH_HANDLE[0], "int", "ReadProcessMemory", "int", $AH_HANDLE[1], "int", $IV_ADDRESS, "ptr", DllStructGetPtr($V_BUFFER), "int", DllStructGetSize($V_BUFFER), "int", "")
If Not @error Then
Local $V_VALUE = DllStructGetData($V_BUFFER, 1)
Return $V_VALUE
Else
SetError(6)
Return 0
EndIf
EndFunc

Func _MCLOSE($AH_HANDLE)
If Not IsArray($AH_HANDLE) Then
SetError(1)
Return 0
EndIf
DllCall($AH_HANDLE[0], "int", "CloseHandle", "int", $AH_HANDLE[1])
If Not @error Then
DllClose($AH_HANDLE[0])
Return 1
Else
DllClose($AH_HANDLE[0])
SetError(2)
Return 0
EndIf
EndFunc
06/20/2015 18:30 HaMaDa..#29
That's right alexmen and i already fixed his code at skype :)
06/21/2015 03:14 {I}gnite#30
hamada come skype