34 lines
940 B
C#
34 lines
940 B
C#
using Server.Guilds;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class GuildCandidatesGump : GuildMobileListGump
|
|
{
|
|
public GuildCandidatesGump(Mobile from, Guild guild) : base(from, guild, false, guild.Candidates)
|
|
{
|
|
}
|
|
|
|
protected override void Design()
|
|
{
|
|
AddHtmlLocalized(20, 10, 500, 35, 1013030); // <center> Candidates </center>
|
|
|
|
AddButton(20, 400, 4005, 4007, 1);
|
|
AddHtmlLocalized(55, 400, 300, 35, 1011120); // Return to the main menu.
|
|
}
|
|
|
|
public override void OnResponse(NetState state, in RelayInfo info)
|
|
{
|
|
if (GuildGump.BadMember(m_Mobile, m_Guild))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (info.ButtonID == 1)
|
|
{
|
|
GuildGump.EnsureClosed(m_Mobile);
|
|
m_Mobile.SendGump(new GuildGump(m_Mobile, m_Guild));
|
|
}
|
|
}
|
|
}
|
|
}
|