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 › Visual Basic 6 codes

QuestionVisual Basic 6 codes

Posts 1–14 of 14 · Page 1 of 1
jokuvaan11
jokuvaan11
Visual Basic 6 codes
I am writing codes to Visual Basic 6,I have writed this:

Private Sub Command6_Click()
Call ReadALong("Warrock", &H7DB120, 1120403456)
End Sub

WHAT IS WRONG WITH THIS ??
This is must be UNLIMITED STAMINA !!
PLZ SEND ME ANSWER OR THIS RIGHT CODE?!?!?!
THEN I HAVE DONE MY 2nd TRAINER!!and I will post it for 30mins...
#1 · 19y ago
ST
Stranger00
use WriteAlong. Not read...
#2 · 19y ago
jokuvaan11
jokuvaan11
Ohhmg
Quote Originally Posted by Stranger00 View Post
use WriteAlong. Not read...
OH I AM SO STUPID

IS THIS RIGHT NOW:

Private Sub Command6_Click()
Call WriteALong("Warrock", &H7DB120, 1120403456)
End Sub
#3 · 19y ago
MS Word
MS Word
no, u must freeze it with a timer i think...
#4 · 19y ago
jokuvaan11
jokuvaan11
Timer!!
Quote Originally Posted by MS Word View Post
no, u must freeze it with a timer i think...
I already have timer to freeze that I just didn't write timer code here!!
#5 · 19y ago
Kung Fu Penguin31
Kung Fu Penguin31
yes you are supposed to freeze it , thats why its called unlimited stamina , it doesnt change .
#6 · 19y ago
kyo
kyo
Code:
Private Sub staminatimer_Timer()
Call WriteALong("WarRock", &H7DB120, 1120403456)
End Sub
Code:
Private Sub CmdStamina_Click()
If staminatimer.Interval = 400 Then
CmdStamina.Caption = "OFF"
staminatimer.Interval = 0
Else
staminatimer.Interval = 400
CmdStamina.Caption = "ON"
End If
End Sub
on off button with a 400 ms interval for the stamina reset (works fine)
#7 · 19y ago
cjg333
cjg333
yea kyo has it rt,you have to put the code in the timer to freeze,and put the rest in the button like kyo did,or just use a timer with hotkeys and do away with buttons.who wants to minimize and hit a button anymore.make hotkeys
#8 · 19y ago
scooby107
scooby107
Or why not do it like this:
Code:
Private Sub Timer1_Timer '//Stamina()
Call WriteALong("WarRock", &H7DB120, 1120403456)
End Sub

Private Sub Command1_Click '//Stamina On()
Timer1.Interval = 1
End Sub

Private Sub Command2_Click '//Stamina Off()
Timer1.Interval = 1
End Sub
#9 · edited 19y ago · 19y ago
Xosmi
Xosmi
Quote Originally Posted by scooby107 View Post
Or why not do it like this:
Code:
Private Sub Timer1_Timer '//Stamina()
Call WriteALong("WarRock", &H7DB120, 1120403456)
End Sub

Private Sub Command1_Click '//Stamina On()
Timer1.Interval = 1
End Sub

Private Sub Command10_Click '//Stamina Off()
Timer5.Interval = 1
End Sub

looking at your code you have 2 timers (timer1 and 5) to turn it on/off.
however, the off timer (5) just overwrites timer 1, wich is also still active. this might cause conflicts. also, you have no way to turn it back on, since the off function keeps running.

also, it's just plain excess code.

why use 2 timers if you can do with just one ?
#10 · 19y ago
scooby107
scooby107
Quote Originally Posted by Xosmi View Post
looking at your code you have 2 timers (timer1 and 5) to turn it on/off.
however, the off timer (5) just overwrites timer 1, wich is also still active. this might cause conflicts. also, you have no way to turn it back on, since the off function keeps running.

also, it's just plain excess code.

why use 2 timers if you can do with just one ?
Typo, sorry.
#11 · 19y ago
kyo
kyo
Quote Originally Posted by cjg333 View Post
Who wants to minimize and hit a button anymore.make hotkeys
use 2 screens ?

Quote Originally Posted by scooby107 View Post
Or why not do it like this:
Code:
Private Sub Timer1_Timer '//Stamina()
Call WriteALong("WarRock", &H7DB120, 1120403456)
End Sub

Private Sub Command1_Click '//Stamina On()
Timer1.Interval = 1
End Sub

Private Sub Command2_Click '//Stamina Off()
Timer1.Interval = 1
End Sub
that uses 2 buttons & you cant see in the program if the hack is active
#12 · 19y ago
scooby107
scooby107
Quote Originally Posted by kyo View Post
use 2 screens ?



that uses 2 buttons & you cant see in the program if the hack is active
So you add hotkeys, it isn't hard.

EDIT: Actually you are right, i would have messed up even if i add hotkeys. The hotkeys would only be activated if the button was clicked.
#13 · edited 19y ago · 19y ago
tednugent
tednugent
Post this in the code support section.

Someone move this...
#14 · 19y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • visual basic codingBy frendlyfire in General
    5Last post 16y ago
  • [Visual Basic]Code SDKBy NextGen1 in Open Source Releases
    66Last post 13y ago
  • [TUTORIAL'S]Visual Basic CodingBy Zoom in Combat Arms EU Hack Coding/Source Code
    4Last post 16y ago
  • Visual Basic Coding TeamBy Bombsaway707 in Combat Arms Discussions
    3Last post 16y ago
  • Cool Visual BASIC clock with code.By PandN in Visual Basic Programming
    0Last post 17y ago

Tags for this Thread

None