Results 1 to 11 of 11
  1. #1
    Vied's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Fairly Local
    Posts
    134
    Reputation
    10
    Thanks
    142
    My Mood
    Dead

    [GMS v161.1] GMS Mob Vac

    Working as of May 27

    Virus scans
    https://www.virustotal.com/en/file/9...is/1432859336/
    https://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)


     
    #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);

    }
    }
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Vied; 05-28-2015 at 08:01 PM.
    PYAH

  2. The Following 2 Users Say Thank You to Vied For This Useful Post:

    sd1891698 (05-29-2015),ticsis (05-30-2015)

  3. #2
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    [GMS v161.1]

    You sure it is up to date?

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  4. #3
    Vied's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Fairly Local
    Posts
    134
    Reputation
    10
    Thanks
    142
    My Mood
    Dead
    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
    Last edited by Vied; 05-28-2015 at 07:42 PM.
    PYAH

  5. #4
    BACKD00R's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Brazil
    Posts
    10,711
    Reputation
    1814
    Thanks
    31,902
    My Mood
    Aggressive
    Approved!!!!



     

    Skype : BACKD00R-MPGH

     

    • Contributor: October, 31th 2011
    • CA BR Minion: January, 03th 2012
    • CF AL Minion: April, 07th 2012
    • CA Minion: April, 15th 2012
    • CF Minion: July, 03th 2012
    • PB Minion: January, 25th 2013
    • AVA Minion : February, 02th 2013
    • Arctic Combat minion: April, 03th 2013
    • Warface Minion: April, 03th 2013

    • Minion + : July 08th 2012
    • Moderator : January 21th 2013
    • Global Moderator : August 1st 2013







  6. The Following User Says Thank You to BACKD00R For This Useful Post:

    Vied (05-29-2015)

  7. #5
    ReMastered's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Parent's Basement
    Posts
    366
    Reputation
    169
    Thanks
    81
    My Mood
    Yeehaw
    It's version 162.2 right now
    No

  8. #6
    Vied's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Fairly Local
    Posts
    134
    Reputation
    10
    Thanks
    142
    My Mood
    Dead
    Quote Originally Posted by ReMastered View Post
    It's version 162.2 right now
    yup //2short
    PYAH

  9. #7
    exassasinx's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    700
    My Mood
    Devilish
    what is this?
    I am the Messiah


    [img]https://www.danasof*****m/sig/Greatname69.jpg[/img]


  10. #8
    Vied's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Fairly Local
    Posts
    134
    Reputation
    10
    Thanks
    142
    My Mood
    Dead
    delete thread please @Linz

    - - - Updated - - -

    delete thread please @Linz
    PYAH

  11. #9
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    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 ?

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  12. #10
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,181
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    Quote Originally Posted by Hugo Boss View Post


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

    This patched or something?

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  13. #11
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    Quote Originally Posted by Liz View Post
    lol

    This patched or something?
    He supposedly mentioned you on the following other threads:
    https://www.mpgh.net/forum/showthread.php?t=967294
    https://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

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  14. The Following User Says Thank You to Hugo Boss For This Useful Post:

    [MPGH]Liz (05-30-2015)

Similar Threads

  1. [Outdated] [GMS v162.2] GMS Mob Vac
    By Vied in forum MapleStory Hacks, Cheats & Trainers
    Replies: 7
    Last Post: 06-13-2015, 10:56 PM
  2. [Outdated] [GMS v162.2] GMS Flat Map Hack/Bot
    By Vied in forum MapleStory Hacks, Cheats & Trainers
    Replies: 31
    Last Post: 06-12-2015, 03:05 PM
  3. [Outdated] [GMS v162.1] GMS Flat Map Hack/Bot
    By Vied in forum MapleStory Hacks, Cheats & Trainers
    Replies: 14
    Last Post: 05-30-2015, 10:59 AM
  4. [Outdated] [GMS v162.1] GMS Hack
    By Vied in forum MapleStory Hacks, Cheats & Trainers
    Replies: 14
    Last Post: 05-30-2015, 10:58 AM
  5. [Request] Gms Hack (client sided mob lag)
    By gibbs in forum MapleStory Discussions
    Replies: 4
    Last Post: 04-18-2012, 11:31 PM