当前位置: 首页>>代码示例>>C#>>正文


C# Guild.IsProtected方法代码示例

本文整理汇总了C#中Server.Guilds.Guild.IsProtected方法的典型用法代码示例。如果您正苦于以下问题:C# Guild.IsProtected方法的具体用法?C# Guild.IsProtected怎么用?C# Guild.IsProtected使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Server.Guilds.Guild的用法示例。


在下文中一共展示了Guild.IsProtected方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GuildProtectionMenu

        public GuildProtectionMenu( Mobile from, Guild guild )
            : base("Guild Protection", null)
        {
            m_Mobile = from;
            m_Guild = guild;

            List<String> list = new List<String>();

            if ( m_Guild.IsProtected( m_Guild.Leader ) )
            {
                int total = 0;
                foreach ( Mobile m in m_Guild.Protected )
                {
                    if ( m == m_Guild.Leader )
                        total += Guild.ProtectionRateLeader;
                    else
                        total -= Guild.ProtectionRateMember;

                    if ( total < 5000 )
                        total = 5000;
                }
                TimeSpan days = m_Guild.LastProtectionPayment.AddDays(m_Guild.ProtectionPeriod.TotalDays) - DateTime.Now;

                list.Add( String.Format( "Toggle guild protection and lockdowns. Currently on. The next payment of {0:n0} gold pieces will be charged in {1} days.", total, Math.Ceiling( days.TotalDays ) ) );
            }
            else
            {
                list.Add( "Toggle guild protection and lockdowns. Currently off." );
            }

            list.Add( "Set guild house sign." );
            list.Add( "Grant protection to a guild member." );
            list.Add( "Revoke protection from a guild member." );
            list.Add( "Return to main menu." );

            Answers = list.ToArray();
        }
开发者ID:Ravenwolfe,项目名称:Origins,代码行数:37,代码来源:GuildProtectionMenu.cs


注:本文中的Server.Guilds.Guild.IsProtected方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。