diff --git a/AuctionData/.svn/all-wcprops b/AuctionData/.svn/all-wcprops
new file mode 100644
index 0000000..f1144b0
--- /dev/null
+++ b/AuctionData/.svn/all-wcprops
@@ -0,0 +1,17 @@
+K 25
+svn:wc:ra_dav:version-url
+V 30
+/svn/!svn/ver/2/trunk/GMCPEcho
+END
+GMCPEcho.csproj
+K 25
+svn:wc:ra_dav:version-url
+V 46
+/svn/!svn/ver/2/trunk/GMCPEcho/GMCPEcho.csproj
+END
+GMCPEcho.cs
+K 25
+svn:wc:ra_dav:version-url
+V 42
+/svn/!svn/ver/2/trunk/GMCPEcho/GMCPEcho.cs
+END
diff --git a/AuctionData/.svn/desktop.ini b/AuctionData/.svn/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/dir-prop-base b/AuctionData/.svn/dir-prop-base
new file mode 100644
index 0000000..f1b96ea
--- /dev/null
+++ b/AuctionData/.svn/dir-prop-base
@@ -0,0 +1,5 @@
+K 14
+bugtraq:number
+V 4
+true
+END
diff --git a/AuctionData/.svn/entries b/AuctionData/.svn/entries
new file mode 100644
index 0000000..ab05e7a
--- /dev/null
+++ b/AuctionData/.svn/entries
@@ -0,0 +1,99 @@
+10
+
+dir
+58
+http://proxymud.googlecode.com/svn/trunk/GMCPEcho
+http://proxymud.googlecode.com/svn
+
+
+
+2012-01-17T10:55:35.805502Z
+2
+default8p@gmail.com
+has-props
+
+
+
+
+
+
+
+
+
+
+
+
+
+8a6e9f07-fe1d-2472-fcf8-0b435762827a
+
+GMCPEcho.csproj
+file
+
+
+
+
+2016-03-25T22:18:43.064138Z
+76fb0ddd83ae3b24fd40628d322b5e47
+2012-01-17T10:55:35.805502Z
+2
+default8p@gmail.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+2718
+
+GMCPEcho.cs
+file
+
+
+
+
+2016-03-25T22:18:43.064138Z
+9aaa0c4c8ac82fc1c1898d1cefd5cde5
+2012-01-17T10:55:35.805502Z
+2
+default8p@gmail.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+2717
+
+Properties
+dir
+
diff --git a/AuctionData/.svn/prop-base/desktop.ini b/AuctionData/.svn/prop-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/prop-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/props/desktop.ini b/AuctionData/.svn/props/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/props/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/text-base/GMCPEcho.cs.svn-base b/AuctionData/.svn/text-base/GMCPEcho.cs.svn-base
new file mode 100644
index 0000000..cd254a7
--- /dev/null
+++ b/AuctionData/.svn/text-base/GMCPEcho.cs.svn-base
@@ -0,0 +1,71 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using ProxyCore.Scripting;
+using ProxyCore;
+using ProxyCore.Output;
+
+namespace GMCPEcho
+{
+ public class GMCPEcho : Plugin
+ {
+ public GMCPEcho()
+ : base("gmcpecho", "GMCP Echo")
+ {
+ Author = "Duckbat";
+ Version = 1;
+ Description = "Echos all GMCP specified by user back. This way you can see GMCP in clients that normally don't support it.";
+ UpdateUrl = "www.duckbat.com/plugins/update.gmcpecho.txt";
+ Website = "www.duckbat.com/plugins/index.php?t=gmcpecho";
+
+ Config = new GMCPEchoConfig();
+
+ RegisterTrigger("gmcp", @"^\$gmcp\.", GMCPTrigger);
+ }
+
+ private string[] AllowedModules;
+
+ private bool GMCPTrigger(TriggerData t)
+ {
+ if(AllowedModules == null)
+ AllowedModules = Config.GetString("GMCP.Modules", "gmcp.*").Split(new[] { ",", " " }, StringSplitOptions.RemoveEmptyEntries);
+
+ string Module = t.Msg.Msg.Substring(1);
+ if(Module.Contains(' '))
+ Module = Module.Substring(0, Module.IndexOf(' '));
+ if(HasModule(Module))
+ World.Instance.SendMessage(t.Msg.Msg, Config.GetUInt64("GMCP.AuthMask", ulong.MaxValue));
+ return false;
+ }
+
+ private bool HasModule(string Msg)
+ {
+ foreach(string x in AllowedModules)
+ {
+ if(x.EndsWith("*"))
+ {
+ if(Msg.StartsWith(x.Substring(0, x.Length - 1)))
+ return true;
+ continue;
+ }
+
+ if(x == Msg)
+ return true;
+ }
+
+ return false;
+ }
+ }
+
+ public class GMCPEchoConfig : ConfigFile
+ {
+ protected override void OnCreated()
+ {
+ base.OnCreated();
+
+ CreateSetting("GMCP.Modules", "gmcp.*", "Which GMCP modules would you like to echo to client. Separate with ',' sign and use '*' for wildcard but the wildcard can only be at the end not in the middle or start. For example \"gmcp.char.*, gmcp.room.*\". Use \"gmcp.*\" to echo everything.");
+ CreateSetting("GMCP.AuthMask", ulong.MaxValue, "Which client security levels see GMCP echo. This is a 64 bit mask. For example if you want security level 1 and 3 to see GMCP you would enter value 5 (1 + 4). These values are 2 ^ (level - 1), for example security level 3 mask: 2 ^ (3 - 1) = 4. Then you just add these up. Default (all levels): " + ulong.MaxValue);
+ }
+ }
+}
diff --git a/AuctionData/.svn/text-base/GMCPEcho.csproj.svn-base b/AuctionData/.svn/text-base/GMCPEcho.csproj.svn-base
new file mode 100644
index 0000000..d527a43
--- /dev/null
+++ b/AuctionData/.svn/text-base/GMCPEcho.csproj.svn-base
@@ -0,0 +1,63 @@
+
+
+
+ Debug
+ AnyCPU
+ 9.0.30729
+ 2.0
+ {86B2AA8D-5B03-4128-9C77-9E94F71CFFEE}
+ Library
+ Properties
+ GMCPEcho
+ GMCPEcho
+ v3.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\ProxyCore\bin\ProxyCore.dll
+
+
+
+ 3.5
+
+
+ 3.5
+
+
+ 3.5
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AuctionData/.svn/text-base/desktop.ini b/AuctionData/.svn/text-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/text-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/tmp/desktop.ini b/AuctionData/.svn/tmp/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/tmp/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/tmp/prop-base/desktop.ini b/AuctionData/.svn/tmp/prop-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/tmp/prop-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/tmp/props/desktop.ini b/AuctionData/.svn/tmp/props/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/tmp/props/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/.svn/tmp/text-base/desktop.ini b/AuctionData/.svn/tmp/text-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/.svn/tmp/text-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/AuctionData.cs b/AuctionData/AuctionData.cs
new file mode 100644
index 0000000..3bc4a48
--- /dev/null
+++ b/AuctionData/AuctionData.cs
@@ -0,0 +1,66 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using ProxyCore.Scripting;
+using ProxyCore;
+using ProxyCore.Output;
+
+namespace AuctionData
+{
+ public class AuctionData : Plugin
+ {
+ public AuctionData()
+ : base("AuctionData", "GMCP Echo")
+ {
+ Author = "KoopaTroopa";
+ Version = 1;
+ Description = "Echos all GMCP specified by user back. This way you can see GMCP in clients that normally don't support it.";
+ UpdateUrl = "www.duckbat.com/plugins/update.AuctionData.txt";
+ Website = "www.duckbat.com/plugins/index.php?t=AuctionData";
+
+ Config = new AuctionDataConfig();
+
+ RegisterTrigger("marketsalecomp", @"^\$gmcp\.comm\.channel\.msg @\wMarket: (?- .+) \(Level .+, Num .+\) [Ss][Oo][Ll][Dd] to (?\w+) for (?.+) (?[Gg]old|TP|QP)\.", CaptureTrigger);
+ RegisterTrigger("aucsalecomp", @"^\$gmcp\.comm\.channel\.msg @\wAuction: (?
- .+) [Ss][Oo][Ll][Dd] to (?\w+) for (?.+) (?gold)\.", CaptureTrigger);
+
+ }
+
+ private string[] AllowedModules;
+
+ private bool CaptureTrigger(TriggerData t)
+ {
+ World.Instance.SendMessage(t.Msg.Msg, Config.GetUInt64("Auc.AuthMask", ulong.MaxValue));
+ //World.Instance.SendMessage("@w{CommandEcho,Level=" + AuthLevel + ",Id=" + ClientId + "}" + Msg, Config.GetUInt64("Echo.To.AuthMask", ulong.MaxValue - 1));
+ }
+
+ private bool HasModule(string Msg)
+ {
+ foreach(string x in AllowedModules)
+ {
+ if(x.EndsWith("*"))
+ {
+ if(Msg.StartsWith(x.Substring(0, x.Length - 1)))
+ return true;
+ continue;
+ }
+
+ if(x == Msg)
+ return true;
+ }
+
+ return false;
+ }
+ }
+
+ public class AuctionDataConfig : ConfigFile
+ {
+ protected override void OnCreated()
+ {
+ base.OnCreated();
+
+ CreateSetting("GMCP.Modules", "gmcp.*", "Which GMCP modules would you like to echo to client. Separate with ',' sign and use '*' for wildcard but the wildcard can only be at the end not in the middle or start. For example \"gmcp.char.*, gmcp.room.*\". Use \"gmcp.*\" to echo everything.");
+ CreateSetting("Auc.AuthMask", ulong.MaxValue, "Which client security levels see GMCP echo. This is a 64 bit mask. For example if you want security level 1 and 3 to see GMCP you would enter value 5 (1 + 4). These values are 2 ^ (level - 1), for example security level 3 mask: 2 ^ (3 - 1) = 4. Then you just add these up. Default (all levels): " + ulong.MaxValue);
+ }
+ }
+}
diff --git a/AuctionData/AuctionData.csproj b/AuctionData/AuctionData.csproj
new file mode 100644
index 0000000..6264966
--- /dev/null
+++ b/AuctionData/AuctionData.csproj
@@ -0,0 +1,90 @@
+
+
+
+ Debug
+ AnyCPU
+ 9.0.30729
+ 2.0
+ {86B2AA8D-5B03-4128-9C77-9E94F71CFFEE}
+ Library
+ Properties
+ GMCPEcho
+ GMCPEcho
+ v3.5
+ 512
+
+
+
+
+ 3.5
+ publish\
+ true
+ Disk
+ false
+ Foreground
+ 7
+ Days
+ false
+ false
+ true
+ 0
+ 1.0.0.%2a
+ false
+ false
+ true
+
+
+ true
+ full
+ false
+ ..\..\..\..\Desktop\MushProxy-Build\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ ..\..\..\..\Desktop\MushProxy-Build\Plugins\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\ProxyCore\bin\ProxyCore.dll
+
+
+
+ 3.5
+
+
+ 3.5
+
+
+ 3.5
+
+
+
+
+
+
+
+
+
+
+ False
+ .NET Framework 3.5 SP1
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/all-wcprops b/AuctionData/Properties/.svn/all-wcprops
new file mode 100644
index 0000000..10ef497
--- /dev/null
+++ b/AuctionData/Properties/.svn/all-wcprops
@@ -0,0 +1,11 @@
+K 25
+svn:wc:ra_dav:version-url
+V 41
+/svn/!svn/ver/2/trunk/GMCPEcho/Properties
+END
+AssemblyInfo.cs
+K 25
+svn:wc:ra_dav:version-url
+V 57
+/svn/!svn/ver/2/trunk/GMCPEcho/Properties/AssemblyInfo.cs
+END
diff --git a/AuctionData/Properties/.svn/desktop.ini b/AuctionData/Properties/.svn/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/dir-prop-base b/AuctionData/Properties/.svn/dir-prop-base
new file mode 100644
index 0000000..f1b96ea
--- /dev/null
+++ b/AuctionData/Properties/.svn/dir-prop-base
@@ -0,0 +1,5 @@
+K 14
+bugtraq:number
+V 4
+true
+END
diff --git a/AuctionData/Properties/.svn/entries b/AuctionData/Properties/.svn/entries
new file mode 100644
index 0000000..3afebd8
--- /dev/null
+++ b/AuctionData/Properties/.svn/entries
@@ -0,0 +1,62 @@
+10
+
+dir
+58
+http://proxymud.googlecode.com/svn/trunk/GMCPEcho/Properties
+http://proxymud.googlecode.com/svn
+
+
+
+2012-01-17T10:55:35.805502Z
+2
+default8p@gmail.com
+has-props
+
+
+
+
+
+
+
+
+
+
+
+
+
+8a6e9f07-fe1d-2472-fcf8-0b435762827a
+
+AssemblyInfo.cs
+file
+
+
+
+
+2016-03-25T22:18:43.064138Z
+df762a418f90d48e08731801bf1106b8
+2012-01-17T10:55:35.805502Z
+2
+default8p@gmail.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1428
+
diff --git a/AuctionData/Properties/.svn/prop-base/desktop.ini b/AuctionData/Properties/.svn/prop-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/prop-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/props/desktop.ini b/AuctionData/Properties/.svn/props/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/props/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/text-base/AssemblyInfo.cs.svn-base b/AuctionData/Properties/.svn/text-base/AssemblyInfo.cs.svn-base
new file mode 100644
index 0000000..e66e546
--- /dev/null
+++ b/AuctionData/Properties/.svn/text-base/AssemblyInfo.cs.svn-base
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("GMCPEcho")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("GMCPEcho")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("692b7a44-ef7f-4680-a81c-8f013fe8fb4f")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AuctionData/Properties/.svn/text-base/desktop.ini b/AuctionData/Properties/.svn/text-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/text-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/tmp/desktop.ini b/AuctionData/Properties/.svn/tmp/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/tmp/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/tmp/prop-base/desktop.ini b/AuctionData/Properties/.svn/tmp/prop-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/tmp/prop-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/tmp/props/desktop.ini b/AuctionData/Properties/.svn/tmp/props/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/tmp/props/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/.svn/tmp/text-base/desktop.ini b/AuctionData/Properties/.svn/tmp/text-base/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/.svn/tmp/text-base/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/Properties/AssemblyInfo.cs b/AuctionData/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..e66e546
--- /dev/null
+++ b/AuctionData/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("GMCPEcho")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("GMCPEcho")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("692b7a44-ef7f-4680-a81c-8f013fe8fb4f")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AuctionData/Properties/desktop.ini b/AuctionData/Properties/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/Properties/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/AuctionData/desktop.ini b/AuctionData/desktop.ini
new file mode 100644
index 0000000..309dea2
--- /dev/null
+++ b/AuctionData/desktop.ini
@@ -0,0 +1,5 @@
+[.ShellClassInfo]
+InfoTip=This folder is shared online.
+IconFile=C:\Program Files (x86)\Google\Drive\googledrivesync.exe
+IconIndex=16
+
\ No newline at end of file
diff --git a/MudLog/MudLog.cs b/MudLog/MudLog.cs
index c0e3fe7..7316985 100644
--- a/MudLog/MudLog.cs
+++ b/MudLog/MudLog.cs
@@ -74,6 +74,7 @@ namespace MudLog
f.WriteLine(
string.Format("[" + "{0:D2}" + ":" + "{1:D2}" + ":" + "{2:D2}" + "] ", DateTime.Now.Hour,
DateTime.Now.Minute, DateTime.Now.Second) + m);
+ //$gmcp.comm.channel.msg Floki MUSIC: -- Floki = Player MUSIC = channel
}
}