Skip to content

Commit 2856c44

Browse files
committed
fix(dll): Updates offset for v1.3.1.3_fix3
1 parent 98b7d40 commit 2856c44

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lol/lol.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ int start() {
5151
char *base = NULL;
5252
MEMORY_BASIC_INFORMATION mbi;
5353
bool foundBase = false;
54-
const auto expectedSize = 0x39b6000;
54+
const auto expectedSize = 0x39e1000;
5555

5656
std::cout << "Searching for base address..." << std::endl;
5757

@@ -71,7 +71,7 @@ int start() {
7171
std::cout << "Base address: " << (void *)base << std::endl;
7272
std::cout << "Region size: " << std::hex << mbi.RegionSize << std::endl;
7373

74-
const auto expectedRegion = 0x3da000;
74+
const auto expectedRegion = 0x3d3000;
7575

7676
char *buf = new char[expectedRegion];
7777
if (!ReadProcessMemory(proc, base, (void *)buf, expectedRegion, NULL)) {
@@ -224,7 +224,7 @@ int start() {
224224
0x41, 0x52, // push r10
225225
0x41, 0x51, // push r9
226226
0x49, 0xb9, 0xde, 0xc0, 0xad, 0xba, 0xde, 0xc0, 0xad, 0xba, // mov r9, 0xbaadc0debaadc0de
227-
0x4D, 0x8D, 0x91, 0xD0, 0x91, 0x57, 0x00, // lea r10, [r9+0x5791d0]
227+
0x4D, 0x8D, 0x91, 0xC0, 0x22, 0x57, 0x00, // lea r10, [r9+0x5722C0]
228228
0x4C, 0x39, 0xD1, // cmp rcx, r10
229229
0x41, 0x59, // pop r9
230230
0x41, 0x5A, // pop r10

0 commit comments

Comments
 (0)