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 › Programming › Visual Basic Programming › [Tutorial] How to set hotkeys to more advanced hacks.

[Tutorial] How to set hotkeys to more advanced hacks.

Posts 1–14 of 14 · Page 1 of 1
WR
wr194t
[Tutorial] How to set hotkeys to more advanced hacks.
Hello again. You may remember my last tutorial: How to set hotkeys to basic hacks

In this tutorial i am going to show you how to set hotkeys to hacks like:

Super Jump/Sky Stormer
NFD (No Fall Damage)
Weapons
Swim

Lets start with Super Jump. So this is what your Super Jump code will probably look like:

Code:
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call ReadALong("WarRock", &HAddress, JSER)
JSER1 = JSER + &HOffset
JSER2 = Text1.Text (Or a value.)
Call WriteAFloat("WarRock", JSER1, JSER2)
Ok make a timer with a interval of 1, enabled true and use this code:

Code:
If GetKeyPress (vbKeyMButton) Then
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call ReadALong("WarRock", &HAddress, JSER)
JSER1 = JSER + &HOffset
JSER2 = Text1.Text (Or a value.)
Call WriteAFloat("WarRock", JSER1, JSER2)
Note: If you hold the middle mouse button you will stay in the air which is like Sky Stormer.

NFD (No Fall Damage):

Code:
Dim NFD As Long
Dim NFD1 As Long
Call ReadALong("Warrock", &HAddress, NFD)
NFD1 = NFD + &HOffset
Call WriteAFloat("Warrock", NFD1, -2000)
You will need 2 timers (1 timer for On and another for Off.)

Both timers intervals should be 1 and both enabled true.
Now for the On kotkey:

Code:
If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyN) Then
Timer?.Enabled = True (? = Whatever the timer number is with your NFD code.)
And for Off:

Code:
If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyM) Then
Timer?.Enabled = False
Dim NFD As Long
Dim NFD1 As Long
Call ReadALong("Warrock", &HAddress, NFD)
NFD1 = NFD + &HOffset
Call WriteAFloat("Warrock", NFD1, 0)
Weapons:

Code:
Dim Shotgun1 As Long
Dim Shotgun2 As Long
Call ReadALong("Warrock", &HAddress, NFD)
Shotgun2 = Shotgun1 + &HOffset
Call WriteAFloat("Warrock", Shotgun2, Value)
I imagine that this code is in a button so this one can be really simple:

Code:
If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyA) Then Command?_Click (? = Whatever the Command button number is with your Weapons code.
Last but not least Swim:

Code:
Dim SSwim1 As Long
Dim SSwim2 As Long
Call ReadALong("Warrock", &HAddress, NFD)
SSwim2 = SSwim1 + &HOffset
Call WriteAFloat("Warrock", SSwim2, 4)
Setting hotkeys to Swim is the same as NFD.

+rep me if this tutorial was helpful/useful to you.

Credits: wr194t (AKA 5c0tt.)
#1 · edited 18y ago · 18y ago
OL
olie122333
lol i still cant give you a rep as apparently i "need to share them round" (message given by the forum software)
#2 · 18y ago
WR
wr194t
It's alright. That message just means that you need to +rep other people before you can +rep me again.
#3 · 18y ago
FE
Feniks
What i must to add for command button on super jump
I added the code for timer
And command button is empty
#4 · 18y ago
WR
wr194t
Quote Originally Posted by Feniks View Post
What i must to add for command button on super jump
I added the code for timer
And command button is empty
Your command button should be like this:
Code:
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call ReadALong("WarRock", &HAddress, JSER)
JSER1 = JSER + &HOffset
JSER2 = Text1.Text (Or a value.)
Call WriteAFloat("WarRock", JSER1, JSER2)
And your hotkey timer should be like this:
Code:
If GetKeyPress (vbKeyMButton) Then
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call ReadALong("WarRock", &HAddress, JSER)
JSER1 = JSER + &HOffset
JSER2 = Text1.Text (Or a value.)
Call WriteAFloat("WarRock", JSER1, JSER2)
End If
#5 · 18y ago
FE
Feniks
When i played on Marien I clicked on command button of super-jump i felt to underground and hotkey doesnt work
#6 · 18y ago
WR
wr194t
Quote Originally Posted by Feniks View Post
When i played on Marien I clicked on command button of super-jump i felt to underground and hotkey doesnt work
What did you set the value as? Post your code.
#7 · 18y ago
FE
Feniks
Command Button:
Code:
Private Sub Command1_Click()
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call readalong(&H129EF90, JSER)
JSER1 = JSER + &H178
JSER2 = Text1.Text
Call writeafloat(JSER1, 2000)
End Sub
Timer (Enabled - False, Interval - 1)
Code:
Private Sub Timer1_Timer()
If GetKeyPress(vbKeyMButton) Then
Dim JSER As Long
Dim JSER1 As Long
Dim JSER2 As Single
Call readalong(&H129EF90, JSER)
JSER1 = JSER + &H178
JSER2 = Text1.Text
Call writeafloat(JSER1, 2000)
End If
End Sub
Text1.textbox
Code:
2000
#8 · 18y ago
WR
wr194t
That all seems correct. It could be the address or offset, I'm not too sure.
#9 · 18y ago
FE
Feniks
Hotkey doesnt working! Because when i clicked on command button i am jumped!! How i can fix this problem?
#10 · 18y ago
WR
wr194t
Quote Originally Posted by Feniks View Post
Hotkey doesnt working! Because when i clicked on command button i am jumped!! How i can fix this problem?
Have you tried this for the hotkey:
Code:
If GetKeyPress(vbKeyMButton) Then Command1_Click
#11 · 18y ago
MA
martinleemet
why hacks dount work in me computer
#12 · 18y ago
Hispiforce
Hispiforce
Because your a choob that bumps threads.
#13 · 18y ago
Sp4rt4n
Sp4rt4n
thread bumper.....just stfu and leave
#14 · 18y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • [Tutorial] How to set hotkeys to your basic hacks.By wr194t in Visual Basic Programming
    4Last post 18y ago
  • [Tutorial]How to set all maps FREEBy tony94 in WarRock - International Hacks
    18Last post 19y ago
  • [Tutorial] How To Mack HotKeys On VBBy TheRedEye in WarRock - International Hacks
    32Last 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

Tags for this Thread

None