
--> Download <--
Localhostr Mirror
--> Virus Scan <--
* If you downloaded v71.0, please redownload, as I fixed the crashes.
If the download is "not available", refresh the page a few times.
Yeah, decided to re-start updating this since the sendpacket function changed.
credits to --> [Release] Bypass 0.71 (Davheed version) for the Bypass dll I have included.
To log packets, tick "Enable Logging".
If it crashes while maplestory is loading, untick "Hook" at splash screen and tick it when in game.
Changelog:
No recv hook atm, I cbb finding it.
How To Use:
- Download
- Extract with WinRAR
- You will get 4 files. Make sure they stay in the same folder.
- Start Oppai_QuickInjector (Run as admin if you're on Vista/Windows 7)
- Start MapleStory
- Click OK on the window that pops up
- Enjoy!
"I Can't Inject / It Crashes / It Says I'm Missing a DLL!":
Uninstall any version of VC++ 2010 Redist if you have already installed one.
Dowload and install VC++ 2010 Redist (IT MUST BE 2010) ---> Here
"Even with the redist it still crashes / can't inject / gives some error!":
Uninstall any old version of .NET Framework.
Download and install .NET Framework 4.0 ---> Here
Features:
- Single-Line Sender & Spam
- Multi-Line Sender & Spam
- Randomize Bytes by replacing them with ** (bypasses timestamp for chat spamming and similar packets)
- Send Logging: Tick hook to start intercepting the sent packets. To see what is being sent, tick "Enable Logging". To copy a packet, click it and it will be copied in the sender textbox.
- Ignore / Block specific packets or entire headers.
- Pre-Ignored Mob Movement Header.
Randomized Bytes Example:
Let's say we want to spam normal chat really fast. Let's log a packet for a chat message filled with @'s:
credits to --> [Release] Bypass 0.71 (Davheed version) for the Bypass dll I have included.
To log packets, tick "Enable Logging".
If it crashes while maplestory is loading, untick "Hook" at splash screen and tick it when in game.
Changelog:
No recv hook atm, I cbb finding it.
How To Use:
- Download
- Extract with WinRAR
- You will get 4 files. Make sure they stay in the same folder.
- Start Oppai_QuickInjector (Run as admin if you're on Vista/Windows 7)
- Start MapleStory
- Click OK on the window that pops up
- Enjoy!
"I Can't Inject / It Crashes / It Says I'm Missing a DLL!":
Uninstall any version of VC++ 2010 Redist if you have already installed one.
Dowload and install VC++ 2010 Redist (IT MUST BE 2010) ---> Here
"Even with the redist it still crashes / can't inject / gives some error!":
Uninstall any old version of .NET Framework.
Download and install .NET Framework 4.0 ---> Here
Features:
- Single-Line Sender & Spam
- Multi-Line Sender & Spam
- Randomize Bytes by replacing them with ** (bypasses timestamp for chat spamming and similar packets)
- Send Logging: Tick hook to start intercepting the sent packets. To see what is being sent, tick "Enable Logging". To copy a packet, click it and it will be copied in the sender textbox.
- Ignore / Block specific packets or entire headers.
- Pre-Ignored Mob Movement Header.
Randomized Bytes Example:
Let's say we want to spam normal chat really fast. Let's log a packet for a chat message filled with @'s:
Code:
29 00 FC D6 22 00 46 00 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 00
That's because of the timestamp. The packet has 4 timestamp bytes that are just random bytes based on the current time. To bypass this spam protection you will have to randomize them. Let's break down the packet:
29 00 = Header
FC D6 22 00 = Timestamp
46 00 = Message length (number of characters) ** Note: the bytes are reversed
All the 40's = Message (0x40 = ascii code for @)
00 = Footer
To randomize bytes just replace them with **:
Code:
29 00 ** ** ** ** 46 00 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 00
You could also randomize the message for fun:
Code:
29 00 ** ** ** ** 46 00 ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** 00
Have fun and feel free to post here if you didn't solve your issues after reading 1st post.