Hello, i started to look into wow-devloping yesterday, and found this very websites offset collection, and decided to test my luck.
sadly, it seemed i had none
i tried calling CommandPrintF (thats what its called, i think?) in 2 different ways, typedef and from assembly, although, none were succesfull
what i tried:
typedef void(__cdecl *ConsolePrintType) (char*);
ConsolePrintType ConsolePrint = (ConsolePrintType)0x006F8900;
and
//copypasta from olly
void Print(char* msg)
{
__asm
{
PUSH msg
MOV EAX, 0x006F8900
CALL EAX
ADD ESP, 8
}
}
and then made the call Print("test") or ConsolePrint("test")
Any ideas whats wrong?