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 First Person Shooter Hacks › Apex Legends Hacks & Cheats › [Patched] Apex Legends - Unlimited ITENS (EXPLOIT)

Wink[Patched] Apex Legends - Unlimited ITENS (EXPLOIT)

Posts 1–15 of 22 · Page 1 of 2
evildarksparda
evildarksparda
[Patched] Apex Legends - Unlimited ITENS (EXPLOIT)
I just found this bug in the reddit forums and decided to share it here, I tested it and it worked perfectly ... The bug consists of you clicking to activate the item, and a few thousandths before disappearing the iventario you click to drop the item.

Tutorial:

https://giant.gfyca*****m/PleasingFlashyKitty.webm
#1 · 7y ago
AX
AxiiossQuixotic
Can confirm it works Really easy to get my special ability at the start of a match and load it up for the next fight too
#2 · 7y ago
Butter
Butter
please no, game literally unplayable now
#3 · 7y ago
CA
cazzeerrr
Quote Originally Posted by evildarksparda View Post
I just found this bug in the reddit forums and decided to share it here, I tested it and it worked perfectly ... The bug consists of you clicking to activate the item, and a few thousandths before disappearing the iventario you click to drop the item.

Tutorial:

https://giant.gfyca*****m/PleasingFlashyKitty.webm
Is there any reason you picked it up 6 times it seems to be on the floor each time?
#4 · 7y ago
evildarksparda
evildarksparda
Quote Originally Posted by cazzeerrr View Post
Is there any reason you picked it up 6 times it seems to be on the floor each time?
This gif I took as an example ... and that the guy missed the time to drop the item ...
#5 · 7y ago
Nsofreeman
Nsofreeman
Anyone wondering heres a picture of macro ive setup
#6 · 7y ago
MA
MasterDMFour
Quote Originally Posted by Nsofreeman View Post
Anyone wondering heres a picture of macro ive setup
What program is that you're using to record the macro?
#7 · 7y ago
evildarksparda
evildarksparda
Quote Originally Posted by Nsofreeman View Post
Anyone wondering heres a picture of macro ive setup
nice man, Is it possible to "translate" this into the AHK (Auto Hot Key Generic) program?
#8 · 7y ago
jibiox
jibiox
Can you explain step by step i don't understand
#9 · 7y ago
Rykhath
Rykhath
Quote Originally Posted by evildarksparda View Post
nice man, Is it possible to "translate" this into the AHK (Auto Hot Key Generic) program?

Yes Evildarksparda it's rather easy to "translate" any proprietary macro to AutoHotkey. The only difference between proprietary macros is that you don't need to program them as they often have easy to use creation tools doing the hard work for you. Plus it's easier to bind such macros to custom keys on devices this is due to some devices read their own buttons differently.
(Example being Logitech mouse buttons on say the G502 or G602 are not recognized in game as Mouse buttons, and are only recognized by Logitech proprietary software as a G key. )

So I have a a simple AHK script you can convert to .EXE if you wish. The code is very simple, quite simply put Hit F7 to activate it, a high pitch beep will be heard. Then press home key to activate the macro. The required F7 press is a anti-macro usage prevention, it's there so you can toggle activation on or off. You can press F8 to deactivate the macro usage making your home key back to doing only normal home key function this will play a low beep to identify that you've disabled the script. F9 will close the program immediately.

F7: Activates script
F8: Deactivates script
F9: Closes script
Home: Activates Macro

CODE:
Code:
 
; This script was made by Rykhath
activation:=0


CODE:
F7::
    SoundBeep 750, 500
    activation:=1
    return
    
Home::
    if(activation = 1) {
        GetKeyState, D, Home, P
            if state = D
                click, down
                sleep 84
                click, up
                sleep 208
                click, down, right
                sleep 80
                click, up, right
                return
    }
    return
    
            
F8::
    activation:=0
    SoundBeep 300, 500
    return
F9::ExitApp


#10 · edited 7y ago · 7y ago
evildarksparda
evildarksparda
Quote Originally Posted by Rykhath View Post

Yes Evildarksparda it's rather easy to "translate" any proprietary macro to AutoHotkey. The only difference between proprietary macros is that you don't need to program them as they often have easy to use creation tools doing the hard work for you. Plus it's easier to bind such macros to custom keys on devices this is due to some devices read their own buttons differently.
(Example being Logitech mouse buttons on say the G502 or G602 are not recognized in game as Mouse buttons, and are only recognized by Logitech proprietary software as a G key. )

So I have a a simple AHK script you can convert to .EXE if you wish. The code is very simple, quite simply put Hit F7 to activate it, a high pitch beep will be heard. Then press home key to activate the macro. The required F7 press is a anti-macro usage prevention, it's there so you can toggle activation on or off. You can press F8 to deactivate the macro usage making your home key back to doing only normal home key function this will play a low beep to identify that you've disabled the script. F9 will close the program immediately.

F7: Activates script
F8: Deactivates script
F9: Closes script
Home: Activates Macro

CODE:
Code:
 
; This script was made by Rykhath
activation:=0


CODE:
F7::
    SoundBeep 750, 500
    activation:=1
    return
    
Home::
    if(activation = 1) {
        GetKeyState, D, Home, P
            if state = D
                click, down
                sleep 84
                click, up
                sleep 208
                click, down, right
                sleep 80
                click, up, right
                return
    }
    return
    
            
F8::
    activation:=0
    SoundBeep 300, 500
    return
F9::ExitApp


WOW... THANKS SOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO MUCH
#11 · 7y ago
Liquify
Liquify
Quote Originally Posted by Rykhath View Post

Yes Evildarksparda it's rather easy to "translate" any proprietary macro to AutoHotkey. The only difference between proprietary macros is that you don't need to program them as they often have easy to use creation tools doing the hard work for you. Plus it's easier to bind such macros to custom keys on devices this is due to some devices read their own buttons differently.
(Example being Logitech mouse buttons on say the G502 or G602 are not recognized in game as Mouse buttons, and are only recognized by Logitech proprietary software as a G key. )

So I have a a simple AHK script you can convert to .EXE if you wish. The code is very simple, quite simply put Hit F7 to activate it, a high pitch beep will be heard. Then press home key to activate the macro. The required F7 press is a anti-macro usage prevention, it's there so you can toggle activation on or off. You can press F8 to deactivate the macro usage making your home key back to doing only normal home key function this will play a low beep to identify that you've disabled the script. F9 will close the program immediately.

F7: Activates script
F8: Deactivates script
F9: Closes script
Home: Activates Macro

CODE:
Code:
 
; This script was made by Rykhath
activation:=0


CODE:
F7::
    SoundBeep 750, 500
    activation:=1
    return
    
Home::
    if(activation = 1) {
        GetKeyState, D, Home, P
            if state = D
                click, down
                sleep 84
                click, up
                sleep 208
                click, down, right
                sleep 80
                click, up, right
                return
    }
    return
    
            
F8::
    activation:=0
    SoundBeep 300, 500
    return
F9::ExitApp


eac detect ahk
#12 · 7y ago
PO
Potales
Still works?
#13 · 7y ago
Rykhath
Rykhath
EAC only detects injection style AHK, for ESP, Aimbot ETC....It doesn't block macros, plus EAC doesn't detect it if you convert it to a random EXE file...and you have it under a common EXE name like TS3_Client.

- - - Updated - - -

The glitch works but his timings are off actually the macro doesn't work...but hey
#14 · edited 7y ago · 7y ago
Rykhath
Rykhath
I am working on perfecting the timing for each and optimizing the code. I've also been working on a macro for Double peacekeepers, and a longbow quickfire macro.
#15 · 7y ago
Posts 1–15 of 22 · Page 1 of 2

Post a Reply

Similar Threads

  • Apex Legends BHop/Speed ExploitBy imsonub in Apex Legends Hacks & Cheats
    46Last post 7y ago
  • An Unlimited Gun Exploit?By minior8714 in Garry's Mod Server Exploits & Help
    10Last post 9y ago
  • Tahm Kench unlimited heal exploitBy Deliciouz in League of Legends Guides
    9Last post 11y ago
  • Unlimited AC ExploitBy shox2 in User Services
    91Last post 12y ago
  • [eMS v79] Kill Von Leon Unlimited Times [Exploit]By Dreamer in MapleStory Europe Hacks
    0Last post 14y ago

Tags for this Thread

#apex#exploit