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 › MapleStory Hacks, Cheats & Trainers › Maplestory Memory Reducer

Maplestory Memory Reducer

Posts 1–3 of 3 · Page 1 of 1
LA
Law
Maplestory Memory Reducer
Been using this to make sure my Bots don't dc as much. Credits to DurrHurr [GK]


How to use:

- If you are using the simple Bypass by Chubbz simply place it into the maplestory folder

* If you are using another bypass just inject it into maplestory *

Simple Bypass: http://www.mpgh.net/forum/showthread...9#post10926129

Injector: http://www.mpgh.net/forum/showthread.php?t=1002531

Source code:

Code:
format PE DLL
entry DllMain

include 'win32a.inc'

struct PROCESS_MEMORY_COUNTERS
  cb dd ?
  PageFaultCount dd ?
  PeakWorkingSetSize dd ?
  WorkingSetSize dd ?
  QuotaPeakPagedPoolUsage dd ?
  QuotaPagedPoolUsage dd ?
  QuotaPeakNonPagedPoolUsage dd ?
  QuotaNonPagedPoolUsage dd ?
  PagefileUsage dd ?
  PeakPagefileUsage dd ?
ends

section '.text' code readable executable

proc PoliceMemory param
  local   lpMemInfo PROCESS_MEMORY_COUNTERS
  invoke  GetCurrentProcess
  mov     edi, eax
  lea     esi, [lpMemInfo]
  mov     dword [esi], sizeof.PROCESS_MEMORY_COUNTERS
.loop:
  invoke  K32GetProcessMemoryInfo, edi, esi, sizeof.PROCESS_MEMORY_COUNTERS
  test    eax, eax
  jz      .done
  cmp     [esi + PROCESS_MEMORY_COUNTERS.WorkingSetSize], 0x4000000
  jbe     .done
  invoke  SetProcessWorkingSetSize, edi, -1, -1
.done:
  invoke  Sleep, 5000
  jmp     .loop
endp

proc DllMain hModule, fdwReason, lpvReserved
  cmp     [fdwReason], DLL_PROCESS_ATTACH
  jnz     .done
  invoke  CreateThread, 0, 0, PoliceMemory, 0, 0, 0
  test    eax, eax
  jz      .done
  invoke  CloseHandle, eax
  invoke  DisableThreadLibraryCalls, [hModule]
.done:
  mov     eax, TRUE
  ret
endp

section '.idata' import data readable writeable

  library kernel, 'kernel32.dll'
  import kernel, \
    K32GetProcessMemoryInfo, 'K32GetProcessMemoryInfo', \
    DisableThreadLibraryCalls, 'DisableThreadLibraryCalls', \
    CreateThread, 'CreateThread', \
    SetProcessWorkingSetSize, 'SetProcessWorkingSetSize', \
    GetCurrentProcess, 'GetCurrentProcess', \
    Sleep, 'Sleep', \
    CloseHandle, 'CloseHandle'

section '.reloc' fixups data readable discardable
Virus Scans:

1: https://virusscan.jotti.org/en-US/fi...job/7i5b4622w8

2: https://www.virustotal.com/en/file/5...is/1441744080/
FMSIS_mpgh.net.rar
#1 · 10y ago
Kevin
Kevin
Looks clean /approved
#2 · 10y ago
AC
accelrateboosting
looks good man thanks for the release.
#3 · 10y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Direct Memory Access (DMA) to Static Memory AddressesBy Dave84311 in Game Hacking Tutorials
    0Last post 20y ago
  • Tutorial Replies - Direct Memory Access (DMA) to Static Memory AddressesBy Dave84311 in General Game Hacking
    3Last post 20y ago
  • maplestory hackBy juzo in General Game Hacking
    7Last post 20y ago
  • maplestory hackBy juzo in Hack Requests
    12Last post 20y ago
  • MapleStoryBy SimpleAs in General Game Hacking
    5Last post 20y ago

Tags for this Thread

None