Talk:OAR format 0.2 region settings example
From OpenSimulator
Revision as of 16:44, 6 June 2009 by Gwyneth Llewelyn  (Talk | contribs)
Maturity Rating?
Now that the Adult Maturity Rating is available, what is the appropriate number for it?
Simulator.cs (on 0.6.3-trunk) shows the following table:
    /// <summary>
    /// Access level for a simulator
    /// </summary>
    public enum SimAccess : byte
    {
        /// <summary>Minimum access level, no additional checks</summary>
        Min = 0,
        /// <summary>Trial accounts allowed</summary>
        Trial = 7,
        /// <summary>PG rating</summary>
        PG = 13,
        /// <summary>Mature rating</summary>
        Mature = 21,
        /// <summary>Simulator is offline</summary>
        Down = 254,
        /// <summary>Simulator does not exist</summary>
        NonExistent = 255
    }
What is the correspondence to the OAR file format?
Thanks!
Gwyneth Llewelyn 00:44, 7 June 2009 (UTC)