Fixes code according to modern code style. Fixes a few expression bugs.

This commit is contained in:
Kamron Batman 2018-09-15 09:58:51 -07:00
parent 89eea25e5f
commit 970fd563b2
3324 changed files with 441118 additions and 433755 deletions

View file

@ -1,56 +1,54 @@
using Server.Guilds;
using Server.Mobiles;
using Server.Gumps;
using Server.Mobiles;
namespace Server.Misc
{
public class Keywords
{
public static void Initialize()
{
// Register our speech handler
EventSink.Speech += EventSink_Speech;
}
public class Keywords
{
public static void Initialize()
{
// Register our speech handler
EventSink.Speech += EventSink_Speech;
}
public static void EventSink_Speech( SpeechEventArgs args )
{
Mobile from = args.Mobile;
int[] keywords = args.Keywords;
public static void EventSink_Speech(SpeechEventArgs args)
{
Mobile from = args.Mobile;
int[] keywords = args.Keywords;
for ( int i = 0; i < keywords.Length; ++i )
{
switch ( keywords[i] )
{
case 0x002A: // *i resign from my guild*
{
((Guild)from.Guild)?.RemoveMember( from );
for (int i = 0; i < keywords.Length; ++i)
switch (keywords[i])
{
case 0x002A: // *i resign from my guild*
{
((Guild)from.Guild)?.RemoveMember(from);
break;
}
case 0x0032: // *i must consider my sins*
{
if ( !Core.SE )
{
from.SendMessage( "Short Term Murders : {0}", from.ShortTermMurders );
from.SendMessage( "Long Term Murders : {0}", from.Kills );
}
else
{
from.SendMessage( 0x3B2, "Short Term Murders: {0} Long Term Murders: {1}", from.ShortTermMurders, from.Kills );
}
break;
}
case 0x0035: // i renounce my young player status*
{
if ( from is PlayerMobile mobile && mobile.Young && !mobile.HasGump( typeof( RenounceYoungGump ) ) )
{
mobile.SendGump( new RenounceYoungGump() );
}
break;
}
case 0x0032: // *i must consider my sins*
{
if (!Core.SE)
{
from.SendMessage("Short Term Murders : {0}", from.ShortTermMurders);
from.SendMessage("Long Term Murders : {0}", from.Kills);
}
else
{
from.SendMessage(0x3B2, "Short Term Murders: {0} Long Term Murders: {1}", from.ShortTermMurders,
from.Kills);
}
break;
}
}
}
}
}
}
break;
}
case 0x0035: // i renounce my young player status*
{
if (from is PlayerMobile mobile && mobile.Young && !mobile.HasGump(typeof(RenounceYoungGump)))
mobile.SendGump(new RenounceYoungGump());
break;
}
}
}
}
}