This is a spoonfed tutorial. It will have everything you'll need to make a trainer using VB 2008. You will need pointers from CE or MHS first. This is not recommended for you if you are not advanced in any of those.
First of all, you need to start a project.
File > New Project > Name your project > Ok
Now you should see "Form1". If you wanna rename it, right click > propertys. At the bottom rgiht corner, it should show "Text" which is it's name. Rename that.
For the next part, you'll need to add 2 new modules.
Here's a DL for a module maker -
https://www.********e.com/?4s3t9veb8o2
Now open it up, and press on "Generate Fast Module"
After that, go to Project > Add new module - Under Module Module1, copy and paste the module there. And change WarRock to the process name.
Once again, go to Project > Add new Module. And copy and paaste this (change WarRock to process name):
Code:
'readdll
Public Function readdll(ByVal modulename As String)
Dim procmodule As ProcessModule
Dim constant1 As Integer
Dim constant2 As Long
Dim constant3 As Process() = Process.GetProcessesByName("WarRock")
If constant3.Length = 0 Then
Return 0
End If
For Each procmodule In constant3(0).Modules
If modulename = procmodule.ModuleName Then
constant1 = procmodule.BaseAddress
End If
Next
constant2 = constant1
Return constant2
End Function
Save both modules, and we'll continue on.
Go to View > Toolbox > All windows forms
So, select timer. And double click on it.
Then add this code if you have a pointer with a HEX.:
Code:
dim string1 as long
dim string2 as integer
string1 = readdll("cshell.dll")
string2 = "&H" + Hex(string1 + &H451014)
Call WriteLongPointer(string2, &H2C,1,2)