Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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

Joined
May 26, 2009
Messages
17,278
Reaction score
3,203
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..

woDYOU1 - [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08) - RaGEZONE Forums


any help would be appreciated..
Kiosani
DragonSeth
myheart
evilek91
Pinkof
kristians521
cMu
Pyke
ashlay
Kernighan
 

Attachments

You must be registered for see attachments list
Joined
May 26, 2009
Messages
17,278
Reaction score
3,203
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);
    }
}

kOZUfXk - [Help] Disable Dark Lord in Season 1 Main.exe (1.00.08) - RaGEZONE Forums




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

Attachments

You must be registered for see attachments list
Upvote 0
Skilled Illusionist
Joined
Jun 22, 2017
Messages
363
Reaction score
557
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.
 
Upvote 0
Skilled Illusionist
Joined
Jun 22, 2017
Messages
363
Reaction score
557
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:
Upvote 0
Back
Top