• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

how to in IDA know addpartystatus(PARTYDATA::Decode) structure?

Newbie Spellweaver
Joined
Jan 9, 2015
Messages
18
Reaction score
1
in IDA look PARTYDATA::Decode just have decodebuffer
how to know these decodebuffer structure?
 
Skilled Illusionist
Joined
Jul 17, 2010
Messages
333
Reaction score
165
in IDA look PARTYDATA::Decode just have decodebuffer
how to know these decodebuffer structure?
Perhaps you will judge it from its structure. In this case, the first 226 bytes correspond to "PARTYMEMBER".
Code:
  unsigned int adwCharacterID[6];
  char asCharacterName[6][13];
  int anJob[6];
  int anSubJob[6];
  int anLevel[6];
  int anChannelID[6];
  int abAccountShutdown[6];
  unsigned int dwPartyBossCharacterID;
=total 226bytes
seems correct?
 
Upvote 0
Newbie Spellweaver
Joined
Jan 9, 2015
Messages
18
Reaction score
1
I don't quite understand the meaning of both of you
sorry I'm noob
 
Upvote 0
Back
Top