Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
128
Scripts/Services/Factions/Gumps/ElectionGump.cs
Normal file
128
Scripts/Services/Factions/Gumps/ElectionGump.cs
Normal file
@@ -0,0 +1,128 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class ElectionGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Election m_Election;
|
||||
|
||||
public ElectionGump(PlayerMobile from, Election election)
|
||||
: base(50, 50)
|
||||
{
|
||||
m_From = from;
|
||||
m_Election = election;
|
||||
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 420, 180, 5054);
|
||||
AddBackground(10, 10, 400, 160, 3000);
|
||||
|
||||
AddHtmlText(20, 20, 380, 20, election.Faction.Definition.Header, false, false);
|
||||
|
||||
// NOTE: Gump not entirely OSI-accurate, intentionally so
|
||||
|
||||
switch ( election.State )
|
||||
{
|
||||
case ElectionState.Pending:
|
||||
{
|
||||
TimeSpan toGo = (election.LastStateTime + Election.PendingPeriod) - DateTime.UtcNow;
|
||||
int days = (int)(toGo.TotalDays + 0.5);
|
||||
|
||||
AddHtmlLocalized(20, 40, 380, 20, 1038034, false, false); // A new election campaign is pending
|
||||
|
||||
if (days > 0)
|
||||
{
|
||||
AddHtmlLocalized(20, 60, 280, 20, 1018062, false, false); // Days until next election :
|
||||
AddLabel(300, 60, 0, days.ToString());
|
||||
}
|
||||
else
|
||||
{
|
||||
AddHtmlLocalized(20, 60, 280, 20, 1018059, false, false); // Election campaigning begins tonight.
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case ElectionState.Campaign:
|
||||
{
|
||||
TimeSpan toGo = (election.LastStateTime + Election.CampaignPeriod) - DateTime.UtcNow;
|
||||
int days = (int)(toGo.TotalDays + 0.5);
|
||||
|
||||
AddHtmlLocalized(20, 40, 380, 20, 1018058, false, false); // There is an election campaign in progress.
|
||||
|
||||
if (days > 0)
|
||||
{
|
||||
AddHtmlLocalized(20, 60, 280, 20, 1038033, false, false); // Days to go:
|
||||
AddLabel(300, 60, 0, days.ToString());
|
||||
}
|
||||
else
|
||||
{
|
||||
AddHtmlLocalized(20, 60, 280, 20, 1018061, false, false); // Campaign in progress. Voting begins tonight.
|
||||
}
|
||||
|
||||
if (m_Election.CanBeCandidate(m_From))
|
||||
{
|
||||
AddButton(20, 110, 4005, 4007, 2, GumpButtonType.Reply, 0);
|
||||
AddHtmlLocalized(55, 110, 350, 20, 1011427, false, false); // CAMPAIGN FOR LEADERSHIP
|
||||
}
|
||||
else
|
||||
{
|
||||
PlayerState pl = PlayerState.Find(m_From);
|
||||
|
||||
if (pl == null || pl.Rank.Rank < Election.CandidateRank)
|
||||
AddHtmlLocalized(20, 100, 380, 20, 1010118, false, false); // You must have a higher rank to run for office
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case ElectionState.Election:
|
||||
{
|
||||
TimeSpan toGo = (election.LastStateTime + Election.VotingPeriod) - DateTime.UtcNow;
|
||||
int days = (int)Math.Ceiling(toGo.TotalDays);
|
||||
|
||||
AddHtmlLocalized(20, 40, 380, 20, 1018060, false, false); // There is an election vote in progress.
|
||||
|
||||
AddHtmlLocalized(20, 60, 280, 20, 1038033, false, false);
|
||||
AddLabel(300, 60, 0, days.ToString());
|
||||
|
||||
AddHtmlLocalized(55, 100, 380, 20, 1011428, false, false); // VOTE FOR LEADERSHIP
|
||||
AddButton(20, 100, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
AddButton(20, 140, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
AddHtmlLocalized(55, 140, 350, 20, 1011012, false, false); // CANCEL
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
switch ( info.ButtonID )
|
||||
{
|
||||
case 0: // back
|
||||
{
|
||||
m_From.SendGump(new FactionStoneGump(m_From, m_Election.Faction));
|
||||
break;
|
||||
}
|
||||
case 1: // vote
|
||||
{
|
||||
if (m_Election.State == ElectionState.Election)
|
||||
m_From.SendGump(new VoteGump(m_From, m_Election));
|
||||
|
||||
break;
|
||||
}
|
||||
case 2: // campaign
|
||||
{
|
||||
if (m_Election.CanBeCandidate(m_From))
|
||||
m_Election.AddCandidate(m_From);
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
215
Scripts/Services/Factions/Gumps/ElectionManagementGump.cs
Normal file
215
Scripts/Services/Factions/Gumps/ElectionManagementGump.cs
Normal file
@@ -0,0 +1,215 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class ElectionManagementGump : Gump
|
||||
{
|
||||
public const int LabelColor = 0xFFFFFF;
|
||||
private readonly Election m_Election;
|
||||
private readonly Candidate m_Candidate;
|
||||
private readonly int m_Page;
|
||||
public ElectionManagementGump(Election election)
|
||||
: this(election, null, 0)
|
||||
{
|
||||
}
|
||||
|
||||
public ElectionManagementGump(Election election, Candidate candidate, int page)
|
||||
: base(40, 40)
|
||||
{
|
||||
this.m_Election = election;
|
||||
this.m_Candidate = candidate;
|
||||
this.m_Page = page;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
if (candidate != null)
|
||||
{
|
||||
this.AddBackground(0, 0, 448, 354, 9270);
|
||||
this.AddAlphaRegion(10, 10, 428, 334);
|
||||
|
||||
this.AddHtml(10, 10, 428, 20, this.Color(this.Center("Candidate Management"), LabelColor), false, false);
|
||||
|
||||
this.AddHtml(45, 35, 100, 20, this.Color("Player Name:", LabelColor), false, false);
|
||||
this.AddHtml(145, 35, 100, 20, this.Color(candidate.Mobile == null ? "null" : candidate.Mobile.Name, LabelColor), false, false);
|
||||
|
||||
this.AddHtml(45, 55, 100, 20, this.Color("Vote Count:", LabelColor), false, false);
|
||||
this.AddHtml(145, 55, 100, 20, this.Color(candidate.Votes.ToString(), LabelColor), false, false);
|
||||
|
||||
this.AddButton(12, 73, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
this.AddHtml(45, 75, 100, 20, this.Color("Drop Candidate", LabelColor), false, false);
|
||||
|
||||
this.AddImageTiled(13, 99, 422, 242, 9264);
|
||||
this.AddImageTiled(14, 100, 420, 240, 9274);
|
||||
this.AddAlphaRegion(14, 100, 420, 240);
|
||||
|
||||
this.AddHtml(14, 100, 420, 20, this.Color(this.Center("Voters"), LabelColor), false, false);
|
||||
|
||||
if (page > 0)
|
||||
this.AddButton(397, 104, 0x15E3, 0x15E7, 2, GumpButtonType.Reply, 0);
|
||||
else
|
||||
this.AddImage(397, 104, 0x25EA);
|
||||
|
||||
if ((page + 1) * 10 < candidate.Voters.Count)
|
||||
this.AddButton(414, 104, 0x15E1, 0x15E5, 3, GumpButtonType.Reply, 0);
|
||||
else
|
||||
this.AddImage(414, 104, 0x25E6);
|
||||
|
||||
this.AddHtml(14, 120, 30, 20, this.Color(this.Center("DEL"), LabelColor), false, false);
|
||||
this.AddHtml(47, 120, 150, 20, this.Color("Name", LabelColor), false, false);
|
||||
this.AddHtml(195, 120, 100, 20, this.Color(this.Center("Address"), LabelColor), false, false);
|
||||
this.AddHtml(295, 120, 80, 20, this.Color(this.Center("Time"), LabelColor), false, false);
|
||||
this.AddHtml(355, 120, 60, 20, this.Color(this.Center("Legit"), LabelColor), false, false);
|
||||
|
||||
int idx = 0;
|
||||
|
||||
for (int i = page * 10; i >= 0 && i < candidate.Voters.Count && i < (page + 1) * 10; ++i, ++idx)
|
||||
{
|
||||
Voter voter = (Voter)candidate.Voters[i];
|
||||
|
||||
this.AddButton(13, 138 + (idx * 20), 4002, 4004, 4 + i, GumpButtonType.Reply, 0);
|
||||
|
||||
object[] fields = voter.AcquireFields();
|
||||
|
||||
int x = 45;
|
||||
|
||||
for (int j = 0; j < fields.Length; ++j)
|
||||
{
|
||||
object obj = fields[j];
|
||||
|
||||
if (obj is Mobile)
|
||||
{
|
||||
this.AddHtml(x + 2, 140 + (idx * 20), 150, 20, this.Color(((Mobile)obj).Name, LabelColor), false, false);
|
||||
x += 150;
|
||||
}
|
||||
else if (obj is System.Net.IPAddress)
|
||||
{
|
||||
this.AddHtml(x, 140 + (idx * 20), 100, 20, this.Color(this.Center(obj.ToString()), LabelColor), false, false);
|
||||
x += 100;
|
||||
}
|
||||
else if (obj is DateTime)
|
||||
{
|
||||
this.AddHtml(x, 140 + (idx * 20), 80, 20, this.Color(this.Center(FormatTimeSpan(((DateTime)obj) - election.LastStateTime)), LabelColor), false, false);
|
||||
x += 80;
|
||||
}
|
||||
else if (obj is int)
|
||||
{
|
||||
this.AddHtml(x, 140 + (idx * 20), 60, 20, this.Color(this.Center((int)obj + "%"), LabelColor), false, false);
|
||||
x += 60;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.AddBackground(0, 0, 288, 334, 9270);
|
||||
this.AddAlphaRegion(10, 10, 268, 314);
|
||||
|
||||
this.AddHtml(10, 10, 268, 20, this.Color(this.Center("Election Management"), LabelColor), false, false);
|
||||
|
||||
this.AddHtml(45, 35, 100, 20, this.Color("Current State:", LabelColor), false, false);
|
||||
this.AddHtml(145, 35, 100, 20, this.Color(election.State.ToString(), LabelColor), false, false);
|
||||
|
||||
this.AddButton(12, 53, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
this.AddHtml(45, 55, 100, 20, this.Color("Transition Time:", LabelColor), false, false);
|
||||
this.AddHtml(145, 55, 100, 20, this.Color(FormatTimeSpan(election.NextStateTime), LabelColor), false, false);
|
||||
|
||||
this.AddImageTiled(13, 79, 262, 242, 9264);
|
||||
this.AddImageTiled(14, 80, 260, 240, 9274);
|
||||
this.AddAlphaRegion(14, 80, 260, 240);
|
||||
|
||||
this.AddHtml(14, 80, 260, 20, this.Color(this.Center("Candidates"), LabelColor), false, false);
|
||||
this.AddHtml(14, 100, 30, 20, this.Color(this.Center("-->"), LabelColor), false, false);
|
||||
this.AddHtml(47, 100, 150, 20, this.Color("Name", LabelColor), false, false);
|
||||
this.AddHtml(195, 100, 80, 20, this.Color(this.Center("Votes"), LabelColor), false, false);
|
||||
|
||||
for (int i = 0; i < election.Candidates.Count; ++i)
|
||||
{
|
||||
Candidate cd = election.Candidates[i];
|
||||
Mobile mob = cd.Mobile;
|
||||
|
||||
if (mob == null)
|
||||
continue;
|
||||
|
||||
this.AddButton(13, 118 + (i * 20), 4005, 4007, 2 + i, GumpButtonType.Reply, 0);
|
||||
this.AddHtml(47, 120 + (i * 20), 150, 20, this.Color(mob.Name, LabelColor), false, false);
|
||||
this.AddHtml(195, 120 + (i * 20), 80, 20, this.Color(this.Center(cd.Votes.ToString()), LabelColor), false, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static string FormatTimeSpan(TimeSpan ts)
|
||||
{
|
||||
return String.Format("{0:D2}:{1:D2}:{2:D2}:{3:D2}", ts.Days, ts.Hours % 24, ts.Minutes % 60, ts.Seconds % 60);
|
||||
}
|
||||
|
||||
public string Right(string text)
|
||||
{
|
||||
return String.Format("<DIV ALIGN=RIGHT>{0}</DIV>", text);
|
||||
}
|
||||
|
||||
public string Center(string text)
|
||||
{
|
||||
return String.Format("<CENTER>{0}</CENTER>", text);
|
||||
}
|
||||
|
||||
public string Color(string text, int color)
|
||||
{
|
||||
return String.Format("<BASEFONT COLOR=#{0:X6}>{1}</BASEFONT>", color, text);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
Mobile from = sender.Mobile;
|
||||
int bid = info.ButtonID;
|
||||
|
||||
if (this.m_Candidate == null)
|
||||
{
|
||||
if (bid == 0)
|
||||
{
|
||||
}
|
||||
else if (bid == 1)
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
bid -= 2;
|
||||
|
||||
if (bid >= 0 && bid < this.m_Election.Candidates.Count)
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election, this.m_Election.Candidates[bid], 0));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (bid == 0)
|
||||
{
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election));
|
||||
}
|
||||
else if (bid == 1)
|
||||
{
|
||||
this.m_Election.RemoveCandidate(this.m_Candidate.Mobile);
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election));
|
||||
}
|
||||
else if (bid == 2 && this.m_Page > 0)
|
||||
{
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election, this.m_Candidate, this.m_Page - 1));
|
||||
}
|
||||
else if (bid == 3 && (this.m_Page + 1) * 10 < this.m_Candidate.Voters.Count)
|
||||
{
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election, this.m_Candidate, this.m_Page + 1));
|
||||
}
|
||||
else
|
||||
{
|
||||
bid -= 4;
|
||||
|
||||
if (bid >= 0 && bid < this.m_Candidate.Voters.Count)
|
||||
{
|
||||
this.m_Candidate.Voters.RemoveAt(bid);
|
||||
from.SendGump(new ElectionManagementGump(this.m_Election, this.m_Candidate, this.m_Page));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
55
Scripts/Services/Factions/Gumps/FactionGump.cs
Normal file
55
Scripts/Services/Factions/Gumps/FactionGump.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public abstract class FactionGump : Gump
|
||||
{
|
||||
public FactionGump(int x, int y)
|
||||
: base(x, y)
|
||||
{
|
||||
}
|
||||
|
||||
public virtual int ButtonTypes
|
||||
{
|
||||
get
|
||||
{
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
public static bool Exists(Mobile mob)
|
||||
{
|
||||
return (mob.FindGump(typeof(FactionGump)) != null);
|
||||
}
|
||||
|
||||
public int ToButtonID(int type, int index)
|
||||
{
|
||||
return 1 + (index * this.ButtonTypes) + type;
|
||||
}
|
||||
|
||||
public bool FromButtonID(int buttonID, out int type, out int index)
|
||||
{
|
||||
int offset = buttonID - 1;
|
||||
|
||||
if (offset >= 0)
|
||||
{
|
||||
type = offset % this.ButtonTypes;
|
||||
index = offset / this.ButtonTypes;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
type = index = 0;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public void AddHtmlText(int x, int y, int width, int height, TextDefinition text, bool back, bool scroll)
|
||||
{
|
||||
if (text != null && text.Number > 0)
|
||||
this.AddHtmlLocalized(x, y, width, height, text.Number, back, scroll);
|
||||
else if (text != null && text.String != null)
|
||||
this.AddHtml(x, y, width, height, text.String, back, scroll);
|
||||
}
|
||||
}
|
||||
}
|
||||
98
Scripts/Services/Factions/Gumps/FactionImbueGump.cs
Normal file
98
Scripts/Services/Factions/Gumps/FactionImbueGump.cs
Normal file
@@ -0,0 +1,98 @@
|
||||
using System;
|
||||
using Server.Engines.Craft;
|
||||
using Server.Gumps;
|
||||
using Server.Items;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class FactionImbueGump : FactionGump
|
||||
{
|
||||
private readonly Item m_Item;
|
||||
private readonly Mobile m_Mobile;
|
||||
private readonly Faction m_Faction;
|
||||
private readonly CraftSystem m_CraftSystem;
|
||||
private readonly ITool m_Tool;
|
||||
private readonly object m_Notice;
|
||||
private readonly int m_Quality;
|
||||
private readonly FactionItemDefinition m_Definition;
|
||||
public FactionImbueGump(int quality, Item item, Mobile from, CraftSystem craftSystem, ITool tool, object notice, int availableSilver, Faction faction, FactionItemDefinition def)
|
||||
: base(100, 200)
|
||||
{
|
||||
this.m_Item = item;
|
||||
this.m_Mobile = from;
|
||||
this.m_Faction = faction;
|
||||
this.m_CraftSystem = craftSystem;
|
||||
this.m_Tool = tool;
|
||||
this.m_Notice = notice;
|
||||
this.m_Quality = quality;
|
||||
this.m_Definition = def;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 320, 270, 5054);
|
||||
this.AddBackground(10, 10, 300, 250, 3000);
|
||||
|
||||
this.AddHtmlLocalized(20, 20, 210, 25, 1011569, false, false); // Imbue with Faction properties?
|
||||
|
||||
this.AddHtmlLocalized(20, 60, 170, 25, 1018302, false, false); // Item quality:
|
||||
this.AddHtmlLocalized(175, 60, 100, 25, 1018305 - this.m_Quality, false, false); // Exceptional, Average, Low
|
||||
|
||||
this.AddHtmlLocalized(20, 80, 170, 25, 1011572, false, false); // Item Cost :
|
||||
this.AddLabel(175, 80, 0x34, def.SilverCost.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 100, 170, 25, 1011573, false, false); // Your Silver :
|
||||
this.AddLabel(175, 100, 0x34, availableSilver.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddRadio(20, 140, 210, 211, true, 1);
|
||||
this.AddLabel(55, 140, this.m_Faction.Definition.HuePrimary - 1, "*****");
|
||||
this.AddHtmlLocalized(150, 140, 150, 25, 1011570, false, false); // Primary Color
|
||||
|
||||
this.AddRadio(20, 160, 210, 211, false, 2);
|
||||
this.AddLabel(55, 160, this.m_Faction.Definition.HueSecondary - 1, "*****");
|
||||
this.AddHtmlLocalized(150, 160, 150, 25, 1011571, false, false); // Secondary Color
|
||||
|
||||
this.AddHtmlLocalized(55, 200, 200, 25, 1011011, false, false); // CONTINUE
|
||||
this.AddButton(20, 200, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 230, 200, 25, 1011012, false, false); // CANCEL
|
||||
this.AddButton(20, 230, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (info.ButtonID == 1)
|
||||
{
|
||||
Container pack = this.m_Mobile.Backpack;
|
||||
|
||||
if (pack != null && this.m_Item.IsChildOf(pack))
|
||||
{
|
||||
if (pack.ConsumeTotal(typeof(Silver), this.m_Definition.SilverCost))
|
||||
{
|
||||
int hue;
|
||||
|
||||
if (this.m_Item is SpellScroll)
|
||||
hue = 0;
|
||||
else if (info.IsSwitched(1))
|
||||
hue = this.m_Faction.Definition.HuePrimary;
|
||||
else
|
||||
hue = this.m_Faction.Definition.HueSecondary;
|
||||
|
||||
FactionItem.Imbue(this.m_Item, this.m_Faction, true, hue);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_Mobile.SendLocalizedMessage(1042204); // You do not have enough silver.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this.m_Tool != null && !this.m_Tool.Deleted && this.m_Tool.UsesRemaining > 0)
|
||||
this.m_Mobile.SendGump(new CraftGump(this.m_Mobile, this.m_CraftSystem, this.m_Tool, this.m_Notice));
|
||||
else if (this.m_Notice is string)
|
||||
this.m_Mobile.SendMessage((string)this.m_Notice);
|
||||
else if (this.m_Notice is int && ((int)this.m_Notice) > 0)
|
||||
this.m_Mobile.SendLocalizedMessage((int)this.m_Notice);
|
||||
}
|
||||
}
|
||||
}
|
||||
359
Scripts/Services/Factions/Gumps/FactionStoneGump.cs
Normal file
359
Scripts/Services/Factions/Gumps/FactionStoneGump.cs
Normal file
@@ -0,0 +1,359 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class FactionStoneGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
|
||||
public override int ButtonTypes
|
||||
{
|
||||
get
|
||||
{
|
||||
return 4;
|
||||
}
|
||||
}
|
||||
|
||||
public FactionStoneGump(PlayerMobile from, Faction faction)
|
||||
: base(20, 30)
|
||||
{
|
||||
m_From = from;
|
||||
m_Faction = faction;
|
||||
|
||||
AddPage(0);
|
||||
|
||||
AddBackground(0, 0, 550, 440, 5054);
|
||||
AddBackground(10, 10, 530, 420, 3000);
|
||||
|
||||
#region General
|
||||
AddPage(1);
|
||||
|
||||
AddHtmlText(20, 30, 510, 20, faction.Definition.Header, false, false);
|
||||
|
||||
AddHtmlLocalized(20, 60, 100, 20, 1011429, false, false); // Led By :
|
||||
AddHtml(125, 60, 200, 20, faction.Commander != null ? faction.Commander.Name : "Nobody", false, false);
|
||||
|
||||
AddHtmlLocalized(20, 80, 100, 20, 1011457, false, false); // Tithe rate :
|
||||
if (faction.Tithe >= 0 && faction.Tithe <= 100 && (faction.Tithe % 10) == 0)
|
||||
AddHtmlLocalized(125, 80, 350, 20, 1011480 + (faction.Tithe / 10), false, false);
|
||||
else
|
||||
AddHtml(125, 80, 350, 20, faction.Tithe + "%", false, false);
|
||||
|
||||
AddHtmlLocalized(20, 100, 100, 20, 1011458, false, false); // Traps placed :
|
||||
AddHtml(125, 100, 50, 20, faction.Traps.Count.ToString(), false, false);
|
||||
|
||||
AddHtmlLocalized(55, 225, 200, 20, 1011428, false, false); // VOTE FOR LEADERSHIP
|
||||
|
||||
if (m_Faction.Election != null)
|
||||
{
|
||||
AddButton(20, 225, 4005, 4007, ToButtonID(0, 0), GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
AddHtmlLocalized(55, 150, 100, 20, 1011430, false, false); // CITY STATUS
|
||||
AddButton(20, 150, 4005, 4007, 0, GumpButtonType.Page, 2);
|
||||
|
||||
AddHtmlLocalized(55, 175, 100, 20, 1011444, false, false); // STATISTICS
|
||||
AddButton(20, 175, 4005, 4007, 0, GumpButtonType.Page, 4);
|
||||
|
||||
bool isMerchantQualified = MerchantTitles.HasMerchantQualifications(from);
|
||||
|
||||
PlayerState pl = PlayerState.Find(from);
|
||||
|
||||
if (pl != null && pl.MerchantTitle != MerchantTitle.None)
|
||||
{
|
||||
AddHtmlLocalized(55, 200, 250, 20, 1011460, false, false); // UNDECLARE FACTION MERCHANT
|
||||
AddButton(20, 200, 4005, 4007, ToButtonID(1, 0), GumpButtonType.Reply, 0);
|
||||
}
|
||||
else if (isMerchantQualified)
|
||||
{
|
||||
AddHtmlLocalized(55, 200, 250, 20, 1011459, false, false); // DECLARE FACTION MERCHANT
|
||||
AddButton(20, 200, 4005, 4007, 0, GumpButtonType.Page, 5);
|
||||
}
|
||||
else
|
||||
{
|
||||
AddHtmlLocalized(55, 200, 250, 20, 1011467, false, false); // MERCHANT OPTIONS
|
||||
AddImage(20, 200, 4020);
|
||||
}
|
||||
|
||||
AddHtmlLocalized(55, 250, 300, 20, 1011461, false, false); // COMMANDER OPTIONS
|
||||
if (faction.IsCommander(from))
|
||||
AddButton(20, 250, 4005, 4007, 0, GumpButtonType.Page, 6);
|
||||
else
|
||||
AddImage(20, 250, 4020);
|
||||
|
||||
AddHtmlLocalized(55, 275, 300, 20, 1011426, false, false); // LEAVE THIS FACTION
|
||||
AddButton(20, 275, 4005, 4007, ToButtonID(0, 1), GumpButtonType.Reply, 0);
|
||||
|
||||
AddHtmlLocalized(55, 300, 200, 20, 1011441, false, false); // EXIT
|
||||
AddButton(20, 300, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
#endregion
|
||||
|
||||
#region City Status
|
||||
AddPage(2);
|
||||
|
||||
AddHtmlLocalized(20, 30, 250, 20, 1011430, false, false); // CITY STATUS
|
||||
|
||||
List<Town> towns = Town.Towns;
|
||||
|
||||
for (int i = 0; i < towns.Count; ++i)
|
||||
{
|
||||
Town town = towns[i];
|
||||
|
||||
AddHtmlText(40, 55 + (i * 30), 150, 20, town.Definition.TownName, false, false);
|
||||
|
||||
if (town.Owner == null)
|
||||
{
|
||||
AddHtmlLocalized(200, 55 + (i * 30), 150, 20, 1011462, false, false); // : Neutral
|
||||
}
|
||||
else
|
||||
{
|
||||
AddHtmlLocalized(200, 55 + (i * 30), 150, 20, town.Owner.Definition.OwnerLabel, false, false);
|
||||
|
||||
BaseMonolith monolith = town.Monolith;
|
||||
|
||||
AddImage(20, 60 + (i * 30), (monolith != null && monolith.Sigil != null && monolith.Sigil.IsPurifying) ? 0x938 : 0x939);
|
||||
}
|
||||
}
|
||||
|
||||
AddImage(20, 300, 2361);
|
||||
AddHtmlLocalized(45, 295, 300, 20, 1011491, false, false); // sigil may be recaptured
|
||||
|
||||
AddImage(20, 320, 2360);
|
||||
AddHtmlLocalized(45, 315, 300, 20, 1011492, false, false); // sigil may not be recaptured
|
||||
|
||||
AddHtmlLocalized(55, 350, 100, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 350, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Statistics
|
||||
AddPage(4);
|
||||
|
||||
AddHtmlLocalized(20, 30, 150, 20, 1011444, false, false); // STATISTICS
|
||||
|
||||
AddHtmlLocalized(20, 100, 100, 20, 1011445, false, false); // Name :
|
||||
AddHtml(120, 100, 150, 20, from.Name, false, false);
|
||||
|
||||
AddHtmlLocalized(20, 130, 100, 20, 1018064, false, false); // score :
|
||||
AddHtml(120, 130, 100, 20, (pl != null ? pl.KillPoints : 0).ToString(), false, false);
|
||||
|
||||
AddHtmlLocalized(20, 160, 100, 20, 1011446, false, false); // Rank :
|
||||
AddHtml(120, 160, 100, 20, (pl != null ? pl.Rank.Rank : 0).ToString(), false, false);
|
||||
|
||||
AddHtmlLocalized(55, 250, 100, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 250, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Merchant Options
|
||||
if ((pl == null || pl.MerchantTitle == MerchantTitle.None) && isMerchantQualified)
|
||||
{
|
||||
AddPage(5);
|
||||
|
||||
AddHtmlLocalized(20, 30, 250, 20, 1011467, false, false); // MERCHANT OPTIONS
|
||||
|
||||
AddHtmlLocalized(20, 80, 300, 20, 1011473, false, false); // Select the title you wish to display
|
||||
|
||||
MerchantTitleInfo[] infos = MerchantTitles.Info;
|
||||
|
||||
for (int i = 0; i < infos.Length; ++i)
|
||||
{
|
||||
MerchantTitleInfo info = infos[i];
|
||||
|
||||
if (MerchantTitles.IsQualified(from, info))
|
||||
AddButton(20, 100 + (i * 30), 4005, 4007, ToButtonID(1, i + 1), GumpButtonType.Reply, 0);
|
||||
else
|
||||
AddImage(20, 100 + (i * 30), 4020);
|
||||
|
||||
AddHtmlText(55, 100 + (i * 30), 200, 20, info.Label, false, false);
|
||||
}
|
||||
|
||||
AddHtmlLocalized(55, 340, 100, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 340, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Commander Options
|
||||
if (faction.IsCommander(from))
|
||||
{
|
||||
#region General
|
||||
AddPage(6);
|
||||
|
||||
AddHtmlLocalized(20, 30, 200, 20, 1011461, false, false); // COMMANDER OPTIONS
|
||||
|
||||
AddHtmlLocalized(20, 70, 120, 20, 1011457, false, false); // Tithe rate :
|
||||
if (faction.Tithe >= 0 && faction.Tithe <= 100 && (faction.Tithe % 10) == 0)
|
||||
AddHtmlLocalized(140, 70, 250, 20, 1011480 + (faction.Tithe / 10), false, false);
|
||||
else
|
||||
AddHtml(140, 70, 250, 20, faction.Tithe + "%", false, false);
|
||||
|
||||
AddHtmlLocalized(20, 100, 120, 20, 1011474, false, false); // Silver available :
|
||||
AddHtml(140, 100, 50, 20, faction.Silver.ToString("N0"), false, false); // NOTE: Added 'N0' formatting
|
||||
|
||||
AddHtmlLocalized(55, 130, 200, 20, 1011478, false, false); // CHANGE TITHE RATE
|
||||
AddButton(20, 130, 4005, 4007, 0, GumpButtonType.Page, 8);
|
||||
|
||||
AddHtmlLocalized(55, 160, 200, 20, 1018301, false, false); // TRANSFER SILVER
|
||||
if (faction.Silver >= 10000)
|
||||
AddButton(20, 160, 4005, 4007, 0, GumpButtonType.Page, 7);
|
||||
else
|
||||
AddImage(20, 160, 4020);
|
||||
|
||||
AddHtmlLocalized(55, 310, 100, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 310, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Town Finance
|
||||
if (faction.Silver >= 10000)
|
||||
{
|
||||
AddPage(7);
|
||||
|
||||
AddHtmlLocalized(20, 30, 250, 20, 1011476, false, false); // TOWN FINANCE
|
||||
|
||||
AddHtmlLocalized(20, 50, 400, 20, 1011477, false, false); // Select a town to transfer 10000 silver to
|
||||
|
||||
for (int i = 0; i < towns.Count; ++i)
|
||||
{
|
||||
Town town = towns[i];
|
||||
|
||||
AddHtmlText(55, 75 + (i * 30), 200, 20, town.Definition.TownName, false, false);
|
||||
|
||||
if (town.Owner == faction)
|
||||
AddButton(20, 75 + (i * 30), 4005, 4007, ToButtonID(2, i), GumpButtonType.Reply, 0);
|
||||
else
|
||||
AddImage(20, 75 + (i * 30), 4020);
|
||||
}
|
||||
|
||||
AddHtmlLocalized(55, 310, 100, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 310, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Change Tithe Rate
|
||||
AddPage(8);
|
||||
|
||||
AddHtmlLocalized(20, 30, 400, 20, 1011479, false, false); // Select the % for the new tithe rate
|
||||
|
||||
int y = 55;
|
||||
|
||||
for (int i = 0; i <= 10; ++i)
|
||||
{
|
||||
if (i == 5)
|
||||
y += 5;
|
||||
|
||||
AddHtmlLocalized(55, y, 300, 20, 1011480 + i, false, false);
|
||||
AddButton(20, y, 4005, 4007, ToButtonID(3, i), GumpButtonType.Reply, 0);
|
||||
|
||||
y += 20;
|
||||
|
||||
if (i == 5)
|
||||
y += 5;
|
||||
}
|
||||
|
||||
AddHtmlLocalized(55, 310, 300, 20, 1011447, false, false); // BACK
|
||||
AddButton(20, 310, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
int type, index;
|
||||
|
||||
if (!FromButtonID(info.ButtonID, out type, out index))
|
||||
return;
|
||||
|
||||
switch ( type )
|
||||
{
|
||||
case 0: // general
|
||||
{
|
||||
switch ( index )
|
||||
{
|
||||
case 0: // vote
|
||||
{
|
||||
if (m_Faction.Election != null)
|
||||
{
|
||||
m_From.SendGump(new ElectionGump(m_From, m_Faction.Election));
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 1: // leave
|
||||
{
|
||||
m_From.SendGump(new LeaveFactionGump(m_From, m_Faction));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 1: // merchant title
|
||||
{
|
||||
if (index >= 0 && index <= MerchantTitles.Info.Length)
|
||||
{
|
||||
PlayerState pl = PlayerState.Find(m_From);
|
||||
|
||||
MerchantTitle newTitle = (MerchantTitle)index;
|
||||
MerchantTitleInfo mti = MerchantTitles.GetInfo(newTitle);
|
||||
|
||||
if (mti == null)
|
||||
{
|
||||
m_From.SendLocalizedMessage(1010120); // Your merchant title has been removed
|
||||
|
||||
if (pl != null)
|
||||
pl.MerchantTitle = newTitle;
|
||||
}
|
||||
else if (MerchantTitles.IsQualified(m_From, mti))
|
||||
{
|
||||
m_From.SendLocalizedMessage(mti.Assigned);
|
||||
|
||||
if (pl != null)
|
||||
pl.MerchantTitle = newTitle;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 2: // transfer silver
|
||||
{
|
||||
if (!m_Faction.IsCommander(m_From))
|
||||
return;
|
||||
|
||||
List<Town> towns = Town.Towns;
|
||||
|
||||
if (index >= 0 && index < towns.Count)
|
||||
{
|
||||
Town town = towns[index];
|
||||
|
||||
if (town.Owner == m_Faction)
|
||||
{
|
||||
if (m_Faction.Silver >= 10000)
|
||||
{
|
||||
m_Faction.Silver -= 10000;
|
||||
town.Silver += 10000;
|
||||
|
||||
// 10k in silver has been received by:
|
||||
m_From.SendLocalizedMessage(1042726, true, " " + town.Definition.FriendlyName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 3: // change tithe
|
||||
{
|
||||
if (!m_Faction.IsCommander(m_From))
|
||||
return;
|
||||
|
||||
if (index >= 0 && index <= 10)
|
||||
m_Faction.Tithe = index * 10;
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
284
Scripts/Services/Factions/Gumps/FinanceGump.cs
Normal file
284
Scripts/Services/Factions/Gumps/FinanceGump.cs
Normal file
@@ -0,0 +1,284 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Multis;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class FinanceGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
private readonly Town m_Town;
|
||||
|
||||
private static readonly int[] m_PriceOffsets = new int[]
|
||||
{
|
||||
-30, -25, -20, -15, -10, -5,
|
||||
+50, +100, +150, +200, +250, +300
|
||||
};
|
||||
|
||||
public override int ButtonTypes
|
||||
{
|
||||
get
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
||||
public FinanceGump(PlayerMobile from, Faction faction, Town town)
|
||||
: base(50, 50)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
this.m_Town = town;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 320, 410, 5054);
|
||||
this.AddBackground(10, 10, 300, 390, 3000);
|
||||
|
||||
#region General
|
||||
this.AddPage(1);
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 260, 25, 1011541, false, false); // FINANCE MINISTER
|
||||
|
||||
this.AddHtmlLocalized(55, 90, 200, 25, 1011539, false, false); // CHANGE PRICES
|
||||
this.AddButton(20, 90, 4005, 4007, 0, GumpButtonType.Page, 2);
|
||||
|
||||
this.AddHtmlLocalized(55, 120, 200, 25, 1011540, false, false); // BUY SHOPKEEPERS
|
||||
this.AddButton(20, 120, 4005, 4007, 0, GumpButtonType.Page, 3);
|
||||
|
||||
this.AddHtmlLocalized(55, 150, 200, 25, 1011495, false, false); // VIEW FINANCES
|
||||
this.AddButton(20, 150, 4005, 4007, 0, GumpButtonType.Page, 4);
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011441, false, false); // EXIT
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
#endregion
|
||||
|
||||
#region Change Prices
|
||||
this.AddPage(2);
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 200, 25, 1011539, false, false); // CHANGE PRICES
|
||||
|
||||
for (int i = 0; i < m_PriceOffsets.Length; ++i)
|
||||
{
|
||||
int ofs = m_PriceOffsets[i];
|
||||
|
||||
int x = 20 + ((i / 6) * 150);
|
||||
int y = 90 + ((i % 6) * 30);
|
||||
|
||||
this.AddRadio(x, y, 208, 209, (town.Tax == ofs), i + 1);
|
||||
|
||||
if (ofs < 0)
|
||||
this.AddLabel(x + 35, y, 0x26, String.Concat("- ", -ofs, "%"));
|
||||
else
|
||||
this.AddLabel(x + 35, y, 0x12A, String.Concat("+ ", ofs, "%"));
|
||||
}
|
||||
|
||||
this.AddRadio(20, 270, 208, 209, (town.Tax == 0), 0);
|
||||
this.AddHtmlLocalized(55, 270, 90, 25, 1011542, false, false); // normal
|
||||
|
||||
this.AddHtmlLocalized(55, 330, 200, 25, 1011509, false, false); // Set Prices
|
||||
this.AddButton(20, 330, 4005, 4007, this.ToButtonID(0, 0), GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Buy Shopkeepers
|
||||
this.AddPage(3);
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 200, 25, 1011540, false, false); // BUY SHOPKEEPERS
|
||||
|
||||
List<VendorList> vendorLists = town.VendorLists;
|
||||
|
||||
for (int i = 0; i < vendorLists.Count; ++i)
|
||||
{
|
||||
VendorList list = vendorLists[i];
|
||||
|
||||
this.AddButton(20, 90 + (i * 40), 4005, 4007, 0, GumpButtonType.Page, 5 + i);
|
||||
this.AddItem(55, 90 + (i * 40), list.Definition.ItemID);
|
||||
this.AddHtmlText(100, 90 + (i * 40), 200, 25, list.Definition.Label, false, false);
|
||||
}
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region View Finances
|
||||
this.AddPage(4);
|
||||
|
||||
int financeUpkeep = town.FinanceUpkeep;
|
||||
int sheriffUpkeep = town.SheriffUpkeep;
|
||||
int dailyIncome = town.DailyIncome;
|
||||
int netCashFlow = town.NetCashFlow;
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 300, 25, 1011524, false, false); // FINANCE STATEMENT
|
||||
|
||||
this.AddHtmlLocalized(20, 80, 300, 25, 1011538, false, false); // Current total money for town :
|
||||
this.AddLabel(20, 100, 0x44, town.Silver.ToString());
|
||||
|
||||
this.AddHtmlLocalized(20, 130, 300, 25, 1011520, false, false); // Finance Minister Upkeep :
|
||||
this.AddLabel(20, 150, 0x44, financeUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 180, 300, 25, 1011521, false, false); // Sheriff Upkeep :
|
||||
this.AddLabel(20, 200, 0x44, sheriffUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 230, 300, 25, 1011522, false, false); // Town Income :
|
||||
this.AddLabel(20, 250, 0x44, dailyIncome.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 280, 300, 25, 1011523, false, false); // Net Cash flow per day :
|
||||
this.AddLabel(20, 300, 0x44, netCashFlow.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Shopkeeper Pages
|
||||
for (int i = 0; i < vendorLists.Count; ++i)
|
||||
{
|
||||
VendorList vendorList = vendorLists[i];
|
||||
|
||||
this.AddPage(5 + i);
|
||||
|
||||
this.AddHtmlText(60, 30, 300, 25, vendorList.Definition.Header, false, false);
|
||||
this.AddItem(20, 30, vendorList.Definition.ItemID);
|
||||
|
||||
this.AddHtmlLocalized(20, 90, 200, 25, 1011514, false, false); // You have :
|
||||
this.AddLabel(230, 90, 0x26, vendorList.Vendors.Count.ToString());
|
||||
|
||||
this.AddHtmlLocalized(20, 120, 200, 25, 1011515, false, false); // Maximum :
|
||||
this.AddLabel(230, 120, 0x256, vendorList.Definition.Maximum.ToString());
|
||||
|
||||
this.AddHtmlLocalized(20, 150, 200, 25, 1011516, false, false); // Cost :
|
||||
this.AddLabel(230, 150, 0x44, vendorList.Definition.Price.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 180, 200, 25, 1011517, false, false); // Daily Pay :
|
||||
this.AddLabel(230, 180, 0x37, vendorList.Definition.Upkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 210, 200, 25, 1011518, false, false); // Current Silver :
|
||||
this.AddLabel(230, 210, 0x44, town.Silver.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 240, 200, 25, 1011519, false, false); // Current Payroll :
|
||||
this.AddLabel(230, 240, 0x44, financeUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlText(55, 300, 200, 25, vendorList.Definition.Label, false, false);
|
||||
if (town.Silver >= vendorList.Definition.Price)
|
||||
this.AddButton(20, 300, 4005, 4007, this.ToButtonID(1, i), GumpButtonType.Reply, 0);
|
||||
else
|
||||
this.AddImage(20, 300, 4020);
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 3);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (!this.m_Town.IsFinance(this.m_From) || this.m_Town.Owner != this.m_Faction)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010339); // You no longer control this city
|
||||
return;
|
||||
}
|
||||
|
||||
int type, index;
|
||||
|
||||
if (!this.FromButtonID(info.ButtonID, out type, out index))
|
||||
return;
|
||||
|
||||
switch ( type )
|
||||
{
|
||||
case 0: // general
|
||||
{
|
||||
switch ( index )
|
||||
{
|
||||
case 0: // set price
|
||||
{
|
||||
int[] switches = info.Switches;
|
||||
|
||||
if (switches.Length == 0)
|
||||
break;
|
||||
|
||||
int opt = switches[0];
|
||||
int newTax = 0;
|
||||
|
||||
if (opt >= 1 && opt <= m_PriceOffsets.Length)
|
||||
newTax = m_PriceOffsets[opt - 1];
|
||||
|
||||
if (this.m_Town.Tax == newTax)
|
||||
break;
|
||||
|
||||
if (this.m_From.IsPlayer() && !this.m_Town.TaxChangeReady)
|
||||
{
|
||||
TimeSpan remaining = DateTime.UtcNow - (this.m_Town.LastTaxChange + Town.TaxChangePeriod);
|
||||
|
||||
if (remaining.TotalMinutes < 4)
|
||||
this.m_From.SendLocalizedMessage(1042165); // You must wait a short while before changing prices again.
|
||||
else if (remaining.TotalMinutes < 10)
|
||||
this.m_From.SendLocalizedMessage(1042166); // You must wait several minutes before changing prices again.
|
||||
else if (remaining.TotalHours < 1)
|
||||
this.m_From.SendLocalizedMessage(1042167); // You must wait up to an hour before changing prices again.
|
||||
else if (remaining.TotalHours < 4)
|
||||
this.m_From.SendLocalizedMessage(1042168); // You must wait a few hours before changing prices again.
|
||||
else
|
||||
this.m_From.SendLocalizedMessage(1042169); // You must wait several hours before changing prices again.
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_Town.Tax = newTax;
|
||||
|
||||
if (this.m_From.IsPlayer())
|
||||
this.m_Town.LastTaxChange = DateTime.UtcNow;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 1: // make vendor
|
||||
{
|
||||
List<VendorList> vendorLists = this.m_Town.VendorLists;
|
||||
|
||||
if (index >= 0 && index < vendorLists.Count)
|
||||
{
|
||||
VendorList vendorList = vendorLists[index];
|
||||
|
||||
Town town = Town.FromRegion(this.m_From.Region);
|
||||
|
||||
if (Town.FromRegion(this.m_From.Region) != this.m_Town)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010305); // You must be in your controlled city to buy Items
|
||||
}
|
||||
else if (vendorList.Vendors.Count >= vendorList.Definition.Maximum)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010306); // You currently have too many of this enhancement type to place another
|
||||
}
|
||||
else if (BaseBoat.FindBoatAt(this.m_From.Location, this.m_From.Map) != null)
|
||||
{
|
||||
this.m_From.SendMessage("You cannot place a vendor here");
|
||||
}
|
||||
else if (this.m_Town.Silver >= vendorList.Definition.Price)
|
||||
{
|
||||
BaseFactionVendor vendor = vendorList.Construct(this.m_Town, this.m_Faction);
|
||||
|
||||
if (vendor != null)
|
||||
{
|
||||
this.m_Town.Silver -= vendorList.Definition.Price;
|
||||
|
||||
vendor.MoveToWorld(this.m_From.Location, this.m_From.Map);
|
||||
vendor.Home = vendor.Location;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
91
Scripts/Services/Factions/Gumps/HorseBreederGump.cs
Normal file
91
Scripts/Services/Factions/Gumps/HorseBreederGump.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class HorseBreederGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
public HorseBreederGump(PlayerMobile from, Faction faction)
|
||||
: base(20, 30)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 320, 280, 5054);
|
||||
this.AddBackground(10, 10, 300, 260, 3000);
|
||||
|
||||
this.AddHtmlText(20, 30, 300, 25, faction.Definition.Header, false, false);
|
||||
|
||||
this.AddHtmlLocalized(20, 60, 300, 25, 1018306, false, false); // Purchase a Faction War Horse
|
||||
this.AddItem(70, 120, 0x3FFE);
|
||||
|
||||
this.AddItem(150, 120, 0xEF2);
|
||||
this.AddLabel(190, 122, 0x3E3, FactionWarHorse.SilverPrice.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddItem(150, 150, 0xEEF);
|
||||
this.AddLabel(190, 152, 0x3E3, FactionWarHorse.GoldPrice.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(55, 210, 200, 25, 1011011, false, false); // CONTINUE
|
||||
this.AddButton(20, 210, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 240, 200, 25, 1011012, false, false); // CANCEL
|
||||
this.AddButton(20, 240, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (info.ButtonID != 1)
|
||||
return;
|
||||
|
||||
if (Faction.Find(this.m_From) != this.m_Faction)
|
||||
return;
|
||||
|
||||
Container pack = this.m_From.Backpack;
|
||||
|
||||
if (pack == null)
|
||||
return;
|
||||
|
||||
FactionWarHorse horse = new FactionWarHorse(this.m_Faction);
|
||||
|
||||
if ((this.m_From.Followers + horse.ControlSlots) > this.m_From.FollowersMax)
|
||||
{
|
||||
// TODO: Message?
|
||||
horse.Delete();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (pack.GetAmount(typeof(Silver)) < FactionWarHorse.SilverPrice)
|
||||
{
|
||||
sender.Mobile.SendLocalizedMessage(1042204); // You do not have enough silver.
|
||||
horse.Delete();
|
||||
}
|
||||
else if (pack.GetAmount(typeof(Gold)) < FactionWarHorse.GoldPrice)
|
||||
{
|
||||
sender.Mobile.SendLocalizedMessage(1042205); // You do not have enough gold.
|
||||
horse.Delete();
|
||||
}
|
||||
else if (pack.ConsumeTotal(typeof(Silver), FactionWarHorse.SilverPrice) && pack.ConsumeTotal(typeof(Gold), FactionWarHorse.GoldPrice))
|
||||
{
|
||||
horse.Controlled = true;
|
||||
horse.ControlMaster = this.m_From;
|
||||
|
||||
horse.ControlOrder = OrderType.Follow;
|
||||
horse.ControlTarget = this.m_From;
|
||||
|
||||
horse.MoveToWorld(this.m_From.Location, this.m_From.Map);
|
||||
}
|
||||
else
|
||||
{
|
||||
horse.Delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
48
Scripts/Services/Factions/Gumps/JoinStoneGump.cs
Normal file
48
Scripts/Services/Factions/Gumps/JoinStoneGump.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class JoinStoneGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
public JoinStoneGump(PlayerMobile from, Faction faction)
|
||||
: base(20, 30)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 550, 440, 5054);
|
||||
this.AddBackground(10, 10, 530, 420, 3000);
|
||||
|
||||
this.AddHtmlText(20, 30, 510, 20, faction.Definition.Header, false, false);
|
||||
this.AddHtmlText(20, 130, 510, 100, faction.Definition.About, true, true);
|
||||
|
||||
this.AddHtmlLocalized(20, 60, 100, 20, 1011429, false, false); // Led By :
|
||||
this.AddHtml(125, 60, 200, 20, faction.Commander != null ? faction.Commander.Name : "Nobody", false, false);
|
||||
|
||||
this.AddHtmlLocalized(20, 80, 100, 20, 1011457, false, false); // Tithe rate :
|
||||
if (faction.Tithe >= 0 && faction.Tithe <= 100 && (faction.Tithe % 10) == 0)
|
||||
this.AddHtmlLocalized(125, 80, 350, 20, 1011480 + (faction.Tithe / 10), false, false);
|
||||
else
|
||||
this.AddHtml(125, 80, 350, 20, faction.Tithe + "%", false, false);
|
||||
|
||||
this.AddButton(20, 400, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
this.AddHtmlLocalized(55, 400, 200, 20, 1011425, false, false); // JOIN THIS FACTION
|
||||
|
||||
this.AddButton(300, 400, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
this.AddHtmlLocalized(335, 400, 200, 20, 1011012, false, false); // CANCEL
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (info.ButtonID == 1)
|
||||
this.m_Faction.OnJoinAccepted(this.m_From);
|
||||
}
|
||||
}
|
||||
}
|
||||
91
Scripts/Services/Factions/Gumps/LeaveFactionGump.cs
Normal file
91
Scripts/Services/Factions/Gumps/LeaveFactionGump.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using Server.Guilds;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class LeaveFactionGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
public LeaveFactionGump(PlayerMobile from, Faction faction)
|
||||
: base(20, 30)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
|
||||
this.AddBackground(0, 0, 270, 120, 5054);
|
||||
this.AddBackground(10, 10, 250, 100, 3000);
|
||||
|
||||
if (from.Guild is Guild && ((Guild)from.Guild).Leader == from)
|
||||
this.AddHtmlLocalized(20, 15, 230, 60, 1018057, true, true); // Are you sure you want your entire guild to leave this faction?
|
||||
else
|
||||
this.AddHtmlLocalized(20, 15, 230, 60, 1018063, true, true); // Are you sure you want to leave this faction?
|
||||
|
||||
this.AddHtmlLocalized(55, 80, 75, 20, 1011011, false, false); // CONTINUE
|
||||
this.AddButton(20, 80, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(170, 80, 75, 20, 1011012, false, false); // CANCEL
|
||||
this.AddButton(135, 80, 4005, 4007, 2, GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
switch ( info.ButtonID )
|
||||
{
|
||||
case 1: // continue
|
||||
{
|
||||
Guild guild = this.m_From.Guild as Guild;
|
||||
|
||||
if (guild == null)
|
||||
{
|
||||
PlayerState pl = PlayerState.Find(this.m_From);
|
||||
|
||||
if (pl != null)
|
||||
{
|
||||
pl.Leaving = DateTime.UtcNow;
|
||||
|
||||
if (Faction.LeavePeriod == TimeSpan.FromDays(3.0))
|
||||
this.m_From.SendLocalizedMessage(1005065); // You will be removed from the faction in 3 days
|
||||
else
|
||||
this.m_From.SendMessage("You will be removed from the faction in {0} days.", Faction.LeavePeriod.TotalDays);
|
||||
}
|
||||
}
|
||||
else if (guild.Leader != this.m_From)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1005061); // You cannot quit the faction because you are not the guild master
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1042285); // Your guild is now quitting the faction.
|
||||
|
||||
for (int i = 0; i < guild.Members.Count; ++i)
|
||||
{
|
||||
Mobile mob = (Mobile)guild.Members[i];
|
||||
PlayerState pl = PlayerState.Find(mob);
|
||||
|
||||
if (pl != null)
|
||||
{
|
||||
pl.Leaving = DateTime.UtcNow;
|
||||
|
||||
if (Faction.LeavePeriod == TimeSpan.FromDays(3.0))
|
||||
mob.SendLocalizedMessage(1005060); // Your guild will quit the faction in 3 days
|
||||
else
|
||||
mob.SendMessage("Your guild will quit the faction in {0} days.", Faction.LeavePeriod.TotalDays);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 2: // cancel
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(500737); // Canceled resignation.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
181
Scripts/Services/Factions/Gumps/SheriffGump.cs
Normal file
181
Scripts/Services/Factions/Gumps/SheriffGump.cs
Normal file
@@ -0,0 +1,181 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Multis;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class SheriffGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
private readonly Town m_Town;
|
||||
|
||||
private void CenterItem(int itemID, int x, int y, int w, int h)
|
||||
{
|
||||
Rectangle2D rc = ItemBounds.Table[itemID];
|
||||
this.AddItem(x + ((w - rc.Width) / 2) - rc.X, y + ((h - rc.Height) / 2) - rc.Y, itemID);
|
||||
}
|
||||
|
||||
public SheriffGump(PlayerMobile from, Faction faction, Town town)
|
||||
: base(50, 50)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
this.m_Town = town;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 320, 410, 5054);
|
||||
this.AddBackground(10, 10, 300, 390, 3000);
|
||||
|
||||
#region General
|
||||
this.AddPage(1);
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 260, 25, 1011431, false, false); // Sheriff
|
||||
|
||||
this.AddHtmlLocalized(55, 90, 200, 25, 1011494, false, false); // HIRE GUARDS
|
||||
this.AddButton(20, 90, 4005, 4007, 0, GumpButtonType.Page, 3);
|
||||
|
||||
this.AddHtmlLocalized(55, 120, 200, 25, 1011495, false, false); // VIEW FINANCES
|
||||
this.AddButton(20, 120, 4005, 4007, 0, GumpButtonType.Page, 2);
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011441, false, false); // Exit
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
#endregion
|
||||
|
||||
#region Finances
|
||||
this.AddPage(2);
|
||||
|
||||
int financeUpkeep = town.FinanceUpkeep;
|
||||
int sheriffUpkeep = town.SheriffUpkeep;
|
||||
int dailyIncome = town.DailyIncome;
|
||||
int netCashFlow = town.NetCashFlow;
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 300, 25, 1011524, false, false); // FINANCE STATEMENT
|
||||
|
||||
this.AddHtmlLocalized(20, 80, 300, 25, 1011538, false, false); // Current total money for town :
|
||||
this.AddLabel(20, 100, 0x44, town.Silver.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 130, 300, 25, 1011520, false, false); // Finance Minister Upkeep :
|
||||
this.AddLabel(20, 150, 0x44, financeUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 180, 300, 25, 1011521, false, false); // Sheriff Upkeep :
|
||||
this.AddLabel(20, 200, 0x44, sheriffUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 230, 300, 25, 1011522, false, false); // Town Income :
|
||||
this.AddLabel(20, 250, 0x44, dailyIncome.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 280, 300, 25, 1011523, false, false); // Net Cash flow per day :
|
||||
this.AddLabel(20, 300, 0x44, netCashFlow.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Hire Guards
|
||||
this.AddPage(3);
|
||||
|
||||
this.AddHtmlLocalized(20, 30, 300, 25, 1011494, false, false); // HIRE GUARDS
|
||||
|
||||
List<GuardList> guardLists = town.GuardLists;
|
||||
|
||||
for (int i = 0; i < guardLists.Count; ++i)
|
||||
{
|
||||
GuardList guardList = guardLists[i];
|
||||
int y = 90 + (i * 60);
|
||||
|
||||
this.AddButton(20, y, 4005, 4007, 0, GumpButtonType.Page, 4 + i);
|
||||
this.CenterItem(guardList.Definition.ItemID, 50, y - 20, 70, 60);
|
||||
this.AddHtmlText(120, y, 200, 25, guardList.Definition.Header, false, false);
|
||||
}
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 1);
|
||||
#endregion
|
||||
|
||||
#region Guard Pages
|
||||
for (int i = 0; i < guardLists.Count; ++i)
|
||||
{
|
||||
GuardList guardList = guardLists[i];
|
||||
|
||||
this.AddPage(4 + i);
|
||||
|
||||
this.AddHtmlText(90, 30, 300, 25, guardList.Definition.Header, false, false);
|
||||
this.CenterItem(guardList.Definition.ItemID, 10, 10, 80, 80);
|
||||
|
||||
this.AddHtmlLocalized(20, 90, 200, 25, 1011514, false, false); // You have :
|
||||
this.AddLabel(230, 90, 0x26, guardList.Guards.Count.ToString());
|
||||
|
||||
this.AddHtmlLocalized(20, 120, 200, 25, 1011515, false, false); // Maximum :
|
||||
this.AddLabel(230, 120, 0x12A, guardList.Definition.Maximum.ToString());
|
||||
|
||||
this.AddHtmlLocalized(20, 150, 200, 25, 1011516, false, false); // Cost :
|
||||
this.AddLabel(230, 150, 0x44, guardList.Definition.Price.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 180, 200, 25, 1011517, false, false); // Daily Pay :
|
||||
this.AddLabel(230, 180, 0x37, guardList.Definition.Upkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 210, 200, 25, 1011518, false, false); // Current Silver :
|
||||
this.AddLabel(230, 210, 0x44, town.Silver.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlLocalized(20, 240, 200, 25, 1011519, false, false); // Current Payroll :
|
||||
this.AddLabel(230, 240, 0x44, sheriffUpkeep.ToString("N0")); // NOTE: Added 'N0'
|
||||
|
||||
this.AddHtmlText(55, 300, 200, 25, guardList.Definition.Label, false, false);
|
||||
this.AddButton(20, 300, 4005, 4007, 1 + i, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 360, 200, 25, 1011067, false, false); // Previous page
|
||||
this.AddButton(20, 360, 4005, 4007, 0, GumpButtonType.Page, 3);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (!this.m_Town.IsSheriff(this.m_From) || this.m_Town.Owner != this.m_Faction)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010339); // You no longer control this city
|
||||
return;
|
||||
}
|
||||
|
||||
int index = info.ButtonID - 1;
|
||||
|
||||
if (index >= 0 && index < this.m_Town.GuardLists.Count)
|
||||
{
|
||||
GuardList guardList = this.m_Town.GuardLists[index];
|
||||
Town town = Town.FromRegion(this.m_From.Region);
|
||||
|
||||
if (Town.FromRegion(this.m_From.Region) != this.m_Town)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010305); // You must be in your controlled city to buy Items
|
||||
}
|
||||
else if (guardList.Guards.Count >= guardList.Definition.Maximum)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010306); // You currently have too many of this enhancement type to place another
|
||||
}
|
||||
else if (BaseBoat.FindBoatAt(this.m_From.Location, this.m_From.Map) != null)
|
||||
{
|
||||
this.m_From.SendMessage("You cannot place a guard here");
|
||||
}
|
||||
else if (this.m_Town.Silver >= guardList.Definition.Price)
|
||||
{
|
||||
BaseFactionGuard guard = guardList.Construct();
|
||||
|
||||
if (guard != null)
|
||||
{
|
||||
guard.Faction = this.m_Faction;
|
||||
guard.Town = this.m_Town;
|
||||
|
||||
this.m_Town.Silver -= guardList.Definition.Price;
|
||||
|
||||
guard.MoveToWorld(this.m_From.Location, this.m_From.Map);
|
||||
guard.Home = guard.Location;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
205
Scripts/Services/Factions/Gumps/TownStoneGump.cs
Normal file
205
Scripts/Services/Factions/Gumps/TownStoneGump.cs
Normal file
@@ -0,0 +1,205 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
using Server.Targeting;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class TownStoneGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Faction m_Faction;
|
||||
private readonly Town m_Town;
|
||||
public TownStoneGump(PlayerMobile from, Faction faction, Town town)
|
||||
: base(50, 50)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Faction = faction;
|
||||
this.m_Town = town;
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 320, 250, 5054);
|
||||
this.AddBackground(10, 10, 300, 230, 3000);
|
||||
|
||||
this.AddHtmlText(25, 30, 250, 25, town.Definition.TownStoneHeader, false, false);
|
||||
|
||||
this.AddHtmlLocalized(55, 60, 150, 25, 1011557, false, false); // Hire Sheriff
|
||||
this.AddButton(20, 60, 4005, 4007, 1, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 90, 150, 25, 1011559, false, false); // Hire Finance Minister
|
||||
this.AddButton(20, 90, 4005, 4007, 2, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 120, 150, 25, 1011558, false, false); // Fire Sheriff
|
||||
this.AddButton(20, 120, 4005, 4007, 3, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 150, 150, 25, 1011560, false, false); // Fire Finance Minister
|
||||
this.AddButton(20, 150, 4005, 4007, 4, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddHtmlLocalized(55, 210, 150, 25, 1011441, false, false); // EXIT
|
||||
this.AddButton(20, 210, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (this.m_Town.Owner != this.m_Faction || !this.m_Faction.IsCommander(this.m_From))
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010339); // You no longer control this city
|
||||
return;
|
||||
}
|
||||
|
||||
switch ( info.ButtonID )
|
||||
{
|
||||
case 1: // hire sheriff
|
||||
{
|
||||
if (this.m_Town.Sheriff != null)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010342); // You must fire your Sheriff before you can elect a new one
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010347); // Who shall be your new sheriff
|
||||
this.m_From.BeginTarget(12, false, TargetFlags.None, new TargetCallback(HireSheriff_OnTarget));
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 2: // hire finance minister
|
||||
{
|
||||
if (this.m_Town.Finance != null)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010345); // You must fire your finance minister before you can elect a new one
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010348); // Who shall be your new Minister of Finances?
|
||||
this.m_From.BeginTarget(12, false, TargetFlags.None, new TargetCallback(HireFinanceMinister_OnTarget));
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 3: // fire sheriff
|
||||
{
|
||||
if (this.m_Town.Sheriff == null)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010350); // You need to elect a sheriff before you can fire one
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010349); // You have fired your sheriff
|
||||
this.m_Town.Sheriff.SendLocalizedMessage(1010270); // You have been fired as Sheriff
|
||||
this.m_Town.Sheriff = null;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 4: // fire finance minister
|
||||
{
|
||||
if (this.m_Town.Finance == null)
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010352); // You need to elect a financial minister before you can fire one
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_From.SendLocalizedMessage(1010351); // You have fired your financial Minister
|
||||
this.m_Town.Finance.SendLocalizedMessage(1010151); // You have been fired as Finance Minister
|
||||
this.m_Town.Finance = null;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void HireSheriff_OnTarget(Mobile from, object obj)
|
||||
{
|
||||
if (this.m_Town.Owner != this.m_Faction || !this.m_Faction.IsCommander(from))
|
||||
{
|
||||
from.SendLocalizedMessage(1010339); // You no longer control this city
|
||||
return;
|
||||
}
|
||||
else if (this.m_Town.Sheriff != null)
|
||||
{
|
||||
from.SendLocalizedMessage(1010342); // You must fire your Sheriff before you can elect a new one
|
||||
}
|
||||
else if (obj is Mobile)
|
||||
{
|
||||
Mobile targ = (Mobile)obj;
|
||||
PlayerState pl = PlayerState.Find(targ);
|
||||
|
||||
if (pl == null)
|
||||
{
|
||||
from.SendLocalizedMessage(1010337); // You must pick someone in a faction
|
||||
}
|
||||
else if (pl.Faction != this.m_Faction)
|
||||
{
|
||||
from.SendLocalizedMessage(1010338); // You must pick someone in the correct faction
|
||||
}
|
||||
else if (this.m_Faction.Commander == targ)
|
||||
{
|
||||
from.SendLocalizedMessage(1010335); // You cannot elect a commander to a town position
|
||||
}
|
||||
else if (pl.Sheriff != null || pl.Finance != null)
|
||||
{
|
||||
from.SendLocalizedMessage(1005245); // You must pick someone who does not already hold a city post
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_Town.Sheriff = targ;
|
||||
targ.SendLocalizedMessage(1010340); // You are now the Sheriff
|
||||
from.SendLocalizedMessage(1010341); // You have elected a Sheriff
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
from.SendLocalizedMessage(1010334); // You must select a player to hold a city position!
|
||||
}
|
||||
}
|
||||
|
||||
private void HireFinanceMinister_OnTarget(Mobile from, object obj)
|
||||
{
|
||||
if (this.m_Town.Owner != this.m_Faction || !this.m_Faction.IsCommander(from))
|
||||
{
|
||||
from.SendLocalizedMessage(1010339); // You no longer control this city
|
||||
return;
|
||||
}
|
||||
else if (this.m_Town.Finance != null)
|
||||
{
|
||||
from.SendLocalizedMessage(1010342); // You must fire your Sheriff before you can elect a new one
|
||||
}
|
||||
else if (obj is Mobile)
|
||||
{
|
||||
Mobile targ = (Mobile)obj;
|
||||
PlayerState pl = PlayerState.Find(targ);
|
||||
|
||||
if (pl == null)
|
||||
{
|
||||
from.SendLocalizedMessage(1010337); // You must pick someone in a faction
|
||||
}
|
||||
else if (pl.Faction != this.m_Faction)
|
||||
{
|
||||
from.SendLocalizedMessage(1010338); // You must pick someone in the correct faction
|
||||
}
|
||||
else if (this.m_Faction.Commander == targ)
|
||||
{
|
||||
from.SendLocalizedMessage(1010335); // You cannot elect a commander to a town position
|
||||
}
|
||||
else if (pl.Sheriff != null || pl.Finance != null)
|
||||
{
|
||||
from.SendLocalizedMessage(1005245); // You must pick someone who does not already hold a city post
|
||||
}
|
||||
else
|
||||
{
|
||||
this.m_Town.Finance = targ;
|
||||
targ.SendLocalizedMessage(1010343); // You are now the Financial Minister
|
||||
from.SendLocalizedMessage(1010344); // You have elected a Financial Minister
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
from.SendLocalizedMessage(1010334); // You must select a player to hold a city position!
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
67
Scripts/Services/Factions/Gumps/VoteGump.cs
Normal file
67
Scripts/Services/Factions/Gumps/VoteGump.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using Server.Gumps;
|
||||
using Server.Mobiles;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Factions
|
||||
{
|
||||
public class VoteGump : FactionGump
|
||||
{
|
||||
private readonly PlayerMobile m_From;
|
||||
private readonly Election m_Election;
|
||||
public VoteGump(PlayerMobile from, Election election)
|
||||
: base(50, 50)
|
||||
{
|
||||
this.m_From = from;
|
||||
this.m_Election = election;
|
||||
|
||||
bool canVote = election.CanVote(from);
|
||||
|
||||
this.AddPage(0);
|
||||
|
||||
this.AddBackground(0, 0, 420, 350, 5054);
|
||||
this.AddBackground(10, 10, 400, 330, 3000);
|
||||
|
||||
this.AddHtmlText(20, 20, 380, 20, election.Faction.Definition.Header, false, false);
|
||||
|
||||
if (canVote)
|
||||
this.AddHtmlLocalized(20, 60, 380, 20, 1011428, false, false); // VOTE FOR LEADERSHIP
|
||||
else
|
||||
this.AddHtmlLocalized(20, 60, 380, 20, 1038032, false, false); // You have already voted in this election.
|
||||
|
||||
for (int i = 0; i < election.Candidates.Count; ++i)
|
||||
{
|
||||
Candidate cd = election.Candidates[i];
|
||||
|
||||
if (canVote)
|
||||
this.AddButton(20, 100 + (i * 20), 4005, 4007, i + 1, GumpButtonType.Reply, 0);
|
||||
|
||||
this.AddLabel(55, 100 + (i * 20), 0, cd.Mobile.Name);
|
||||
this.AddLabel(300, 100 + (i * 20), 0, cd.Votes.ToString());
|
||||
}
|
||||
|
||||
this.AddButton(20, 310, 4005, 4007, 0, GumpButtonType.Reply, 0);
|
||||
this.AddHtmlLocalized(55, 310, 100, 20, 1011012, false, false); // CANCEL
|
||||
}
|
||||
|
||||
public override void OnResponse(NetState sender, RelayInfo info)
|
||||
{
|
||||
if (info.ButtonID == 0)
|
||||
{
|
||||
this.m_From.SendGump(new FactionStoneGump(this.m_From, this.m_Election.Faction));
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!this.m_Election.CanVote(this.m_From))
|
||||
return;
|
||||
|
||||
int index = info.ButtonID - 1;
|
||||
|
||||
if (index >= 0 && index < this.m_Election.Candidates.Count)
|
||||
this.m_Election.Candidates[index].Voters.Add(new Voter(this.m_From, this.m_Election.Candidates[index].Mobile));
|
||||
|
||||
this.m_From.SendGump(new VoteGump(this.m_From, this.m_Election));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user