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 › help making trainer vb6

help making trainer vb6

Posts 1–8 of 8 · Page 1 of 1
platinum92
platinum92
help making trainer vb6
hey i am making my first trainer in vb6 could anyone tell me if this form is good


Private Sub Command1_Click()
Timer1.Interval = 1
End Sub

Private Sub Command10_Click()
Timer1.Interval = 0
End Sub

Private Sub Command2_Click()
Timer1.Interval = 0
End Sub

Private Sub Command3_Click()
Dim shotgun As Long
Dim shotgun1 As Long
Call ReadALong("Warrock", &H8B5288, shotgun)
shotgun1 = shotgun + &H4C
Call WriteALong("Warrock", shotgun1, 34)
End Sub

Private Sub Command4_Click()
Timer1.Interval = 1
End Sub

Private Sub Command5_Click()
Timer1.Interval = 0
End Sub

Private Sub Command6_Click()
Timer1.Interval = 1
End Sub

Private Sub Command7_Click()
Timer1.Interval = 0
End Sub

Private Sub Command8_Click()
Timer1.Interval = 1
End Sub

Private Sub Command9_Click()
Timer1.Interval = 1
End Sub

Private Sub Timer1_Timer()
Call WriteALong("WarRock", &H7F2B34, 1120403456)
End Sub

Private Sub Timer2_Timer()
Call WriteALong("Warrock", &H943A54, 0)
Call WriteALong("Warrock", &H943A55, 0)
Call WriteALong("Warrock", &H943A56, 0)
Call WriteALong("Warrock", &H943A57, 0)
Call WriteALong("Warrock", &H943A58, 0)
Call WriteALong("Warrock", &H943A59, 0)
End Sub

Private Sub Timer3_Timer()
Call WriteALong("Warrock", &H943A50, 0)
Call WriteALong("Warrock", &H943A52, 0)
Call WriteALong("Warrock", &H943A51, 0)
Call WriteALong("Warrock", &H943A53, 0)
End Sub

Private Sub Timer4_Timer()
Call WriteALong("Warrock", &HB56F60, 0)
End Sub

Private Sub Timer5_Timer()
Call WriteALong("Warrock", &HB4C7D0, 4)
End Sub
#1 · 19y ago
juppeli
juppeli
No it's not, all of your command buttons adjust only this timer:
Code:
Private Sub Timer1_Timer()
Call WriteALong("WarRock", &H7F2B34, 1120403456)
End Sub
So, as example, if you want to get this
Code:
Private Sub Timer2_Timer()
Call WriteALong("Warrock", &H943A54, 0)
Call WriteALong("Warrock", &H943A55, 0)
Call WriteALong("Warrock", &H943A56, 0)
Call WriteALong("Warrock", &H943A57, 0)
Call WriteALong("Warrock", &H943A58, 0)
Call WriteALong("Warrock", &H943A59, 0)
End Sub
timer work, it's like (to on)

Code:
Private Sub Command3_Click()
Timer2.Interval = 1
End Sub
and to off

Code:
Private Sub Command4_Click()
Timer2.Interval = 0
End Sub
Notice number of timer (eg. Timer2.Interval = 0).
Correct me if im wrong
#2 · 19y ago
Grim09
Grim09
Were you programming stoned? If so I don't blame you; it's fun...

But the guy above me is right^^
#3 · 19y ago
Nishant2213
Nishant2213
well it looks good..

im just kidding ...i know shit..lmfao
#4 · 19y ago
platinum92
platinum92
Quote Originally Posted by Grim09 View Post
Were you programming stoned? If so I don't blame you; it's fun...

But the guy above me is right^^
had a couple beers it was late i was tired
#5 · 19y ago
platinum92
platinum92
Quote Originally Posted by juppeli View Post
No it's not, all of your command buttons adjust only this timer:
Code:
Private Sub Timer1_Timer()
Call WriteALong("WarRock", &H7F2B34, 1120403456)
End Sub
So, as example, if you want to get this
Code:
Private Sub Timer2_Timer()
Call WriteALong("Warrock", &H943A54, 0)
Call WriteALong("Warrock", &H943A55, 0)
Call WriteALong("Warrock", &H943A56, 0)
Call WriteALong("Warrock", &H943A57, 0)
Call WriteALong("Warrock", &H943A58, 0)
Call WriteALong("Warrock", &H943A59, 0)
End Sub
timer work, it's like (to on)

Code:
Private Sub Command3_Click()
Timer2.Interval = 1
End Sub
and to off

Code:
Private Sub Command4_Click()
Timer2.Interval = 0
End Sub
Notice number of timer (eg. Timer2.Interval = 0).
Correct me if im wrong
thanks man i finished it gonna test it now
#6 · 19y ago
UN
unseenss
and its not Timer.Interval=1/0

its Timer.Enabled=True/False or 1/0
#7 · 19y ago
juppeli
juppeli
Quote Originally Posted by unseenss View Post
and its not Timer.Interval=1/0

its Timer.Enabled=True/False or 1/0
I would like to hear why it can't be this: Timer.Interval=1/0?
#8 · 19y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • [help] making a trainerBy analog70 in WarRock - International Hacks
    6Last post 19y ago
  • Help making warrock wepon trainer. Needs to be undetectedBy shadowsecret in WarRock - International Hacks
    8Last post 19y ago
  • help with makeing trainersBy damanis1 in WarRock - International Hacks
    4Last post 19y ago
  • Trying to make trainer, and need some helpBy xpector in WarRock - International Hacks
    0Last post 19y ago
  • nedd help to make trainerBy mheeniac in WarRock - International Hacks
    5Last post 19y ago

Tags for this Thread

None