• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

To delete

Some packets, i guess.

Example of reading ID (I know you don't ment that, but I did it before you posted so i will share xd):
Code:
int addr = 0x635F70;

char *name;
int id, type;

for (int i = 0; i < 250; i++)
{
	ReadProcessMemory(hProcess, addr+4, &name, 64, 4);
	ReadProcessMemory(hProcess, addr, &id, 2, 2);
	ReadProcessMemory(hProcess, addr+3, &type, 8, 2);

	std::cout << name << "[" << id << "]: " << type;
	addr += 0xA4;
}
 
Some packets, i guess.

Example of reading ID (I know you don't ment that, but I did it before you posted so i will share xd):
Code:
int addr = 0x635F70;

char *name;
int id, type;

for (int i = 0; i < 250; i++)
{
	ReadProcessMemory(hProcess, addr+4, &name, 64, 4);
	ReadProcessMemory(hProcess, addr, &id, 2, 2);
	ReadProcessMemory(hProcess, addr+3, &type, 8, 2);

	std::cout << name << "[" << id << "]: " << type;
	addr += 0xA4;
}

lol you talk about packets and post a function that reads the memory? ^,- do you even know what u are doing?:O
 
Back
Top