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 › Superjump VB6 code?

QuestionSuperjump VB6 code?

Posts 1–6 of 6 · Page 1 of 1
ltkort213
ltkort213
Superjump VB6 code?
Yo guys,

please help me, I am making a hack, but I have adresses and that kind of things. And all hacks work, but when I use super jump, I come under the level! What did I do wrong Please help me! This is my superjump VB6 code:

Code:
Private Sub timer2_timer()
Dim Superjump As Long
Dim Superjump1 As Long
Call ReadALong("Warrock", &H896E28, Superjump)
Superjump1 = Superjump + &H180
Call WriteALong("Warrock", Superjump1, 2500)
End Sub
Greetings LTKort213.
#1 · 19y ago
DI
dikkind
Ive got the same problem it works only in emblem.. :S
#2 · 19y ago
KI
kingkicker8
this should work:

Dim jump As Long
Dim jump1 As Long
Dim jump3 As Single
Call ReadALong("WarRock", &H896E28, jump)
jump1 = jump + &H180
jump3 = Text2.Text
Call WriteAFloat("WarRock", jump1, jump3)
#3 · 19y ago
ZeaS
ZeaS
i made it with hotkey ^^ and with text... so you can switch the high....

Private Sub Timer4_Timer()
If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeySpace) Then
Dim Superjump As Long
Dim Superjump1 As Long
Dim Superjump2 As Single
Call ReadALong("WarRock", &H896E28, Superjump)
Superjump1 = Superjump + &H180
Superjump2 = Text1.Text
Call WriteAFloat("WarRock", Superjump1, Superjump2)

End If
End Sub
#4 · 19y ago
dezer
dezer
without including readafloat and writeafloat functions in module those codes wont work
so add this to ur module:
Code:
Public Function ReadAFloat(gamewindowtext As String, address As Long, valbuffer As Single)
    Dim hwnd As Long
    Dim pid As Long
    Dim phandle As Long
    hwnd = FindWindow(vbNullString, gamewindowtext)
    If (hwnd = 0) Then
        MsgBox "The Game Is Not Working", vbCritical, "Error"
        End
        Exit Function
    End If
    
    GetWindowThreadProcessId hwnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
        MsgBox "Can't get ProcessId", vbCritical, "Error"
        Exit Function
    End If

    ReadProcessMem phandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
End Function

Public Function WriteAFloat(gamewindowtext As String, address As Long, value As Single)
    Dim hwnd As Long
    Dim pid As Long
    Dim phandle As Long
    
    hwnd = FindWindow(vbNullString, gamewindowtext)
    If (hwnd = 0) Then
        MsgBox "The Game Is Not Working", vbCritical, "Error"
        End
        Exit Function
    End If

    GetWindowThreadProcessId hwnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
        MsgBox "Can't get ProcessId", vbCritical, "Error"
        Exit Function
    End If

    WriteProcessMemory phandle, address, value, 4, 0&
    CloseHandle hProcess
End Function
#5 · 19y ago
ltkort213
ltkort213
OK guys thats cool thnx
#6 · 19y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • need help plz vb6 codeing fast registrationBy cjg333 in WarRock - International Hacks
    3Last post 19y ago
  • Something is wrong! :S -- Problem with VB6 codeBy Darky in WarRock - International Hacks
    13Last post 19y ago
  • Superjump Macro CodesBy ExodusPKER in CrossFire Hacks & Cheats
    43Last post 16y ago
  • Awsome VB6 code includes invisBy llvengancell in WarRock - International Hacks
    2Last post 19y ago
  • [ Help ] VB6 Coding not workingBy ilovepie21 in Visual Basic Programming
    17Last post 18y ago

Tags for this Thread

None