|
From: Chad M. <cmm...@us...> - 2005-10-29 23:15:40
|
Update of /cvsroot/seq/showeq/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17607/src Modified Files: everquest.h guildshell.cpp guildshell.h Log Message: Fixed OP_GuildMemberList. They added another int per guild member. Put in gm in spawnStruct. Version -> 5.2.2 Index: everquest.h =================================================================== RCS file: /cvsroot/seq/showeq/src/everquest.h,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- everquest.h 28 Oct 2005 06:25:46 -0000 1.84 +++ everquest.h 29 Oct 2005 23:15:32 -0000 1.85 @@ -913,8 +913,9 @@ */ struct spawnStruct { -/*0000*/ uint8_t gm; // 0=no, 1=gm %%% wrong but compile... -/*0001*/ uint8_t unknown0001[2]; +/*0000*/ uint8_t unknown0000; +/*0001*/ uint8_t gm; // 0=no, 1=gm +/*0002*/ uint8_t unknown0003; /*0003*/ int8_t aa_title; // 0=none, 1=general, 2=archtype, 3=class /*0004*/ uint8_t unknown0004; /*0005*/ uint8_t anon; // 0=normal, 1=anon, 2=roleplay Index: guildshell.cpp =================================================================== RCS file: /cvsroot/seq/showeq/src/guildshell.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- guildshell.cpp 13 Sep 2005 15:23:11 -0000 1.2 +++ guildshell.cpp 29 Oct 2005 23:15:32 -0000 1.3 @@ -56,6 +56,10 @@ // 4 byte guild tribute last donation timestamp m_guildTributeLastDonation = time_t(netStream.readUInt32()); + // 4 byte unknown. Maybe this will be a full member/prospect flag instead + // of using guild rank? + m_unknown1 = netStream.readUInt32(); + // Null-terminated public note m_publicNote = netStream.readText(); Index: guildshell.h =================================================================== RCS file: /cvsroot/seq/showeq/src/guildshell.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- guildshell.h 13 Sep 2005 15:23:11 -0000 1.2 +++ guildshell.h 29 Oct 2005 23:15:32 -0000 1.3 @@ -58,6 +58,7 @@ uint8_t m_guildTributeOn; // 0 = off, 1 = on uint8_t m_guildTributeDonated; time_t m_guildTributeLastDonation; + uint32_t m_unknown1; QString m_publicNote; uint16_t m_zoneId; uint16_t m_zoneInstance; |