006ae610 is the offset for the name of the person who last sent you a tell (ie, used in the /reply code). It is not a pointer offset. It is also allocated 0x40 bytes in length.
I seem to remember someone asking about this a long time ago....
Moderator: MacroQuest Developers
Code: Select all
LastTell=006AE610
DWORD parmLastTell(PCHAR szVar, PCHAR szOutput, PSPAWNINFO pChar)
{
DWORD i=0;
// $lasttell
i += 7;
if (EQADDR_LASTTELL && (*EQADDR_LASTTELL)[0]!=0) {
strcat(szOutput,*EQADDR_LASTTELL);
} else {
strcat(szOutput,"NULL");
}
return i;
}