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 MMORPG Hacks › Trove Hacks & Cheats › Trove Discussions & Help › A question to an experienced developers

A question to an experienced developers

Posts 1–2 of 2 · Page 1 of 1
CO
CovenOfDarkBon
A question to an experienced developers
So I try to implement a macro using win32api, so far I tried SendInput and PostMessage functions. I run it elevated and with different delays, but they only seem to affect the games console. Does the game use some other way to gather events? (Using a microcontroller akin to rubberducky usb does work).
#1 · 5y ago
SH
Sharkaz
PostMessage
Using spy++ I found that when you press the 'F' key for example, 3 messages are send:

First a WM_KEYDOWN with nVirtKey='F', cRepeat=1 and ScanCode=21
Then a WM_CHAR with chCharCode='102', cRepeat=1 and ScanCode=21
Finally a WM_KEYIP with nVirtKey='F', cRepeat=1 and ScanCode=21

While the nVirtKey (or/and the chCharcode, I don't really know tbh) does affect the game's console, it is the ScanCode that affects the game.
For example, a ScanCode of 21 corresponds to fishing, 10 is using potion. You can find out which ScanCode corresponds to an action by watching messages with spy++ while doing it.

In order to replay the message with the right ScanCode, I found out that you can use (in Python):
Code:
win32api.PostMessage(hwnd,win32con.WM_KEYDOWN, x, y)
time.sleep(0.1)
win32api.PostMessage(hwnd,win32con.WM_KEYUP, x, y)
Where :
  • hwnd is the window corresponding to Trove, you can use win32gui.FindWindow(None, "Trove") to get it.
  • x corresponds to nVirtKey (you can leave it to 0)
  • y contains the ScanCode, if y=0x210000 the ScanCode will be 21, y=0x100000 the ScanCode will be 10, etc...

Hoping this can help you !
#2 · 5y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • I'm looking for a experienced developer!By Argos60 in C# Programming
    0Last post 5y ago
  • Need experienced DevelopersBy Vox in Work & Job Offers
    0Last post 6y ago
  • Need help, i have some questions about csgo cheat developmentBy Mucroce in Counter-Strike 2 Help
    2Last post 7y ago
  • Word Press Site Development // Fast and Cheap // Experienced DeveloperBy Deep Breaths in User Services
    9Last post 9y ago
  • Question To ANY Experienced C++ Coder (who Has Made Hacks For Games)By OmEgaGaMeHaXor in C++/C Programming
    25Last post 16y ago

Tags for this Thread

None