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 › [GMS v161.1] GMS Mob Vac

[GMS v161.1] GMS Mob Vac

Posts 1–11 of 11 · Page 1 of 1
Vied
Vied
[GMS v161.1] GMS Mob Vac
Working as of May 27

Virus scans
https://www.virustotal.com/en/file/9...is/1432859336/
http://www.virscan.org/scan/e0cc8153...5402df0b4608c3

Working For
Win 7 x64
Win 10 (pretty sure its x64)
(too busy to test on others, let me know if it does.)

Instructions
Inject a Bypass (google one)
Inject this
Enjoy


(I take no credit for coding this)
(Request video tutorial if your not sure what to do to get this working, i reply faster on skype)


 
Source Code
#include <Windows.h>

using namespace std;

DWORD dwOldProtect;
#define jmp(frm, to) (int)(((int)to - (int)frm) - 5)

void MakePageWritable(unsigned long ulAddress, unsigned long ulSize)
{
MEMORY_BASIC_INFORMATION* mbi = new MEMORY_BASIC_INFORMATION;
VirtualQuery((void*)ulAddress, mbi, ulSize);
if (mbi->Protect != PAGE_EXECUTE_READWRITE)
{
unsigned long* ulProtect = new unsigned long;
VirtualProtect((void*)ulAddress, ulSize, PAGE_EXECUTE_READWRITE, ulProtect);
delete ulProtect;
}
delete mbi;
}

void WriteMemory(unsigned long ulAddress, unsigned long ulAmount, ...)
{
va_list va;
va_start(va, ulAmount);

MakePageWritable(ulAddress, ulAmount);
for (unsigned long ulIndex = 0; ulIndex < ulAmount; ulIndex++)
{
*(unsigned char*)(ulAddress + ulIndex) = va_arg(va, unsigned char);
}

va_end(va);
}

void Jump(unsigned long ulAddress, void* Function, unsigned Nops)
{
VirtualProtect((void*)ulAddress, Nops + 5, PAGE_EXECUTE_READWRITE, &dwOldProtect);

*(unsigned char*)ulAddress = 0xE9;
*(unsigned long*)(ulAddress + 1) = jmp(ulAddress, Function);
memset((void*)(ulAddress + 5), 0x90, Nops);

VirtualProtect((void*)ulAddress, Nops + 5, dwOldProtect, &dwOldProtect);
}

DWORD AggroAddy = 0x01607B90;
DWORD AggroAddyRet = AggroAddy+6; //aggroaddy+6
void __declspec(naked) Aggro()
{
__asm //dont forget to make everything 0x to be hex
{
mov eax, [0x01E1ABD4] //Char Base
mov eax, [eax]
lea eax, [eax + 04]
mov[ecx + 0x3F8], eax
push ebp
mov ebp, esp
and esp, -0x40
jmp dword ptr[AggroAddyRet]//go to l

}
}

/*[ENABLE]
//v161.2
alloc(Aggro,128)

Aggro:
mov eax,[01E1ABD4] //Char Base
lea eax,[eax+04]
mov [ecx+3F8],eax //Look at bytes and rev the last set
push ebp
mov ebp,esp
and esp,-40
jmp 01607B90+6

01607B90: //55 8B EC 83 E4 ?? 6A ?? 68 ?? ?? ?? ?? 64 A1 ?? ?? ?? ?? 50 83 EC ?? 53 56 57 A1 ?? ?? ?? ?? 33 C4 50 8D 44 24 ?? 64 A3 ?? ?? ?? ?? 8B F1 8B 4D ?? 8B 06
jmp Aggro
nop

[DISABLE]
01607B90:
push ebp
mov ebp,esp
and esp,-40

dealloc(Aggro)*/


/*
// MapleStory.exe+1207B90 - E9 4B BB A6 6B
//
// jmp 6DBF36E0
*/
void Agg(bool on)
{
if (on){
//MakePageWritable(AggroAddy,6);
Jump(AggroAddy, Aggro, 1);
//WriteMemory(AggroAddy, 6, 0xE9, 0x4B, 0xBB, 0xA6, 0x6B, 0x90);
}
else{
WriteMemory(AggroAddy,6, 0x55, 0x8B, 0xEC, 0x83, 0xE4, 0xC0);

}
}
Vieds Mob Vac_mpgh.net.rar
#1 · edited 11y ago · 11y ago
Hugo Boss
[MPGH]Hugo Boss
[GMS v161.1]

You sure it is up to date?
#2 · 11y ago
Vied
Vied
Quote Originally Posted by Hugo Boss View Post
[GMS v161.1]

You sure it is up to date?
worked for me. unless theres a really recent update i dont know about it should work.

keep getting the versions mixed up, updated the correct one
#3 · edited 11y ago · 11y ago
BACKD00R
[MPGH]BACKD00R
Approved!!!!
#4 · 11y ago
ReMastered
ReMastered
It's version 162.2 right now
#5 · 11y ago
Vied
Vied
Quote Originally Posted by ReMastered View Post
It's version 162.2 right now
yup //2short
#6 · 11y ago
exassasinx
exassasinx
what is this?
#7 · 11y ago
Vied
Vied
delete thread please @Linz

- - - Updated - - -

delete thread please @Linz
#8 · 11y ago
Hugo Boss
[MPGH]Hugo Boss
Quote Originally Posted by Vied View Post
delete thread please @Linz

- - - Updated - - -

delete thread please @Linz
Linz is not a staff member
Do you mean @Liz ?
#9 · 11y ago
Liz
[MPGH]Liz
Quote Originally Posted by Hugo Boss View Post


Linz is not a staff member
Do you mean @Liz ?
lol

This patched or something?
#10 · 11y ago
Hugo Boss
[MPGH]Hugo Boss
Quote Originally Posted by Liz View Post
lol

This patched or something?
He supposedly mentioned you on the following other threads:
http://www.mpgh.net/forum/showthread.php?t=967294
http://www.mpgh.net/forum/showthread.php?t=965442

Since it's [GMS v162.1] and the current Maplestory version is 162.2, it should be, hence why he requested it to be deleted
#11 · 11y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • [GMS v162.2] GMS Mob VacBy Vied in MapleStory Hacks, Cheats & Trainers
    7Last post 11y ago
  • [GMS v162.1] GMS HackBy Vied in MapleStory Hacks, Cheats & Trainers
    14Last post 11y ago
  • [GMS v162.1] GMS Flat Map Hack/BotBy Vied in MapleStory Hacks, Cheats & Trainers
    14Last post 11y ago
  • [GMS v162.2] GMS Flat Map Hack/BotBy Vied in MapleStory Hacks, Cheats & Trainers
    31Last post 11y ago
  • Gms Hack (client sided mob lag)By gibbs in MapleStory Discussions
    4Last post 14y ago

Tags for this Thread

None