Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
57
Scripts/Services/Town Cryer/Gumps/TownCryerGuildGump.cs
Normal file
57
Scripts/Services/Town Cryer/Gumps/TownCryerGuildGump.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
using Server;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Mobiles;
|
||||
using Server.Guilds;
|
||||
using Server.Gumps;
|
||||
|
||||
namespace Server.Services.TownCryer
|
||||
{
|
||||
public class TownCryerGuildGump : BaseTownCryerGump
|
||||
{
|
||||
public TownCryerGuildEntry Entry { get; private set; }
|
||||
|
||||
public TownCryerGuildGump(PlayerMobile pm, TownCrier cryer, TownCryerGuildEntry entry)
|
||||
: base(pm, cryer)
|
||||
{
|
||||
Entry = entry;
|
||||
}
|
||||
|
||||
public override void AddGumpLayout()
|
||||
{
|
||||
base.AddGumpLayout();
|
||||
|
||||
AddHtml(57, 155, 724, 20, Entry.Title, false, false);
|
||||
AddHtmlLocalized(57, 180, 724, 20, 1158066, String.Format("{0}, {1}", Entry.Author, Entry.Guild.Name), 0, false, false); // Posted By: ~1_NAME~
|
||||
|
||||
AddHtmlLocalized(57, 215, 50, 20, 1158067, false, false); // When:
|
||||
AddHtmlLocalized(57, 235, 50, 20, 1158068, false, false); // Where:
|
||||
|
||||
int time = Entry.EventTime.Hour;
|
||||
|
||||
AddLabel(102, 215, 0, String.Format("{0}-{1}-{2} {3}{4} {5}",
|
||||
Entry.EventTime.Month,
|
||||
Entry.EventTime.Day,
|
||||
Entry.EventTime.Year,
|
||||
time == 0 ? 12 : time > 12 ? time - 12 : time,
|
||||
Entry.EventTime.Hour >= 12 ? "pm" : "am",
|
||||
TimeZoneInfo.Local.StandardName));
|
||||
|
||||
AddLabel(102, 235, 0, Entry.EventLocation);
|
||||
|
||||
AddHtml(57, 270, 724, 205, Entry.Body, false, false);
|
||||
|
||||
AddImage(85, 425, 0x5EF);
|
||||
}
|
||||
|
||||
public override void OnResponse(RelayInfo info)
|
||||
{
|
||||
if (info.ButtonID == 0)
|
||||
{
|
||||
var gump = new TownCryerGump(User, Cryer);
|
||||
gump.Category = TownCryerGump.GumpCategory.Guild;
|
||||
BaseGump.SendGump(gump);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user