Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other Semi-Popular First Person Shooter Hacks › WarRock - International Hacks › [TUTORIAL]how to VB.net 2005 Trainers (Incl. secure passwords)

[TUTORIAL]how to VB.net 2005 Trainers (Incl. secure passwords)

Posts 1–15 of 21 · Page 1 of 2
kyo
kyo
[TUTORIAL]how to VB.net 2005 Trainers (Incl. secure passwords)
Heya guys

i thought vb6 is kinda lame so i wanna make my trainers in VB.net (2005)
and it works perfectly

this is how I've done it
[Requirements]
- VB.net 2005 http://msdn.microsof*****m/vstudio/express/vb/ FREE express download version
-a brain (yes.... you need one, so leachers/idiots/.. don't come whining)

any basic trainer is made up of
memory reader, memory writer & timers

i've made the comments green.
Code:
Public Sub ReadMemory() 'this will read the stamina adress and output it as a vallue between 0-100

        'Checking if the process is avaiable
        Dim myProcesses As Process() = Process.GetProcessesByName("Warrock")
        If myProcesses.Length = 0 Then
            status.Text = "Warrock is not running." 'Optional
            Exit Sub
        End If
        Dim processHandle As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, myProcesses(0).Id)
        If processHandle = IntPtr.Zero Then
            status.Text = "Failed to open Warrock process." 'Optional
            Exit Sub
        End If

        Dim Address(0 To 1) As Integer 'Address Location
        Dim vBuffer(0 To 1) As Long    'VBuffer is the value being read
        Dim convert(0 To 1) As Single  'Convert vBuffer to something readable
        Dim ret0 As Byte() = Nothing   'Also another converting process

        Address(0) = &H7DB120 'Address location.Can be in Heximal(&H+Address) and Decimal
        Address(0) = &H7DB120

        ReadProcessMemory(processHandle, Address(0), vBuffer(0), 4, 0) 'ReadProcessMemory from processHandle(Warrock.exe) from AddressLocation(Address(0)) store Value into vbuffer(0) and have it be 4 bytes long.

        ret0 = BitConverter.GetBytes(vBuffer(0)) 'Read bytes from vbuffer(0)
        convert(0) = BitConverter.ToSingle(ret0, 0) 'Convert bytes into Single http://msdn2.microsof*****m/en-us/library/47zceaw7.aspx

        Label1.Text = convert(0)



    End Sub
This is a working stamina hack.

Code:
 Private Sub WriteMemorystamina()

        'Checking if the process is avaiable
        Dim myProcesses As Process() = Process.GetProcessesByName("Warrock")
        If myProcesses.Length = 0 Then
            status.Text = "Warrock is not running." 'Optional
            Exit Sub
        End If
        Dim processHandle As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, myProcesses(0).Id)
        If processHandle = IntPtr.Zero Then
            status.Text = "Failed to open Warrock process." 'Optional
            Exit Sub
        End If

        Dim Address(0 To 1) As Integer 'Address Location
        Dim vBuffer(0 To 1) As Long    'VBuffer is the value being read

        Address(0) = &H7DB120 'Address location.Can be in Heximal(&H+Address) and Decimal
        Address(0) = &H7DB120

        vBuffer(0) = "1120403456" 'Giving the vBuffer(0) a value to write

        VirtualProtectEx(processHandle, Address(0), 4, PAGE_READWRITE, 0) 'Set memory protection at Address(0) + 4 bytes to Read+Write mode
        WriteProcessMemory(processHandle, Address(0), vBuffer(0), 4, 0) 'WriteProcessMemory to processHandle(warrock.exe) to AddressLocation(Address(0)) set Value to vbuffer(0) and have it be 4 bytes long.
Once these 2 are in place it's simple
make a timer that calls the memory write

Code:
    Private Sub spawntimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles spawntimer.Tick
        WriteMemoryspawn()
    End Sub
and then make a button that enables the timer

Code:
 Private Sub cmdstamina_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        spawntimer.Enabled = True
    End Sub
Adding SECURE password login
whenever you add a password in vb6 it's easy to crack becouse that code can be easely decompiled and read (atleast if you keep the password in plain text)

so my idea was to make it an MD5 hash

To create this go to your vb2005 project and add new item -> login form
i removed the username for this project

First you must add the MD5 encyption

at the top of your code (above "public class loginform1") add
Code:
Imports System.Text
Imports System.Security.Cryptography.MD5
then add this funtion
Code:
  Function getMd5Hash(ByVal input As String) As String
        ' Create a new instance of the MD5 object.
        Dim md5Hasher As Security.Cryptography.MD5 = Security.Cryptography.MD5.Create()

        ' Convert the input string to a byte array and compute the hash.
        Dim data As Byte() = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input))

        ' Create a new Stringbuilder to collect the bytes
        ' and create a string.
        Dim sBuilder As New StringBuilder()

        ' Loop through each byte of the hashed data 
        ' and format each one as a hexadecimal string.
        Dim i As Integer
        For i = 0 To data.Length - 1
            sBuilder.Append(data(i).ToString("x2"))
        Next i

        ' Return the hexadecimal string.
        Return sBuilder.ToString()

    End Function
Now comes the password itselve
Code:
    Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
        Dim input As String
        Dim password As String

        input = PasswordTextBox.Text
        password = "02a57f160413feed2ded106d47179f54"

        If getMd5Hash(input) = password Then

            Form1.Visible = True
            Me.Visible = False
            MsgBox(getMd5Hash(PasswordTextBox.Text))

        Else
            MsgBox("Wrong Password, Application is closing", MsgBoxStyle.Critical, "Wrong Password")
            Me.Close()
        End If
    End Sub
you might be thinking... what the hell is that password
well it's an encrypted version of what someone types in
"02a57f160413feed2ded106d47179f54" in this case is the MD5 encrypted version of the string "warrock"
so if someone enters warrock they can use the hack. but if someone reads your code... they don't know what the password is...

now i know md5 can be cracked in some cases... but thats not what this is about...

I hope you all enjoyed this tutorial so far
feel free to ask any questions and give feedback.

i did NOT program all of this, parts are taken off the web & some parts are from MSDN. i've just edited it to make it work for Warrock hacking.
#1 · edited 19y ago · 19y ago
jokuvaan11
jokuvaan11
I tried
I think vb6 is better to understand (NoooBS)
And that is some fking express edition...I didn't like it!!
#2 · 19y ago
kyo
kyo
no, it's VB.net
express= free programming client... has nothing to do with the language
and yes vb6 is more noob proof...
#3 · 19y ago
castaway
castaway
.NET is harder, but its cool stuff, ima try this out, thnx mate
#4 · 19y ago
DI
dikketr0l
VB6 is easyer and faster...
#5 · 19y ago
smartie
smartie
A nice tutorial, very usefull for many people i guess.
#6 · 19y ago
castaway
castaway
Quote Originally Posted by dikketr0l View Post
VB6 is easyer and faster...
n00p, vb6 is only easier not faster -.-
#7 · 19y ago
kyo
kyo
Quote Originally Posted by thimo View Post
n00p, vb6 is only easier not faster -.-

yep
and i must admit it isn't THAT hard
and it's a LOT faster
maybe it's just me but i'm getting a lot less lag from my new vb.net trainer compared to my vb6
#8 · 19y ago
wessel93
wessel93
I learned Visual Basic 6.0 when i was 11 year old, i't ownes Hard.
Never worked with VB.net i't looks almost the same.

This looks usefull
#9 · 19y ago
ST
Stranger00
yeah vb.net doesn't look much different. Y is vb6 lame? I almost got vb.net but I heard bad thing about it(don't remember what though). Is it worth a try?
#10 · 19y ago
DO
Dokuda
Hmm, Awsome Kyo ^^ keep this up

Actually one of the phew doing something to the forum ^^ ( without being a total leeching scamming son of a fagoot like Blackdrag0 thingy.. ^^)
#11 · 19y ago
jokuvaan11
jokuvaan11
Quote Originally Posted by Stranger00 View Post
yeah vb.net doesn't look much different. Y is vb6 lame? I almost got vb.net but I heard bad thing about it(don't remember what though). Is it worth a try?
I didn't like it and I removed it Cuz if you need more buttons and stuff go to VB6 project and choose components there you get much more buttons and some other stuff
!!!!!!!!!!!!!!!!!!!!!!!!
#12 · 19y ago
kyo
kyo
more buttons... and more buttons makes a better trainer?...
#13 · 19y ago
scooby107
scooby107
VB.net is about 50 times better than VB6. VB6 is a load of wank.
#14 · 19y ago
ltkort213
ltkort213
Quote Originally Posted by kyo View Post
Heya guys

i thought vb6 is kinda lame so i wanna make my trainers in VB.net (2005)
and it works perfectly

this is how I've done it
[Requirements]
- VB.net 2005 http://msdn.microsof*****m/vstudio/express/vb/ FREE express download version
-a brain (yes.... you need one, so leachers/idiots/.. don't come whining)

any basic trainer is made up of
memory reader, memory writer & timers

i've made the comments green.
Code:
Public Sub ReadMemory() 'this will read the stamina adress and output it as a vallue between 0-100

        'Checking if the process is avaiable
        Dim myProcesses As Process() = Process.GetProcessesByName("Warrock")
        If myProcesses.Length = 0 Then
            status.Text = "Warrock is not running." 'Optional
            Exit Sub
        End If
        Dim processHandle As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, myProcesses(0).Id)
        If processHandle = IntPtr.Zero Then
            status.Text = "Failed to open Warrock process." 'Optional
            Exit Sub
        End If

        Dim Address(0 To 1) As Integer 'Address Location
        Dim vBuffer(0 To 1) As Long    'VBuffer is the value being read
        Dim convert(0 To 1) As Single  'Convert vBuffer to something readable
        Dim ret0 As Byte() = Nothing   'Also another converting process

        Address(0) = &H7DB120 'Address location.Can be in Heximal(&H+Address) and Decimal
        Address(0) = &H7DB120

        ReadProcessMemory(processHandle, Address(0), vBuffer(0), 4, 0) 'ReadProcessMemory from processHandle(Warrock.exe) from AddressLocation(Address(0)) store Value into vbuffer(0) and have it be 4 bytes long.

        ret0 = BitConverter.GetBytes(vBuffer(0)) 'Read bytes from vbuffer(0)
        convert(0) = BitConverter.ToSingle(ret0, 0) 'Convert bytes into Single http://msdn2.microsof*****m/en-us/library/47zceaw7.aspx

        Label1.Text = convert(0)



    End Sub
This is a working stamina hack.

Code:
 Private Sub WriteMemorystamina()

        'Checking if the process is avaiable
        Dim myProcesses As Process() = Process.GetProcessesByName("Warrock")
        If myProcesses.Length = 0 Then
            status.Text = "Warrock is not running." 'Optional
            Exit Sub
        End If
        Dim processHandle As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, myProcesses(0).Id)
        If processHandle = IntPtr.Zero Then
            status.Text = "Failed to open Warrock process." 'Optional
            Exit Sub
        End If

        Dim Address(0 To 1) As Integer 'Address Location
        Dim vBuffer(0 To 1) As Long    'VBuffer is the value being read

        Address(0) = &H7DB120 'Address location.Can be in Heximal(&H+Address) and Decimal
        Address(0) = &H7DB120

        vBuffer(0) = "1120403456" 'Giving the vBuffer(0) a value to write

        VirtualProtectEx(processHandle, Address(0), 4, PAGE_READWRITE, 0) 'Set memory protection at Address(0) + 4 bytes to Read+Write mode
        WriteProcessMemory(processHandle, Address(0), vBuffer(0), 4, 0) 'WriteProcessMemory to processHandle(warrock.exe) to AddressLocation(Address(0)) set Value to vbuffer(0) and have it be 4 bytes long.
Once these 2 are in place it's simple
make a timer that calls the memory write

Code:
    Private Sub spawntimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles spawntimer.Tick
        WriteMemoryspawn()
    End Sub
and then make a button that enables the timer

Code:
 Private Sub cmdstamina_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        spawntimer.Enabled = True
    End Sub
Adding SECURE password login
whenever you add a password in vb6 it's easy to crack becouse that code can be easely decompiled and read (atleast if you keep the password in plain text)

so my idea was to make it an MD5 hash

To create this go to your vb2005 project and add new item -> login form
i removed the username for this project

First you must add the MD5 encyption

at the top of your code (above "public class loginform1") add
Code:
Imports System.Text
Imports System.Security.Cryptography.MD5
then add this funtion
Code:
  Function getMd5Hash(ByVal input As String) As String
        ' Create a new instance of the MD5 object.
        Dim md5Hasher As Security.Cryptography.MD5 = Security.Cryptography.MD5.Create()

        ' Convert the input string to a byte array and compute the hash.
        Dim data As Byte() = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input))

        ' Create a new Stringbuilder to collect the bytes
        ' and create a string.
        Dim sBuilder As New StringBuilder()

        ' Loop through each byte of the hashed data 
        ' and format each one as a hexadecimal string.
        Dim i As Integer
        For i = 0 To data.Length - 1
            sBuilder.Append(data(i).ToString("x2"))
        Next i

        ' Return the hexadecimal string.
        Return sBuilder.ToString()

    End Function
Now comes the password itselve
Code:
    Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
        Dim input As String
        Dim password As String

        input = PasswordTextBox.Text
        password = "02a57f160413feed2ded106d47179f54"

        If getMd5Hash(input) = password Then

            Form1.Visible = True
            Me.Visible = False
            MsgBox(getMd5Hash(PasswordTextBox.Text))

        Else
            MsgBox("Wrong Password, Application is closing", MsgBoxStyle.Critical, "Wrong Password")
            Me.Close()
        End If
    End Sub
you might be thinking... what the hell is that password
well it's an encrypted version of what someone types in
"02a57f160413feed2ded106d47179f54" in this case is the MD5 encrypted version of the string "warrock"
so if someone enters warrock they can use the hack. but if someone reads your code... they don't know what the password is...

now i know md5 can be cracked in some cases... but thats not what this is about...

I hope you all enjoyed this tutorial so far
feel free to ask any questions and give feedback.

i did NOT program all of this, parts are taken off the web & some parts are from MSDN. i've just edited it to make it work for Warrock hacking.


nice tut my friend!!!
#15 · 19y ago
Posts 1–15 of 21 · Page 1 of 2

Post a Reply

Similar Threads

  • [Tutorial] How to VB.Net your trainerBy dezer in WarRock - International Hacks
    10Last post 19y ago
  • (Request) A tutorial on how to extract addresses from trainersBy englishpom in WarRock - International Hacks
    9Last post 19y ago
  • Advanced Hacking tutorial (How to find adresses for the coolest trainer functions)By nukeist_ in WarRock - International Hacks
    8Last post 19y ago
  • [Tutorial] How to create a Runnable - Ultra Easy VersionBy emisand in Gunz General
    13Last post 20y ago
  • [TUTORIAL]How to control an airplane :p and ofcourse insert itBy System79 in WarRock - International Hacks
    8Last post 20y ago

Tags for this Thread

None