本文整理汇总了C#中Server.Guilds.Guild.GetExpTime方法的典型用法代码示例。如果您正苦于以下问题:C# Guild.GetExpTime方法的具体用法?C# Guild.GetExpTime怎么用?C# Guild.GetExpTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server.Guilds.Guild
的用法示例。
在下文中一共展示了Guild.GetExpTime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessWarGump
public ProcessWarGump( Mobile from, Guild guild )
: base(10, 40)
{
m_Mobile = from;
m_Guild = from.Guild as Guild;
w_Guild = guild;
uint ET = m_Guild.GetExpTime( w_Guild );
int h = (int) ( ET / 60 );
int m = (int) ( ET - h * 60 );
/*0*/
Intern( "Unknown" );
/*1*/
Intern( "" );
/*2*/
Intern( "" );
/*3*/
Intern( "0/0" );
/*4*/
Intern( "0/0" );
/*5*/
Intern( "00:00" );
/*6*/
Intern( guild.Name );
/*7*/
Intern( "<basefont color=#black>" + guild.AllianceName + "</basefont>" );
/*8*/
Intern( guild.Abbreviation );
/*9*/
Intern( "<basefont color=#black>" + m_Guild.GetKills( w_Guild ) + "/" + m_Guild.GetMaxKills( w_Guild ) + "</basefont>" );
/*10*/
Intern( "<basefont color=#black>" + h + ":" + m + "</basefont>" );
/*11*/
Intern( "<basefont color=#black>" + w_Guild.GetKills( m_Guild ) + "/" + m_Guild.GetMaxKills( w_Guild ) + "</basefont>" );
AddPage( 0 );
AddBackground( 0, 0, 520, 335, 0x242C );
AddHtmlLocalized( 20, 15, 480, 26, 1062975, 0x0, false, false ); // Guild Relationship
AddImageTiled( 20, 40, 480, 2, 0x2711 );
AddHtmlLocalized( 20, 50, 120, 26, 1062954, 0x0, true, false ); // Guild Name
AddHtmlIntern( 150, 53, 360, 26, 6, false, false );
AddHtmlLocalized( 20, 80, 120, 26, 1063025, 0x0, true, false ); // Alliance
AddHtmlIntern( 150, 83, 360, 26, 7, false, false );
AddHtmlLocalized( 20, 110, 120, 26, 1063139, 0x0, true, false ); // Abbreviation
AddHtmlIntern( 150, 113, 120, 26, 8, false, false );
AddHtmlLocalized( 280, 110, 120, 26, 1062966, 0x0, true, false ); // Your Kills
AddHtmlIntern( 410, 113, 120, 26, 9, false, false );
AddHtmlLocalized( 20, 140, 120, 26, 1062968, 0x0, true, false ); // Time Remaining
AddHtmlIntern( 150, 143, 120, 26, 10, false, false );
AddHtmlLocalized( 280, 140, 120, 26, 1062967, 0x0, true, false ); // Their Kills
AddHtmlIntern( 410, 143, 120, 26, 11, false, false );
AddImageTiled( 20, 172, 480, 2, 0x2711 );
AddBackground( 275, 290, 225, 26, 0x2486 );
AddButton( 280, 295, 0x845, 0x846, 0, GumpButtonType.Reply, 0 );
AddHtmlLocalized( 305, 293, 185, 26, 3000091, 0x0, false, false ); // Cancel
AddBackground( 20, 290, 225, 26, 0x2486 );
AddButton( 25, 295, 0x845, 0x846, 100, GumpButtonType.Reply, 0 );
AddHtmlLocalized( 50, 293, 185, 26, 1062980, 0x0, false, false ); // Surrender
AddHtmlLocalized( 20, 180, 480, 30, 1062965, 0x0, true, false ); // You are at war with this guild!
AddImageTiled( 20, 245, 480, 2, 0x2711 );
//AddMasterGump( 725 );
}