Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,39 @@
using System;
using Server.Gumps;
using Server.Network;
namespace Server.Engines.VeteranRewards
{
public class RewardNoticeGump : Gump
{
private readonly Mobile m_From;
public RewardNoticeGump(Mobile from)
: base(0, 0)
{
this.m_From = from;
from.CloseGump(typeof(RewardNoticeGump));
this.AddPage(0);
this.AddBackground(10, 10, 500, 135, 2600);
/* You have reward items available.
* Click 'ok' below to get the selection menu or 'cancel' to be prompted upon your next login.
*/
this.AddHtmlLocalized(52, 35, 420, 55, 1006046, true, true);
this.AddButton(60, 95, 4005, 4007, 1, GumpButtonType.Reply, 0);
this.AddHtmlLocalized(95, 96, 150, 35, 1006044, false, false); // Ok
this.AddButton(285, 95, 4017, 4019, 0, GumpButtonType.Reply, 0);
this.AddHtmlLocalized(320, 96, 150, 35, 1006045, false, false); // Cancel
}
public override void OnResponse(NetState sender, RelayInfo info)
{
if (info.ButtonID == 1)
this.m_From.SendGump(new RewardChoiceGump(this.m_From));
}
}
}