RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Item Level requirements

pooka01

Sorceror
those are the "ONLY" place where level requirement is stated?

also try that temporary:
Code:
  [CommandProperty( AccessLevel.GameMaster )]
  public int LevelRequirement
  {
   get{ return m_LevelReq; }
   set{ m_LevelReq = value; }
  }
just to see if it will still go back to 0.
 

MrBurston

Traveler
heres the fix :) finally its solved! hahahah

Code:
        [CommandProperty( AccessLevel.GameMaster )]
        public int LevelRequirement
        {
            get{ return ( LevelReq ); }
            set{ m_LevelReq = value; InvalidateProperties(); }
        }
 
Top