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 › code fo superman?

code fo superman?

Posts 1–11 of 11 · Page 1 of 1
gangstavexx
gangstavexx
code fo superman?
hi, ima mod on another site, and i make hacks for public, and since the ones i posted has gotten detected, i am planning on makin a new one this weekend.
anywayz, i jus wanted to know how i make the super man hack?
jus copy and paste wat the code looks like and if timers, wat i should set intervals too

thx

p.s. i may post the trainer here too
#1 · 19y ago
PE
personperson
Freeze the Z coordinates.
#2 · 19y ago
WR
wrasia
f(X)= 3X+2^6
#3 · 19y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by gangstavexx View Post
hi, ima mod on another site, and i make hacks for public, and since the ones i posted has gotten detected, i am planning on makin a new one this weekend.
anywayz, i jus wanted to know how i make the super man hack?
jus copy and paste wat the code looks like and if timers, wat i should set intervals too

thx

p.s. i may post the trainer here too
ok i am still planing this but i have a code SUGGESTION in my head, i think it may work but i am not totally sure so here i go:

Code:
' For X and Y, split it up or it will go so fuckin crazy :P
Dim X As Long
Dim X1 As Long
Dim Y As Long
Dim Y1 As Long
Call ReadALong("Warrock", &H8B5288, X)
Call ReadALong("Warrock", &H8B5288, Y)
X1 = X + &H17C
Y1 = Y + &H184
X1 = X1 + "20"
Y1 = Y1 + "20"
i think that may work :-/ and if you look at it you will understand why.
#4 · 19y ago
PE
personperson
Quote Originally Posted by Iam"iDude" View Post
ok i am still planing this but i have a code SUGGESTION in my head, i think it may work but i am not totally sure so here i go:

Code:
' For X and Y, split it up or it will go so fuckin crazy :P
Dim X As Long
Dim X1 As Long
Dim Y As Long
Dim Y1 As Long
Call ReadALong("Warrock", &H8B5288, X)
Call ReadALong("Warrock", &H8B5288, Y)
X1 = X + &H17C
Y1 = Y + &H184
X1 = X1 + "20"
Y1 = Y1 + "20"
i think that may work :-/ and if you look at it you will understand why.
Wouldn't that make you move infinitely and off the map if you put that in a timer? Also, I don't think using quotes on those numbers is a good idea... wouldn't VB read them as strings?
#5 · 19y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by personperson View Post
Wouldn't that make you move infinitely and off the map if you put that in a timer? Also, I don't think using quotes on those numbers is a good idea... wouldn't VB read them as strings?
the reason i put
Code:
"20"
is because you havent declared 20 a variable so it wouldnt work if you didnt put the ""
#6 · 19y ago
PE
personperson
Well, I usually get errors when I do things like that, so I just dim it an integer, then call the variable.
#7 · 19y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by personperson View Post
Well, I usually get errors when I do things like that, so I just dim it an integer, then call the variable.
here is some code the way he is talking about

Code:
' For X and Y, split it up or it will go so fuckin crazy :P
Dim TeleJump As Long
Dim X As Long
Dim X1 As Long
Dim Y As Long
Dim Y1 As Long
Call ReadALong("Warrock", &H8B5288, X)
Call ReadALong("Warrock", &H8B5288, Y)
X1 = X + &H17C
Y1 = Y + &H184
X1 = X1 + TeleJump
Y1 = Y1 + TeleJump
i think that should work to.
#8 · 19y ago
Iam"iDude"
Iam"iDude"
!!! OH NOSE!!!
just found out that i had a code error i had forgot to call it back into war rock :P

Code:
Dim X As Long
Dim X1 As Long
Dim Y As Long
Dim Y1 As Long
Call ReadALong("Warrock", &H8B5288, X)
Call ReadALong("Warrock", &H8B5288, Y)
X1 = X + &H17C
Y1 = Y + &H184
X1 = X1 + "20"
Y1 = Y1 + "20"
Call WriteALong("Warrock", X1)
Call WriteALong("Warrock", Y1)
now some1 tell me if that works :-D
#9 · 19y ago
blipi
blipi
I think that yes, but in Call write a long u must put 1 parameter more, the value (I think long value )
#10 · 19y ago
gangstavexx
gangstavexx
Quote Originally Posted by Iam"iDude" View Post
just found out that i had a code error i had forgot to call it back into war rock :P

Code:
Dim X As Long
Dim X1 As Long
Dim Y As Long
Dim Y1 As Long
Call ReadALong("Warrock", &H8B5288, X)
Call ReadALong("Warrock", &H8B5288, Y)
X1 = X + &H17C
Y1 = Y + &H184
X1 = X1 + "20"
Y1 = Y1 + "20"
Call WriteALong("Warrock", X1)
Call WriteALong("Warrock", Y1)
now some1 tell me if that works :-D
cool dude thx, im tryit right now, good thing im workin n my trainer right now XD
#11 · 19y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • Superjump and Superman Codes??Somebody help me with these codes??By jokuvaan11 in WarRock - International Hacks
    3Last post 19y ago
  • a Couple WPE Weapon codes?By phil823 in WarRock - International Hacks
    16Last post 20y ago
  • SupermanBy Dave84311 in General
    81Last post 20y ago
  • Pre-Regerstration - E3 CodesBy Dave84311 in WarRock - International Hacks
    67Last post 20y ago
  • hi can any1 help me make or find a cheat codeBy CrUsHa in WarRock - International Hacks
    3Last post 20y ago

Tags for this Thread

None