Updates formatting rules (#199)
This commit is contained in:
parent
8caf5a422f
commit
1f651992d7
1752 changed files with 203904 additions and 203367 deletions
|
|
@ -1,54 +1,54 @@
|
|||
using System;
|
||||
|
||||
namespace Server.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// This timer spouts some welcome messages to a user at a set interval. It is used on character creation and login.
|
||||
/// </summary>
|
||||
public class WelcomeTimer : Timer
|
||||
{
|
||||
private static readonly string[] m_Messages = TestCenter.Enabled
|
||||
? new[]
|
||||
{
|
||||
"Welcome to this test shard. You are able to customize your character's stats and skills at anytime to anything you wish. To see the commands to do this just say 'help'.",
|
||||
"You will find a bank check worth 1,000,000 gold in your bank!",
|
||||
"A spellbook and a bag of reagents has been placed into your bank box.",
|
||||
"Various tools have been placed into your bank.",
|
||||
"Various raw materials like ingots, logs, feathers, hides, bottles, etc, have been placed into your bank.",
|
||||
"5 unmarked recall runes, 5 Felucca moonstones and 5 Trammel moonstones have been placed into your bank box.",
|
||||
"One of each level of treasure map has been placed in your bank box.",
|
||||
"You will find 9000 silver pieces deposited into your bank box. Spend it as you see fit and enjoy yourself!",
|
||||
"You will find 9000 gold pieces deposited into your bank box. Spend it as you see fit and enjoy yourself!",
|
||||
"A bag of PowerScrolls has been placed in your bank box."
|
||||
}
|
||||
: new[]
|
||||
{
|
||||
// Yes, this message is a pathetic message, It's suggested that you change it.
|
||||
"Welcome to this shard.",
|
||||
"Please enjoy your stay."
|
||||
};
|
||||
|
||||
private readonly Mobile m_Mobile;
|
||||
private int m_State;
|
||||
private readonly int m_Count;
|
||||
|
||||
public WelcomeTimer(Mobile m) : this(m, m_Messages.Length)
|
||||
{
|
||||
}
|
||||
|
||||
public WelcomeTimer(Mobile m, int count) : base(TimeSpan.FromSeconds(5.0), TimeSpan.FromSeconds(10.0))
|
||||
{
|
||||
m_Mobile = m;
|
||||
m_Count = count;
|
||||
}
|
||||
|
||||
protected override void OnTick()
|
||||
{
|
||||
if (m_State < m_Count)
|
||||
m_Mobile.SendMessage(0x35, m_Messages[m_State++]);
|
||||
|
||||
if (m_State == m_Count)
|
||||
Stop();
|
||||
}
|
||||
}
|
||||
using System;
|
||||
|
||||
namespace Server.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// This timer spouts some welcome messages to a user at a set interval. It is used on character creation and login.
|
||||
/// </summary>
|
||||
public class WelcomeTimer : Timer
|
||||
{
|
||||
private static readonly string[] m_Messages = TestCenter.Enabled
|
||||
? new[]
|
||||
{
|
||||
"Welcome to this test shard. You are able to customize your character's stats and skills at anytime to anything you wish. To see the commands to do this just say 'help'.",
|
||||
"You will find a bank check worth 1,000,000 gold in your bank!",
|
||||
"A spellbook and a bag of reagents has been placed into your bank box.",
|
||||
"Various tools have been placed into your bank.",
|
||||
"Various raw materials like ingots, logs, feathers, hides, bottles, etc, have been placed into your bank.",
|
||||
"5 unmarked recall runes, 5 Felucca moonstones and 5 Trammel moonstones have been placed into your bank box.",
|
||||
"One of each level of treasure map has been placed in your bank box.",
|
||||
"You will find 9000 silver pieces deposited into your bank box. Spend it as you see fit and enjoy yourself!",
|
||||
"You will find 9000 gold pieces deposited into your bank box. Spend it as you see fit and enjoy yourself!",
|
||||
"A bag of PowerScrolls has been placed in your bank box."
|
||||
}
|
||||
: new[]
|
||||
{
|
||||
// Yes, this message is a pathetic message, It's suggested that you change it.
|
||||
"Welcome to this shard.",
|
||||
"Please enjoy your stay."
|
||||
};
|
||||
|
||||
private readonly Mobile m_Mobile;
|
||||
private int m_State;
|
||||
private readonly int m_Count;
|
||||
|
||||
public WelcomeTimer(Mobile m) : this(m, m_Messages.Length)
|
||||
{
|
||||
}
|
||||
|
||||
public WelcomeTimer(Mobile m, int count) : base(TimeSpan.FromSeconds(5.0), TimeSpan.FromSeconds(10.0))
|
||||
{
|
||||
m_Mobile = m;
|
||||
m_Count = count;
|
||||
}
|
||||
|
||||
protected override void OnTick()
|
||||
{
|
||||
if (m_State < m_Count)
|
||||
m_Mobile.SendMessage(0x35, m_Messages[m_State++]);
|
||||
|
||||
if (m_State == m_Count)
|
||||
Stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue