Results 1 to 4 of 4
  1. #1
    GroshyIsBack's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    86

    Talking How to write a simple Trainer for MapleStory Europe

    Look to Ex0rPl4net... I cant post Links
    Last edited by GroshyIsBack; 09-13-2014 at 06:30 AM.

  2. #2
    Jew's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    <dd style="overflow: hidden;">here</dd>
    Posts
    3,860
    Reputation
    289
    Thanks
    2,178
    My Mood
    Amazed
    Quote Originally Posted by GroshyIsBack View Post
    Hello,
    I show you how to program a small trainer for MapleStory Europe in this tutorial.

    You need
    Visual Studio 2012 or 2013

    1. Create a new project. Choose from Win32-Project.

    Then click and "Next".
    Choose "DLL" and check "Empty project". Then click on "Finish".

    2. Rename the Folders.
    Rename "Header Files" to "DLL".
    Rename "Resource Files" to "Trainer".
    Remove "Source Files".

    Create a file in the folder "DLL" called "DLL.cpp"
    Rightclick -> Add -> New Item

    Create a Windows Form in the folder "Trainer" called "TrainerForm.h"
    Rightclick -> Add -> New Item -> UI -> Windows Forms

    And then Press "Yes".

    Change "Debug" to "Release".

    3. Codding
    Go to the "DLL.cpp" file and write:
    Code:
    #include <windows.h>
    
    extern void Main(void);
    
    
    ::BOOL WINAPI DllWork(__in::HMODULE hModule)
    {
    Main();
    return true;
    }
    
    ::BOOL WINAPI DllMain(__in::HMODULE hModule, __in::DWORD dwReason, __in __reserved::LPVOID lpvReserved)
    {
    ::HANDLE hThread = NULL;
    
    if (dwReason == DLL_PROCESS_ATTACH)
    {
    if ((hThread = ::CreateThread(NULL, 0, (::LPTHREAD_START_ROUTINE)&DllWork, (::HMODULE)hModule, 0, NULL)) == NULL)
    {
    return FALSE;
    }
    if (::CloseHandle(hThread) == FALSE)
    {
    }
    }
    return TRUE;
    }
    Click rightclick on the trainerform and press "View Code".
    At the top you write then down this code:
    Code:
    #include <windows.h>
    Go to the "TrainerForm.cpp" file and write:






    Code:
    #include "TrainerForm.h"
    using namespace TutorialCherryHacks; // Change "TutorialCherryHacks" to your project name. In this case "TutorialCherryHacks"
    
    void Main(void)
    {
    	Application::EnableVisualStyles();
    	Application::SetCompatibleTextRenderingDefault(false);
    	Application::Run(gcnew TrainerForm);
    	Application::Exit();
    }
    Congratulation! You have now a trainer created.

    4. Install Hack
    Create a checkbox in the trainerform and press double click on it.

    Change:


    Code:
    private: System::Void checkBox1_CheckedChanged(System::Object^  sender, System::EventArgs^  e) {
    	}
    To
    Code:
    private: System::Void checkBox1_CheckedChanged(System::Object^  sender, System::EventArgs^  e);
    I have a script because we are using today. (EMS v104.1)
    Code:
    [Enable]
    00F0357B
    DB 75
    [Disable]
    00F0357B
    DB 74
    Go back to the TrainerForm.cpp and write:
    Code:
    //Sithack
    DWORD  Hack = 0x00F0357B;
    BYTE EnableHack[] = { 0x75 };
    BYTE DisableHack[] = { 0x74 };
    void TrainerForm::checkBox1_CheckedChanged(System::Object^  sender, System::EventArgs^  e)
    {
    	if (this->checkBox1->Checked)
    	{
    		DWORD Temp;
    		VirtualProtect((void*)Hack, sizeof(EnableHack), PAGE_EXECUTE_READWRITE, &Temp);
    		memcpy((void*)Hack, EnableHack, sizeof(EnableHack));
    		VirtualProtect((void*)Hack, sizeof(EnableHack), Temp, &Temp);
    	}
    	else
    	{
    		DWORD Temp;
    		VirtualProtect((void*)Hack, sizeof(DisableHack), PAGE_EXECUTE_READWRITE, &Temp);
    		memcpy((void*)Hack, DisableHack, sizeof(DisableHack));
    		VirtualProtect((void*)Hack, sizeof(DisableHack), Temp, &Temp);
    	}
    }
    Finish!
    If I could help you, give me a "Thank"!
    Have Fun ;3

    lets see how this looks
    Vouch thread





     

    Quote Originally Posted by foginho81 View Post
    Hello guys,5 mins ago i dowloaded this program, in 2 minutes i cracked an account, so i purchased Premium for supporting and have unlimited features!

    A+++ Tool GREAT CODER!
    Quote Originally Posted by shadowkiller198 View Post
    I just purchased a Premium account and I haven't had any problems with it!

    Quote Originally Posted by ImShan View Post
    Vouch for this guy!

    I just bought premium and works pretty good.
    Quote Originally Posted by SiiKFO View Post
    Vouch bought premium works very well
    Quote Originally Posted by DarkBlade324 View Post
    vouch i just bought premium it works great
    Quote Originally Posted by coolzombiesg View Post
    Vouch for him

    I just bought premium and works pretty good.
    Quote Originally Posted by KaizoPvP View Post
    VOUCHE: Yep, you are a legit seller, and I like the stuff you do.
    Quote Originally Posted by BTNGaming View Post
    Premium Purchased

  3. #3
    medo.soleman's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    thanks alot for your work.

  4. #4
    op.refunds's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    15
    My Mood
    Bitchy
    Thank u very much!

Similar Threads

  1. [Detected] Simple Trainer for Singleplayer and Zombie
    By Mercenario$$ in forum Call of Duty 7 - Black Ops Hacks & Cheats
    Replies: 43
    Last Post: 08-31-2015, 07:06 PM
  2. [Release] Simple trainer for zombies
    By MisterY in forum Call of Duty 5 - World at War Hacks
    Replies: 22
    Last Post: 02-10-2013, 09:40 AM
  3. [Source Code] How to make a simple detour for hacks [TeknoMW3]
    By Kenshin13 in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 6
    Last Post: 09-30-2012, 09:56 PM
  4. [HELP]trying to do simple trainer for counter-strikesource
    By cheech123 in forum Visual Basic Programming
    Replies: 4
    Last Post: 02-17-2010, 09:29 PM