#W# Added a nice status bar. can be flipped vertical or horizontal.
This commit is contained in:
parent
48c489a256
commit
26588acf2d
3 changed files with 168 additions and 3 deletions
|
|
@ -25,6 +25,7 @@ using Server.Engines.Craft;
|
|||
using Server.Spells.Spellweaving;
|
||||
using Server.Engines.PartySystem;
|
||||
using Server.Engines.MLQuests;
|
||||
using Server.Custom.UI;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
|
|
@ -4203,11 +4204,13 @@ namespace Server.Mobiles
|
|||
public override void OnKarmaChange( int oldValue )
|
||||
{
|
||||
InvalidateMyRunUO();
|
||||
StatusBar.Refresh(this);
|
||||
}
|
||||
|
||||
public override void OnFameChange( int oldValue )
|
||||
{
|
||||
InvalidateMyRunUO();
|
||||
StatusBar.Refresh(this);
|
||||
}
|
||||
|
||||
public override void OnSkillChange( SkillName skill, double oldBase )
|
||||
|
|
@ -4226,6 +4229,21 @@ namespace Server.Mobiles
|
|||
InvalidateMyRunUO();
|
||||
}
|
||||
|
||||
public override void OnHungerChange(int oldValue)
|
||||
{
|
||||
StatusBar.Refresh(this);
|
||||
}
|
||||
|
||||
public override void OnThirstChange(int oldValue)
|
||||
{
|
||||
StatusBar.Refresh(this);
|
||||
}
|
||||
|
||||
public override void OnTithingPointsChange(int oldValue)
|
||||
{
|
||||
StatusBar.Refresh(this);
|
||||
}
|
||||
|
||||
public override void OnAccessLevelChanged( AccessLevel oldLevel )
|
||||
{
|
||||
if ( AccessLevel == AccessLevel.Player )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue