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 › C++/C Programming › Multi Hotkey teleport

Multi Hotkey teleport

Posts 1–6 of 6 · Page 1 of 1
CH
Chimpen
Multi Hotkey teleport
i have a problem with a teleport hack in warrock.

I try to make a hotkey for the teleport. I can make like Numpad1 saves the cords and numpad 2 goto the cords
But i try to make like this:
if i hold Shift + the numpad number it saves to the number
and then i onyl press the numpad nr i get to cords from the shift + the numpadnr.

Example:
i save the cord by pressing the Shift + Numpad 1
then i only press numpad 1 and go to the cords of Shift + numpad 1

heres my code:
Code:
Fo the save code i have:
if (GetAsyncKeyState(VK_SHIFT + VK_NUMPAD1))
		{
			the code for save the XYZ
		}

And the GOTO code is:
if (GetAsyncKeyState(VK_NUMPAD1))	
		{
			the code for get the cords of saved cords.
		}
it works to teleport but if the save dont work i only get to the edge of map like if you not put any cord, but i have press shift + numpad nr
#1 · 17y ago
why06
why06
It might have something to do with your keyboard. when u hit shift+numpad one u want the keyboard to send a shift command plus + #1 command. But wat it actually sends is:
Shift + !

Because Shift+1 = ! your keyboard never sends the one command.... So it reads shift + ! and a coord is never saved. See what I mean?

Tell me if Im wrong, but I think this might be the issue. If you changed the command to Control + 1 it might work.
#2 · 17y ago
zhaoyun333
zhaoyun333
The problem is GetAsyncKeyState(VK_SHIFT+VK_NUMPAD1 ) is wrong and so is GetAsyncKeystate(VK_NUMPAD1)

You have to use it in this format:
Code:
if(GetAsyncKeyState(VK_SHIFT)&1){
        if(GetAsyncKeyState(VK_NUMPAD1)&1){
              save s y z
     }
}

if(GetAsyncKeyState(VK_NUMPAD1)&1){
        teleport
}
Why06 it dosent read the exclamination mark...besides its the numpad shift + numpad dosent do anything
#3 · 17y ago
CH
Chimpen
Quote Originally Posted by zhaoyun333 View Post
The problem is GetAsyncKeyState(VK_SHIFT+VK_NUMPAD1 ) is wrong and so is GetAsyncKeystate(VK_NUMPAD1)

You have to use it in this format:
Code:
if(GetAsyncKeyState(VK_SHIFT)&1){
        if(GetAsyncKeyState(VK_NUMPAD1)&1){
              save s y z
     }
}

if(GetAsyncKeyState(VK_NUMPAD1)&1){
        teleport
}
Why06 it dosent read the exclamination mark...besides its the numpad shift + numpad dosent do anything

oh i good idea i test it now i diden´t realise that i could use 2 if stats ^^
#4 · 17y ago
why06
why06
Quote Originally Posted by zhaoyun333 View Post
You have to use it in this format:
Code:
if(GetAsyncKeyState(VK_SHIFT)&1){
        if(GetAsyncKeyState(VK_NUMPAD1)&1){
              save x y z
     }
}

if(GetAsyncKeyState(VK_NUMPAD1)&1){
        teleport
}
Why06 it dosent read the exclamination mark...besides its the numpad shift + numpad dosent do anything
Oh....... So that's how that works. I wasn't sure what the right format was. thx zhaoyun333. Think I'll just keep my mouth shut for now unless I know 100% wat I'm talking about, as wild guesses just add to the confusion.
#5 · 17y ago
m4c4r0ni3z
m4c4r0ni3z
If that doesn't work try:

Code:
if(GetAsyncKeyState(VK_SHIFT)&1 && GetAsyncKeyState(VK_NUMPAD1)&1)
{
 save x y z
}

if(GetAsyncKeyState(VK_NUMPAD1)&1)
{
        teleport
}
#6 · 17y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • Hotkeys in C++By Dave84311 in C++/C Programming
    7Last post 19y ago
  • Playing Warrock In Multi Windows Need HelpBy Shadowguild in WarRock - International Hacks
    27Last post 20y ago
  • Can you Multi gunz still?By rzoin in Gunz General
    2Last post 20y ago
  • multi-WTFNESS AT THE TURKS!By EleMentX in General
    9Last post 19y ago
  • Teleportation TurretBy Dreimos in WarRock - International Hacks
    15Last post 20y ago

Tags for this Thread

#hotkey#multi#teleport