[Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

Results 1 to 11 of 11
  1. #1

    idea [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Hey
    using some custom season 1 files and woud like to remove the button from creating DL from main.exe

    tried to find the offset but couldnt..



    any help would be appreciated..

    @Kiosani
    @DragonSeth
    @myheart
    @evilek91
    @Pinkof
    @kristians521
    @cMu
    @Pyke
    @ashlay
    @Kernighan


  2. #2
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    354Posts

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    please upload the main

  3. #3

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Quote Originally Posted by myheart View Post
    please upload the main
    https://www.sendspace.com/file/mjt70p

    if u want client tell me .

    thanks

  4. #4
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    354Posts

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Quote Originally Posted by KarLi View Post
    https://www.sendspace.com/file/mjt70p

    if u want client tell me .

    thanks
    try this:

    SetByte(0x0061AE31, 0x4);
    SetByte(0x0061AE81, 0x4);

  5. #5

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Quote Originally Posted by myheart View Post
    try this:

    SetByte(0x0061AE31, 0x4);
    SetByte(0x0061AE81, 0x4);
    Thanks does this have to be done with custom .dll only or with ollydbg too?

    Code:
    #include "Windows.h"
    DWORD OldProtect;
    
    
    DWORD WriteMemory(const LPVOID lpAddress, const LPVOID lpBuf, const UINT uSize)
    {
        DWORD dwErrorCode = 0;
        DWORD dwOldProtect = 0;
    
    
        int iRes = VirtualProtect(lpAddress, uSize, PAGE_EXECUTE_READWRITE, &dwOldProtect);
    
    
        if (iRes == 0)
        {
            dwErrorCode = GetLastError();
            return dwErrorCode;
        }
    
    
        memcpy(lpAddress, lpBuf, uSize);
    
    
        DWORD dwBytes = 0;
    
    
        iRes = VirtualProtect(lpAddress, uSize, dwOldProtect, &dwBytes);
    
    
        if (iRes == 0)
        {
            dwErrorCode = GetLastError();
            return dwErrorCode;
        }
    
    
        return 0x00;
    }
    DWORD SetByte(const LPVOID dwOffset, const BYTE btValue)
    {
        return WriteMemory(dwOffset, (LPVOID)& btValue, sizeof(BYTE));
    }
    
    
    extern "C" __declspec(dllexport)void Init()
    {
        if (VirtualProtect(LPVOID(0x401000), 0xD21FFF, PAGE_EXECUTE_READWRITE, &OldProtect))
        {
            SetByte((PVOID)(0x004030D1 + 3), 6);
        }
    }


    - - - Updated - - -

    i changed the 5 to 4 with ollydbg and after loading select character the client closes

  6. #6
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    354Posts

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    both are the same. recommend write in custom dll.
    but i don't know it work or not because i don't have a file for test.

  7. #7

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Quote Originally Posted by myheart View Post
    both are the same. recommend write in custom dll.
    but i don't know it work or not because i don't have client for test.
    i PM you client for test (use the patch) in the client.

    Much appreciated!

  8. #8
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    354Posts

    re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Hello, i'm back (:
    i was trapped by wz that why i have delay on this..

    Code:
    remove DL: SetDword(0x0063A6FE, 0x76AD2EC);
    and MG: SetDword(0x0063A6FE, 0x76AD1C0);
    Last edited by myheart; 13-11-18 at 11:45 AM.

  9. #9

    Re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    Thanks worked!

  10. #10

    Re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    @myheart
    do u think u know how to remove Dark Lord from select server screen aswell?

    thanks.

  11. #11

    Re: [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08)

    bump for DL in select server screen.



Advertisement