If you have the same problem i was having you will need to run this in your mysql to fix the guild window bug, since i upgraded from rev 1433 => any higher the guild window stopped working and i found out it was caused by a missing alt table.
Backup first before trying this since i am not sure you have the same problem as me.
ALTER TABLE `botguildmembers` ADD `alt` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `public_note` ;
DROP VIEW IF EXISTS `vwGuildMembers`;
CREATE VIEW `vwGuildMembers` AS
select 'C' as mobtype,
cm.char_id,
cm.guild_id,
cm.rank,
cm.tribute_enable,
cm.total_tribute,
cm.last_tribute,
cm.banker,
cm.public_note,
cm.alt
from guild_members as cm
union all
select 'B' as mobtype,
bm.char_id,
bm.guild_id,
bm.rank,
bm.tribute_enable,
bm.total_tribute,
bm.last_tribute,
bm.banker,
bm.public_note,
bm.alt
from botguildmembers as bm;
__________________
--You start casting " Extra Content"--
--You Hit your database for 9.999 Damage, you have slain your Server--
-- Please wait reinstalling!--/Sigh
|