• 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!

Linux Read memory address

GOD Fito

Member
Joined
Oct 3, 2008
Messages
97
Solutions
1
Reaction score
9
0x00000000006308ca in Party::isPlayerInvited (this=0x7fb861fae180, player=0x7fb86213e4c0, result=false)

Someone can translate this?
I mean, as far i know, 0x7fb861fae180 and 0x7fb86213e4c0 are the playerGUID? Right? But i don't know how to decode it.

It's from a gdb core.
 
0x00000000006308ca is the sector in which the function is being called.

this=0x7fb861fae180 refers to the Party
player=0x7fb86213e4c0 is the player the function is checking if is invited.
result=false speaks for itself.

As you state you're using gdb and if you're curious about which player this is you could probably jump to the thread and call getName().

Best Wishes,
Okke
 
Back
Top