|
From: <fra...@us...> - 2014-05-01 19:54:58
|
Revision: 814
http://sourceforge.net/p/seq/svn/814
Author: fransick
Date: 2014-05-01 19:54:54 +0000 (Thu, 01 May 2014)
Log Message:
-----------
fix for Guild Member Window functionality
- Rank and Banker Columns no longer valid due to EQ changes. Best to hide them
Modified Paths:
--------------
showeq/trunk/src/guildshell.cpp
showeq/trunk/src/guildshell.h
Modified: showeq/trunk/src/guildshell.cpp
===================================================================
--- showeq/trunk/src/guildshell.cpp 2014-05-01 12:20:44 UTC (rev 813)
+++ showeq/trunk/src/guildshell.cpp 2014-05-01 19:54:54 UTC (rev 814)
@@ -61,6 +61,9 @@
// 4 byte guild tribute on/off (0 = off, 1 = on)
m_guildTributeOn = netStream.readUInt32();
+ // 4 byte guild trophy on/off (0 = off, 1 = on) Added 4/29/14
+ m_guildTrophyOn = netStream.readUInt32();
+
// 4 byte guild tribute total donated
m_guildTributeDonated = netStream.readUInt32();
@@ -76,6 +79,9 @@
// 2 byte zoneInstance and zoneId for current zone
m_zoneInstance = netStream.readUInt16();
m_zoneId = netStream.readUInt16();
+
+ // Unknown
+ netStream.skipBytes(8);
}
GuildMember::~GuildMember()
Modified: showeq/trunk/src/guildshell.h
===================================================================
--- showeq/trunk/src/guildshell.h 2014-05-01 12:20:44 UTC (rev 813)
+++ showeq/trunk/src/guildshell.h 2014-05-01 19:54:54 UTC (rev 814)
@@ -62,6 +62,7 @@
uint32_t m_guildRank; // 0 = member, 1 = officer, 2 = leader
time_t m_lastOn;
uint8_t m_guildTributeOn; // 0 = off, 1 = on
+ uint8_t m_guildTrophyOn; // 0 = off, 1 = on
uint8_t m_guildTributeDonated;
time_t m_guildTributeLastDonation;
uint32_t m_alt; // 0 = no, 1 = alt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|