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 › [Help]Keyboard,SendKeys,Hook[Solved]

[Help]Keyboard,SendKeys,Hook[Solved]

Posts 1–7 of 7 · Page 1 of 1
Qizzle15401
Qizzle15401
[Help]Keyboard,SendKeys,Hook[Solved]
ok soo say i want to send keys to an app ay? but i want to send the keys to move a player position like one step forward or one step back with a W or a S is there a send key alternative that can get past video games that only move a player position if it really comes from the keyboard? any way to hook they keyboard if so could u explain it too me thanks guys
#1 · 16y ago
Blubb1337
Blubb1337
this has more to do with sending packets and stuffz...way too advanced for me
#2 · 16y ago
NextGen1
NextGen1
Meh, Give me a few hours and it will be added to the VB sdk in the sticky, I am writing a low_level_keyboard Hook with Sendkeys API alternative.

This will allow you to use a Single line of code to hook into a application.

But for now, just research SendKeys API , there is some documentation.
#3 · 16y ago
Qizzle15401
Qizzle15401
Cool stuff thanks bud
#4 · 16y ago
NO
NOOB
Quote Originally Posted by Qizzle15401 View Post
ok soo say i want to send keys to an app ay? but i want to send the keys to move a player position like one step forward or one step back with a W or a S is there a send key alternative that can get past video games that only move a player position if it really comes from the keyboard? any way to hook they keyboard if so could u explain it too me thanks guys
Keybd_event?
Code:
    Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, _
    ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
    Const KEYEVENTf_KEYUP As Long = &H2
Code:
        keybd_event(Keys.W, 0, 0, 0)
        keybd_event(Keys.W, 0, KEYEVENTf_KEYUP, 0)
#5 · 16y ago
Qizzle15401
Qizzle15401
keyborad event does work thanks bud
#6 · 16y ago
NextGen1
NextGen1
Marked solved
#7 · 16y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help]Keyboard key[Solved]By bo76 in Visual Basic Programming
    15Last post 15y ago
  • Help with public hookBy ProfWoolyNipples in WarRock Discussions
    3Last post 16y ago
  • [Help]Basic Text Box[Solved]By FlashDrive in Visual Basic Programming
    3Last post 16y ago
  • [Help]Proxy With WebBrowser[Solved]By ppl2pass in Visual Basic Programming
    1Last post 16y ago
  • [Help]Form Background Color[Solved]By Shark23 in Visual Basic Programming
    5Last post 16y ago

Tags for this Thread

None