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 Coding & Resources › HOW TO MULTI ACCOUNT SCRIPTS

HOW TO MULTI ACCOUNT SCRIPTS

Posts 1–3 of 3 · Page 1 of 1
DI
dickbuttface123
HOW TO MULTI ACCOUNT SCRIPTS
i really need to know how to have a script run on multiple accounts ,similar to mpfishing bot

PLZ help....
#1 · 8y ago
PH
phj280600
The way mpfishing bot sends keystrokes to multiple windows without focusing them is using ControlSend they get the specific window handle and sends the input to it. Note: controlclick does not work only controlsend. hope this is what u were asking about.
#2 · 8y ago
BLURREDDOGE
BLURREDDOGE
Firstly, IF IN DOUBT, CHECK THE AHK DOCS!
https://www.autohotkey.com/docs/AutoHotkey.htm


Using AHK, like mpfishing, you use this to find the windown title to use controlsend on.

This has Ctrl+F as the hotkey, saves the windowtitle as "title" to that controlsend can be used on it.
Code:
^F::
WinGetTitle, title, A
MsgBox, %title%
return
MsgBox shows the variable %title% which is the windowtitle, followed by return which allows for the hotkey to be repeated


To controlsend keystrokes to the window: (excerpt from my most recent trove ahk script)
Code:
SetKeyDelay, 10, 5                                           ;1                                             
ControlSend,, {down down}{down up}, %title%                  ;2               
Sleep, 250                                                   ;3          
ControlSend,, %variable_to_send_as_keystrokes%, %title%      ;4    
Sleep, 250                                                   ;3
ControlSend,, {enter down}{enter up}, %title%                ;5
;1 Delay between sending keys by 10ms, keys pressed for 5ms - stops keys being mixed up
;2 Sends the keystrokes "down arrow (up, then down)" to perform 1 downarrow press
;3 Delay as sleep to allow for previous action to complete
;4 Sends the variable in %%s to the windowtitle %title%
;5 Sends {ENTER} to the window you pressed Ctrl+F on

Now for multiple windows you will need a main and subscript.
The main script will take in the variables to send to the subscript that does the autofishing
- To do this you have: "Run script_name.ahk"
Or to redirect to another file to run an ahk file: "Run %A_LoopFileLongPath%/<filename>.ahk

To pass variables over to the subscript:
Run %A_LoopFileLongPath%/filename.ahk %VariableName% %secondVariableName% %ThirdVariableName%
#3 · edited 8y ago · 8y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • How To Hack ToS [Town of Salem] **NEW** Multi-Account CheatBy unoui in General Game Hacking
    7Last post 10y ago
  • How do I sell something on the internet? (accounts/scripts ect)By chris20194 in General
    6Last post 10y ago
  • [How]Save your account for script.By cottar blood in WarRock Discussions
    10Last post 15y ago
  • Anyone know how to make multi accounts on add me fast?By daemonte in User Services
    4Last post 13y ago
  • how unban ur accountBy slayerluc0 in WarRock - International Hacks
    7Last post 19y ago

Tags for this Thread

None