85 lines
2.4 KiB
C#
85 lines
2.4 KiB
C#
using Server.Guilds;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class GuildCharterGump : Gump
|
|
{
|
|
private const string DefaultWebsite = "https://www.modernuo.com";
|
|
private readonly Guild m_Guild;
|
|
private readonly Mobile m_Mobile;
|
|
|
|
public GuildCharterGump(Mobile from, Guild guild) : base(20, 30)
|
|
{
|
|
m_Mobile = from;
|
|
m_Guild = guild;
|
|
|
|
Draggable = false;
|
|
|
|
AddPage(0);
|
|
AddBackground(0, 0, 550, 400, 5054);
|
|
AddBackground(10, 10, 530, 380, 3000);
|
|
|
|
AddButton(20, 360, 4005, 4007, 1);
|
|
AddHtmlLocalized(55, 360, 300, 35, 1011120); // Return to the main menu.
|
|
|
|
string charter;
|
|
|
|
if ((charter = guild.Charter) == null || (charter = charter.Trim()).Length <= 0)
|
|
{
|
|
AddHtmlLocalized(20, 20, 400, 35, 1013032); // No charter has been defined.
|
|
}
|
|
else
|
|
{
|
|
AddHtml(20, 20, 510, 75, charter, true, true);
|
|
}
|
|
|
|
AddButton(20, 200, 4005, 4007, 2);
|
|
AddHtmlLocalized(55, 200, 300, 20, 1011122); // Visit the guild website :
|
|
|
|
string website;
|
|
|
|
if ((website = guild.Website) == null || (website = website.Trim()).Length <= 0)
|
|
{
|
|
website = DefaultWebsite;
|
|
}
|
|
|
|
AddHtml(55, 220, 300, 20, website);
|
|
}
|
|
|
|
public override void OnResponse(NetState state, in RelayInfo info)
|
|
{
|
|
if (GuildGump.BadMember(m_Mobile, m_Guild))
|
|
{
|
|
return;
|
|
}
|
|
|
|
switch (info.ButtonID)
|
|
{
|
|
case 0:
|
|
{
|
|
return; // Close
|
|
}
|
|
case 1:
|
|
{
|
|
break; // Return to main menu
|
|
}
|
|
case 2:
|
|
{
|
|
string website;
|
|
|
|
if ((website = m_Guild.Website) == null || (website = website.Trim()).Length <= 0)
|
|
{
|
|
website = DefaultWebsite;
|
|
}
|
|
|
|
m_Mobile.LaunchBrowser(website);
|
|
break;
|
|
}
|
|
}
|
|
|
|
GuildGump.EnsureClosed(m_Mobile);
|
|
m_Mobile.SendGump(new GuildGump(m_Mobile, m_Guild));
|
|
}
|
|
}
|
|
}
|