-
Member
[Help] Read Last Cahat Message
Hi guys, can someone help me with reading the latest chat message?
i have offsets
Code:
public const int Last_Ui_Message = 0x30096;
public class Chat
{
public const int Open = 0x2F87134;
public const int Start = 0x30A3810;
public const int Offset = 0xCB8;
public const int Message = 0xE6;
}
But I don't know how to use it
What type to read from Last_Ui_Message , unsigned int?
Help me understand this structure please , and how to read it
Last edited by Hrap; 12-07-2022 at 01:19 PM.
These ads disappear when you log in.
-
Member
"offset": 0xCB8,
"posterGuid": 0x0,
"posterName": 0x34,
"channelName": 0x65,
"message": 0xE6,
"type": 0xCA0,
"channelId": 0xCA4,
"index": 0xCA8,
"time": 0xCB0,
Hello everyone, I'm a newbie~ Recently I'm trying to study how to execute API externally and get the return value of API, as well as the release of aoe spells, come on!
-
Post Thanks / Like - 1 Thanks
Hrap (1 members gave Thanks to qop1832 for this useful post)
-
Originally Posted by
Hrap
Hi guys, can someone help me with reading the latest chat message?
i have offsets
Code:
public const int Last_Ui_Message = 0x30096;
public class Chat
{
public const int Open = 0x2F87134;
public const int Start = 0x30A3810;
public const int Offset = 0xCB8;
public const int Message = 0xE6;
}
But I don't know how to use it
What type to read from Last_Ui_Message , unsigned int?
Help me understand this structure please , and how to read it
Oh hey... I wonder how you got those results
btw 0x30096 is generally attributed to an invalid pattern result.
If you're just using my dumper straight off GitHub, you'll need to update the patterns as a few are no longer valid (and I will not be publicly updating patterns)
"May all your bacon burn."
-
Member
Greetings Razzue,
Fortunately, all the offsets that are critical for me still work.
I still have no idea how to search for templates correctly, so that I can update them later in the dumper.
So far, all the time is spent on building the logic of the bot (moving, fighting, collecting, reactions, etc.)
does not work
Code:
public const int Last_Ui_Message = 0x30096;
public const int Count = 0x30096;
public const int Base = 0x3009E;
so far everything seems
Last edited by Hrap; 12-15-2022 at 05:28 AM.
-
Established Member
Code:
const uint64_t ChatHistoryInitialized = 0x30D3350;
const uint64_t ChatHistory = 0x30A3810;
const uint64_t ChatHistoryCount = 0x3C;
const uint64_t ChatHistoryCurrentIndex = 0x30A380C;
const uint64_t ChatHistoryNextOffset = 0xCB8;
const uint64_t ChatHistorySenderGuid = 0x0;
const uint64_t ChatHistorySenderName = 0x34;
const uint64_t ChatHistoryFullMessage = 0xE6;
const uint64_t ChatHistoryChatType = 0xCA0;
const uint64_t ChatHistoryChannelNum = 0xCA4;
-
Post Thanks / Like - 1 Thanks
Razzue (1 members gave Thanks to oiramario for this useful post)
-
Member
-
Member
"LastError" "48 8D 0D ?? ?? ?? ?? 41 B8 ?? ?? ?? ?? 48 8D 95 ?? ?? ?? ?? 0F 1F 40 ??"
"Chat_Open" "44 39 25 ?? ?? ?? ?? 0F 8E ?? ?? ?? ?? 33"
"Chat_Base" "48 8D 15 ?? ?? ?? ?? 4C 8D 05 ?? ?? ?? ?? 80 BA ?? ?? ?? ?? ?? 74 ?? 8B 01 39 82 ?? ?? ?? ?? 74 ?? 48 81 C2 ?? ?? ?? ?? 49 3B D0 75 ?? 32 C0"
Hello everyone, I'm a newbie~ Recently I'm trying to study how to execute API externally and get the return value of API, as well as the release of aoe spells, come on!