73 lines
No EOL
1.9 KiB
C#
73 lines
No EOL
1.9 KiB
C#
using System;
|
|
using System.Collections;
|
|
using Server;
|
|
using Server.Guilds;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class GuildCharterGump : Gump
|
|
{
|
|
private Mobile m_Mobile;
|
|
private Guild m_Guild;
|
|
|
|
private const string DefaultWebsite = "http://www.runuo.com/";
|
|
|
|
public GuildCharterGump( Mobile from, Guild guild ) : base( 20, 30 )
|
|
{
|
|
m_Mobile = from;
|
|
m_Guild = guild;
|
|
|
|
Dragable = false;
|
|
|
|
AddPage( 0 );
|
|
AddBackground( 0, 0, 550, 400, 5054 );
|
|
AddBackground( 10, 10, 530, 380, 3000 );
|
|
|
|
AddButton( 20, 360, 4005, 4007, 1, GumpButtonType.Reply, 0 );
|
|
AddHtmlLocalized( 55, 360, 300, 35, 1011120, false, false ); // Return to the main menu.
|
|
|
|
string charter;
|
|
|
|
if ( (charter = guild.Charter) == null || (charter = charter.Trim()).Length <= 0 )
|
|
AddHtmlLocalized( 20, 20, 400, 35, 1013032, false, false ); // No charter has been defined.
|
|
else
|
|
AddHtml( 20, 20, 510, 75, charter, true, true );
|
|
|
|
AddButton( 20, 200, 4005, 4007, 2, GumpButtonType.Reply, 0 );
|
|
AddHtmlLocalized( 55, 200, 300, 20, 1011122, false, false ); // Visit the guild website :
|
|
|
|
string website;
|
|
|
|
if ( (website = guild.Website) == null || (website = website.Trim()).Length <= 0 )
|
|
website = DefaultWebsite;
|
|
|
|
AddHtml( 55, 220, 300, 20, website, false, false );
|
|
}
|
|
|
|
public override void OnResponse( NetState state, 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 ) );
|
|
}
|
|
}
|
|
} |