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 › Hotkeys on VB6 Problem

Hotkeys on VB6 Problem

Posts 1–10 of 10 · Page 1 of 1
..
........
Hotkeys on VB6 Problem (getting bypass for help)
Why doesn't work any hotkey pls help...this is an example.

Private Sub Timer1_Timer()
If GetAsyncKeyState(18) <> 0 Then
Dim sj As Long
Dim sj1 As Long
Dim sj2 As Single
Call ReadALong1("Warrock", &HXXXXXX, sj)
sj1 = sj + &HXXX
sj2 = Text1.Text
Call WriteAFloat1("Warrock", sj1, Text1.Text)
End If
End Sub

(Intervall=100)

why it doesn't work??? +help



here another example that doesn't work:

Private Sub Timer2_Timer()
If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyNumpad1) Then
Dim shotgun As Long
Dim shotgun1 As Long
Call ReadALong1("Warrock", &HXXXXXX, shotgun)
shotgun1 = shotgun + &HXX
Call WriteALong1("Warrock", shotgun1, 34)
End If
End Sub

(Interval=1)

why it doesn't work??? +help

HELPPPPPPPPPPPPPPPPPPPPPPPPP!
#1 · edited 19y ago · 19y ago
..
........
so nobody want to help but when you help me and it works than you get a private bypass from me...sry for double posting
#2 · 19y ago
MA
Massaka
Maybe this works:

Private Sub TimerX_Timer()
If GetKeyPress(vbKeyX) Then
Dim shotgun As Long
Dim shotgun1 As Long
Call ReadALong1("Warrock", &HXXXXXX, shotgun)
shotgun1 = shotgun + &HXX
Call WriteALong1("Warrock", shotgun1, 34)
End If
End Sub


Good site for the keys : http://www.gh-gold.co.uk/keycodes.php
#3 · 19y ago
XO
Xocitus
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As _
Long) As Integer
'^^Define this....

Private Sub Timer1_Timer()
If GetAsyncKeyState(18) <> 0 Then
Dim sj As Long
Dim sj1 As Long
Dim sj2 As Single
Call ReadALong1("Warrock", &HXXXXXX, sj) 'Sure about the 1?
sj1 = sj + &HXXX
sj2 = Text1.Text
Call WriteAFloat1("Warrock", sj1, Text1.Text) 'Sure about the 1?
End If
End Sub

ps: do you get error or what?
#4 · 19y ago
..
........
no error but its so different i use my own module so i think nobody can help me out.

its so i make that right it work when i test with play button but when i test it in game nothing work with the hotkey...so i press a button then the hack work but not with hotkey
#5 · edited 19y ago · 19y ago
PE
Perunamuusi
I think it is becouse of that you have typed "Warrock" as the name of the process, but the real process name is "WarRock".
#6 · 19y ago
ZeaS
ZeaS
timer interval = 100 ?? the declaration into general?? it must work...
#7 · 19y ago
radnomguywfq3
radnomguywfq3
KK give my your module(I don't use WriteAByte Module So I won't steal it). And in vb.net getkeypress doesn't work you have to use a diffrent API, another thing in VB.net its
if(getkeypress(keys.x)) then
Well thats what it would be if it did work. I'll try to find a diffrent API for you.
#8 · edited 19y ago · 19y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by Perunamuusi View Post
I think it is becouse of that you have typed "Warrock" as the name of the process, but the real process name is "WarRock".
it doesnt matter as long as it is spelled the same.
#9 · 19y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by ........ View Post
here another example that doesn't work:

Private Sub Timer2_Timer()
If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyNumpad1) Then
Dim shotgun As Long
Dim shotgun1 As Long
Call ReadALong1("Warrock", &HXXXXXX, shotgun)
shotgun1 = shotgun + &HXX
Call WriteALong1("Warrock", shotgun1, 34)
End If
End Sub

(Interval=1)

why it doesn't work??? +help

HELPPPPPPPPPPPPPPPPPPPPPPPPP!
*cough* try
Code:
Private Sub Timer2_Timer()
If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyNumpad1) Then
Dim shotgun As Long
Dim shotgun1 As Long
Call ReadALong1("Warrock", &HXXXXXX, shotgun)
shotgun1 = shotgun + &HXX
Call WriteAFloat1("Warrock", shotgun1, 34)
End If
End Sub
edit: sorry for double post :-(
#10 · 19y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • text on a button in vb6 problemBy 123456789987654321 in WarRock - International Hacks
    2Last post 19y ago
  • Vb6 Problem With Weapon Code?By jokuvaan11 in WarRock - International Hacks
    6Last post 19y ago
  • vb6 problemBy NetNavi in WarRock - International Hacks
    20Last post 19y ago
  • [HELP] BF2 and vb6 problemBy herowarz in Battlefield 2 Hacks & Cheats
    5Last post 18y ago
  • vb6 problemBy dragoonleader69 in Visual Basic Programming
    8Last post 19y ago

Tags for this Thread

None