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 › [TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)

Lightbulb[TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)

Posts 1–15 of 15 · Page 1 of 1
jokuvaan11
jokuvaan11
[TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)
Do nOT LEECH THIS
INFORMATION
Clause after ' is instruction
DON'T COPY THIS RIGHT TO YOUR TRAINER CUZ IT DON'T WORK THEN
Here it comes:

Value Box:
1.Start VB6
2.Open project or start new
3.First you make button for Guns and write code:
Code:
    Dim gun As Long
    Dim gun1 As Long
    Dim gun2 As Long
    Call ReadALong("WarRock", &H¤address¤, gun)
    gun1 = gun + &H¤pointer¤
    gun2 = TextX 'TextX is text box where you write number of your gun
    Call WriteALong("WarRock", gun1, gun2)
Then you just make textbox and run program
you can write number of gun to the textbox!

PassWord:
1.start VB6
2.open project or start new
3.Make new Form, create textbox and timer
4.Set timer interval to 100
5.write this code to timer:

Code:
If GetKeyPress(vbKeyReturn) Then   'return mean "ENTER"
   If Text1.Text = "write password here" Then  'here you write your own PW
      Form1.Hide   'If your password Form Is called Form1 write Form1 here
      Form2.Show  'If your Trainer Form Is called Form2 write Form2 here
End If
End If   'remember 2x end if
now just start program and write your password

HAVE A NICE DAY!!!
#1 · 19y ago
DI
dikketr0l
The password doesn't work....
#2 · 19y ago
dezer
dezer
better password protection:
on ur project, click on Form1 or however its colled for u, chose Add, then Form, chose Log in Dialog. Doubleclick OK, here's where u set the password:
Code:
If txtPassword = "password" Then
just change the "password" to any string or combination of letters/numbers, so it can be like:
Code:
If txtPassword = "asd12a234" Then
password will be asd12a234
the username doesnt matter, can be left as empty blank.
thats the OK code:
Code:
Private Sub cmdOK_Click()
    'check for correct password
    If txtPassword = "asd" Then
        'place code to here to pass the
        'success to the calling sub
        'setting a global var is the easiest
        LoginSucceeded = True
        Me.Hide
    Else
        MsgBox "Invalid Password, try again!", , "Login"
        txtPassword.SetFocus
        SendKeys "{Home}+{End}"
    End If
End Sub
After Me.Hide place YourFormName.Show.

on the right side of ur screen there's a tree listing, right click Project1 or however ur project is called, then do YourProjectName Properties... and at Startup Object choose frmLogin. U can simply delete the username textbox or code it so it will check for username too.

Attached example app with login
#3 · edited 19y ago · 19y ago
jokuvaan11
jokuvaan11
It Is Your Style I Have My Own!!
#4 · 19y ago
dezer
dezer
some1 said ur isnt working
#5 · 19y ago
mains3rv3r
mains3rv3r
the password code looks very familiar...
#6 · 19y ago
dezer
dezer
its yours :/
#7 · 19y ago
mains3rv3r
mains3rv3r
Quote Originally Posted by dezer View Post
its yours :/
oh well... what's new...
#8 · 19y ago
kyo
kyo
note that any clear text password in VB6 can be cracked by anyone with a little brain in about 2 minutes
(if you don't believe it, make one and send it to me )
#9 · 19y ago
mains3rv3r
mains3rv3r
Hmmm you're thinking of using a decompiler... if I really wanted to I could easily encrypt the entire file and you wouldn't be able to decompile anything... yes I know it can be done because I do it with others that are made this way, but if you can do this, then I don't see why you're not trusted to have the hack... but it can be stopped the way you're thinking.
#10 · 19y ago
kyo
kyo
personaly i prefer to just encrypt the password into an md5 hash.
works perfectly
#11 · 19y ago
ltkort213
ltkort213
so..............
this is the wright code??:
Code:
Private Sub Command1_Click()
Dim gun As Long
    Dim gun1 As Long
    Dim gun2 As Long
    Call ReadALong("WarRock", &H896E28, gun)
    gun1 = gun + &H4C
    gun2 = Text1
    Call WriteALong("WarRock", gun1, gun2)
End Sub
#12 · 19y ago
jokuvaan11
jokuvaan11
Quote Originally Posted by ltkort213 View Post
so..............
this is the wright code??:
Code:
Private Sub Command1_Click()
Dim gun As Long
    Dim gun1 As Long
    Dim gun2 As Long
    Call ReadALong("WarRock", &H896E28, gun)
    gun1 = gun + &H4C
    gun2 = Text1
    Call WriteALong("WarRock", gun1, gun2)
End Sub
YES THAT IS RIGHT CODE I THINK!!
You must cheack just address and pointer
#13 · 19y ago
M-
M-Tune
Quote Originally Posted by dikketr0l View Post
The password doesn't work....
Damn that 'value box' thing was Copy-pasted from my topic!
LEECHER BAN HIM HES' NOOB
#14 · 19y ago
jokuvaan11
jokuvaan11
I did this TUT myself
#15 · 19y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Similar Threads

  • Tut: how to make cheeseBy ace76543 in General
    14Last post 19y ago
  • [Request]Tut how to make his own bypassBy BurakG in WarRock - International Hacks
    3Last post 19y ago
  • [Tut]How to Make KoWarrock Account EasyBy EyalZamir in WarRock Korea Hacks
    181Last post 18y ago
  • (TUT)how to make your own warrock menuBy aprill27 in WarRock - International Hacks
    0Last post 19y ago
  • [TuT]How to make a button to start WarrockBy str1k3r21 in Visual Basic Programming
    8Last post 18y ago

Tags for this Thread

None