Results 1 to 9 of 9
  1. #1
    iownageXD's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Australia
    Posts
    1,231
    Reputation
    61
    Thanks
    179
    My Mood
    Angelic

    [TuT] Making a trainer

    This is a tutorial for trainers. 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 don't have any pointers.

    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.*********.com/?4s3t9veb8o2 (M-E-D-I-A-F-I-R-E)
    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 paste 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)
    
    Add this code if you have a simple pointer without HEX:
    dim string1 as long
    dim string2 as integer
    string1 = readdll("cshell.dll") 'module of your address
    string2 = "&H" + Hex(string1 + &H451014)
    Call WriteMemory(string2,1,2)
    WriteLongPointer = Replace this with the WriteLongPointer code in your module (should be on left side of module maker)
    WriteMemory = Replace this with the WriteMemory code in your module (should be on left side of module maker)
    cshell.dll = Module address
    &H451014 = &H + address/pointer
    &H2C = &H + your Offset
    1 = value you want
    2 = type of byte

    Now that the timer part is done. You need buttons to enable then, go back to your toolbox and add a button.
    If you want timer1 to be enabled then add this code to the button:
    Code:
    Timer1.Enabled = True
    If you want timer1 to be disabled then add this code to the button:
    Code:
    Timer1.Enabled = False
    To finish off building your trainer:
    Go to File > Save All.
    Go to Build > Build <APPLICATION NAME>

    Building it will fail IF you have any errors in the error window (ignore warnings). There will always be an error popping up because of the module maker, feel free to use a different one.

    P.S If you get any warnings about the return value thingy, double click on it. And above "End function", just add "Return Nothing"

  2. The Following 2 Users Say Thank You to iownageXD For This Useful Post:

    apezwijn (10-09-2009),JIGS4W (09-30-2009)

  3. #2
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,971
    My Mood
    Happy
    Followed the guide, everything. BUT HOW do i add values and frezees? Exampel in this post:
    https://www.mpgh.net/forum/164-combat...addresses.html

    PM, if you can help me!
    -Rest in peace leechers-

    Your PM box is 100% full.

  4. #3
    iownageXD's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Australia
    Posts
    1,231
    Reputation
    61
    Thanks
    179
    My Mood
    Angelic
    Quote Originally Posted by hejsan1 View Post
    Followed the guide, everything. BUT HOW do i add values and frezees? Exampel in this post:
    https://www.mpgh.net/forum/164-combat...addresses.html

    PM, if you can help me!
    you didn't follow the guide properly, it shows already >.<

  5. #4
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    I am a beginning of VB and I would like to learn more. This 'thingy' could help me.


  6. #5
    legendaryhack b leet's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    42
    Reputation
    11
    Thanks
    4
    My Mood
    Breezy
    No outside links iOwnage, remember that when you bring the tuts you have written on your site over here

  7. #6
    iownageXD's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Australia
    Posts
    1,231
    Reputation
    61
    Thanks
    179
    My Mood
    Angelic
    Quote Originally Posted by legendaryhack b leet View Post
    No outside links iOwnage, remember that when you bring the tuts you have written on your site over here
    well, they can change it themselves, close this, or ban me.
    idc

  8. #7
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,971
    My Mood
    Happy
    ...Don´t understand, explain easier
    -Rest in peace leechers-

    Your PM box is 100% full.

  9. #8
    orty08's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    Germany
    Posts
    11
    Reputation
    10
    Thanks
    1
    this module maker was for warrock hacks but now it's detected -.-

  10. #9
    apezwijn's Avatar
    Join Date
    Feb 2007
    Gender
    male
    Location
    The Netherlands
    Posts
    1,525
    Reputation
    22
    Thanks
    682
    Thank you, this worked.

Similar Threads

  1. [TuT] Making a trainer with VB..
    By iOwnage in forum Visual Basic Programming
    Replies: 3
    Last Post: 09-06-2009, 12:41 AM
  2. [TUT] Making trainer in UCE
    By nabbos in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-27-2007, 03:18 AM
  3. Making New Trainer.
    By obsedianpk in forum WarRock - International Hacks
    Replies: 13
    Last Post: 04-21-2007, 05:26 AM
  4. [help] making a trainer
    By analog70 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 03-18-2007, 05:09 AM
  5. Jack's Tut-Making Tut
    By Jackal in forum Tutorials
    Replies: 8
    Last Post: 07-15-2006, 01:51 AM

Tags for this Thread