Dan

Moderator
SHOWWWWWWWWWWWW.png

On my shard this gump allows players to see their "hidden" points.
Gauntlet points, tokuno, ect.

This is the code I used for the above
Code:
this.AddLabel( 10, 100, 0x480, "Gauntlet Points" );
            this.AddLabel( 160, 100, 0x480, String.Format(" {0} ", pm.GauntletPoints) );

Having a hard time figuring out how to format it for the new points, if it is even possible.

Any help would be great!
 
using Server.Engines.Blackthorn;
using Server.Engines.CleanUpBritannia;


this.AddLabel( 160, 100, 0x480, String.Format(" {0} ", (int)PointsSystem.CleanUpBritannia.GetPoints(pm) ) );
this.AddLabel( 160, 100, 0x480, String.Format(" {0} ", (int)PointsSystem.Blackthorn.GetPoints(pm) ) );

https://github.com/ServUO/ServUO/bl...cripts/Services/CleanUpBritannia/Gumps.cs#L18
Code:
public override int GetPoints(Mobile m)
        {
            return (int)PointsSystem.CleanUpBritannia.GetPoints(m);
        }

https://github.com/ServUO/ServUO/bl.../Revamped Dungeons/BlackthornDungeon/Gumps.cs
Code:
 public override int GetPoints(Mobile m)
        {
            return (int)PointsSystem.Blackthorn.GetPoints(m);
}
 
  • Like
Reactions: Dan

Active Shards

Donations

Total amount
$50.00
Goal
$1,000.00
Back