Server.Items.HouseRaffleStone.FormatLocation C# (CSharp) Méthode

FormatLocation() public méthode

public FormatLocation ( ) : string
Résultat string
        public string FormatLocation()
        {
            if ( !ValidLocation() )
                return "no location set";

            return FormatLocation( GetPlotCenter(), m_Facet, true );
        }

Same methods

HouseRaffleStone::FormatLocation ( Server.Point3D loc, Server.Map map, bool displayMap ) : string

Usage Example

        public override void GetProperties(ObjectPropertyList list)
        {
            base.GetProperties(list);

            if (ValidLocation())
            {
                list.Add(1060658, "location\t{0}", HouseRaffleStone.FormatLocation(m_PlotLocation, m_Facet, false)); // ~1_val~: ~2_val~
                list.Add(1060659, "facet\t{0}", m_Facet);                                                            // ~1_val~: ~2_val~
            }

            //list.Add( 1060660, "shard\t{0}", ServerList.ServerName ); // ~1_val~: ~2_val~
        }
All Usage Examples Of Server.Items.HouseRaffleStone::FormatLocation