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 › Anti AFK Working In Background Script

Anti AFK Working In Background Script

Posts 1–8 of 8 · Page 1 of 1
die254
die254
Anti AFK Working In Background Script
I've seen that some of you are having trouble with AFK kicks.

Create a new AHK script and a paste this:

Code:
#WinActivateForce
	Numpad1::
	WinGet, pidn, PID, A
	pid := pidn
	WinGet, hwnds, ID, A
	Loop
	{
		ControlSend, , {c}, ahk_pid %pid%
		SetKeyDelay, 25000
		}
Press NUMPAD 1 to start the script, make sure you are inside the Trove at that time. After the script is activated you can put Trove in background and you not be kicked for AFK ever again.
#1 · edited 11y ago · 11y ago
jokaclown
jokaclown
our actual problem atm is finding a script to fish at all , preferred with anti afk lava and choclate hot fix crashed the old one
#2 · 11y ago
LI
liliexx
don't work
#3 · 11y ago
Pardieiro
Pardieiro
Quote Originally Posted by jokaclown View Post
our actual problem atm is finding a script to fish at all , preferred with anti afk lava and choclate hot fix crashed the old one
I'm using this and its working right now! NUMP6 to start.

#WinActivateForce

Numpad6::
WinGet, pidn, PID, A
pid := pidn
WinGet, hwnds, ID, A
Handle := hwnds
Lure := 9999
Base := getProcessBaseAddress()
WaterAddress := GetAddressWater(Base,0x00964208)
LavaAddress := GetAddressLava(Base,0x00964208)
ChocoAddress := GetAddressChoco(Base,0x00964208)

LureCount := 0
Loop %Lure%
{
LureCount := LureCount +1
ControlSend, , {c down}, ahk_pid %pid%
Sleep, 86
ControlSend, , {c up}, ahk_pid %pid%
Sleep, 500
ControlSend, , {f down}, ahk_pid %pid%
Sleep, 86
ControlSend, , {f up}, ahk_pid %pid%
Catch := 0
PoleCheck := 40

Loop
{
If (Catch = 1)
{
break
}
else
{
If (PoleCheckN = PoleCheck)
{
ControlSend, , {f down}, ahk_pid %pid%
Sleep, 86
ControlSend, , {f up}, ahk_pid %pid%
LureCount := 0
}
else
{
}
CaughtWater := ReadMemory(WaterAddress)
CaughtLava := ReadMemory(LavaAddress)
CaughtChoco := ReadMemory(ChocoAddress)
If (CaughtWater = 1 or CaughtLava = 1 or CaughtChoco = 1)
{
ControlSend, , {f down}, ahk_pid %pid%
Sleep, 86
ControlSend, , {f up}, ahk_pid %pid%
Random, Wait, 2000, 3500
Sleep, %Wait%
Catch := 1
}
else
{
PoleCheckN := PoleCheckN +1
Sleep, 1000
}
}
Imagesearch, Foundx, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *50 c:\boot.bmp
if errorlevel = 0
{
MouseClickDrag, Left, %FoundX%, %FoundY%, 779, 412
}
}
}
ExitApp

Numpad7::
ExitApp

GetAddressWater(Base, Address)
{
pointerBase := base + Address
y1 := ReadMemory(pointerBase)
y2 := ReadMemory(y1 + 0x144)
y3 := ReadMemory(y2 + 0xe4)
Return WaterAddress := (y3 + 0x70)
}

GetAddressLava(Base, Address)
{
pointerBase := base + Address
y1 := ReadMemory(pointerBase)
y2 := ReadMemory(y1 + 0x144)
y3 := ReadMemory(y2 + 0xe4)
Return LavaAddress := (y3 + 0x514)
}

GetAddressChoco(Base, Address)
{
pointerBase := base + Address
y1 := ReadMemory(pointerBase)
y2 := ReadMemory(y1 + 0x144)
y3 := ReadMemory(y2 + 0xe4)
Return ChocoAddress := (y3 + 0x2c0)
}

getProcessBaseAddress()
{
Global Handle
return DllCall( A_PtrSize = 4
? "GetWindowLong"
: "GetWindowLongPtr"
, "Ptr", Handle
, "Int", -6
, "Int64") ; Use Int64 to prevent negative overflow when AHK is 32 bit and target process is 64bit
; If DLL call fails, returned value will = 0
}

ReadMemory(MADDRESS)
{
Global pid
VarSetCapacity(MVALUE,4,0)
ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
;DllCall("ReadProcessMemory","UInt",ProcessHandle, "UInt",MADDRESS,"Str",MVALUE,"UInt",4,"UInt *",0)
DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
Loop 4
result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
return, result
}

+rep if i help
#4 · 11y ago
GH
GHOSTKILL190
Does not work after Update. None of the fishing Bots / AFK bots work currently at this moment!
#5 · 11y ago
die254
die254
Quote Originally Posted by GHOSTKILL190 View Post
Does not work after Update. None of the fishing Bots / AFK bots work currently at this moment!
this is outdated, this anti AFK script was added to all base boting fish. Dont need to worry about it anymore unless you want it to use stand alone.
#6 · 11y ago
LP
Lpeach
I want to use the anti afk bot and fishing bot for the whole night.
But when I wake up, it's still disconnected from server.
It seems like you will still treat as afk if you stay in a fix position for a long period of time, which keep press 'c' is useless in this situation.
Anyone can solve this?
#7 · 11y ago
die254
die254
Quote Originally Posted by Lpeach View Post
I want to use the anti afk bot and fishing bot for the whole night.
But when I wake up, it's still disconnected from server.
It seems like you will still treat as afk if you stay in a fix position for a long period of time, which keep press 'c' is useless in this situation.
Anyone can solve this?
This works perfectly, you have been disconnect for some other reason. Maybe the server went down or something.
#8 · 11y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • Crazy Warrock D3D [OPK(works on all Servers),Chams,Allways Crosshair,Anti AFK...]By Crackenide in WarRock - International Hacks
    46Last post 15y ago
  • Endless Charge Anti-Afk ScriptBy dirtyzerg in Dragon Nest Hacks & Cheats
    58Last post 14y ago
  • Inactive Window Anti-AFK script.By mrkiller222 in Dragon Nest Selling / Trading / Buying
    0Last post 14y ago
  • Inactive Window Anti-AFK scriptBy mrkiller222 in Dragon Nest Hacks & Cheats
    23Last post 14y ago
  • Hay for professional programmers i have working anti afk bot but it's protectedBy the7skulls in CrossFire Hack Coding / Programming / Source Code
    5Last post 14y ago

Tags for this Thread

None