Index: binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
===================================================================
--- binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 205)
+++ binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 206)
@@ -87,5 +87,4 @@
     <Compile Include="src\CustomCommands\Version.cs" />
     <Compile Include="src\CustomCommands\RenderMap.cs" />
-    <Compile Include="src\CustomCommands\CreativeMenu.cs" />
     <Compile Include="src\CustomCommands\Give.cs" />
     <Compile Include="src\CustomCommands\ListItems.cs" />
Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/CreativeMenu.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/CreativeMenu.cs	(revision 205)
+++ 	(revision )
@@ -1,38 +1,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace AllocsFixes.CustomCommands
-{
-	public class CreativeMenu : ConsoleCommand
-	{
-		public CreativeMenu (ConsoleSdtd cons) : base(cons)
-		{
-		}
-
-		public override string Description ()
-		{
-			return "enable/disable creative menu";
-		}
-
-		public override string[] Names ()
-		{
-			return new string[] { "creativemenu", "cm" };
-		}
-
-		public override void Run (string[] _params)
-		{
-			try {
-				if (_params.Length != 1) {
-					m_Console.SendResult ("Usage: creativemenu <0/1>");
-					return;
-				}
-
-				GameStats.Set (EnumGameStats.IsCreativeMenuEnabled, _params [0].Equals ("1"));
-
-				m_Console.SendResult ("Set creative menu to " + _params [0].Equals ("1"));
-			} catch (Exception e) {
-				Log.Out ("Error in CreativeMenu.Run: " + e);
-			}
-		}
-	}
-}
Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs	(revision 205)
+++ binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs	(revision 206)
@@ -4,7 +4,7 @@
 namespace AllocsFixes.CustomCommands
 {
-	public class ListPlayersExtended : ConsoleCommand
+	public class ListPlayerIds : ConsoleCommand
 	{
-		public ListPlayersExtended (ConsoleSdtd cons) : base(cons)
+		public ListPlayerIds (ConsoleSdtd cons) : base(cons)
 		{
 		}
@@ -12,10 +12,10 @@
 		public override string Description ()
 		{
-			return "lists all players with extended attributes";
+			return "lists all players with their IDs for ingame commands";
 		}
 
 		public override string[] Names ()
 		{
-			return new string[] { "listplayersextended", "lpe" };
+			return new string[] { "listplayerids", "lpi" };
 		}
 
@@ -26,9 +26,4 @@
 				int num = 0;
 				foreach (KeyValuePair<int, EntityPlayer> current in w.playerEntities.dict) {
-					ClientInfo ci = CommonMappingFunctions.GetClientInfoFromEntityID (current.Key);
-					string ip = string.Empty;
-					if (ci != null) {
-						ip = ci.networkPlayer.ipAddress;
-					}
 					m_Console.SendResult (string.Concat (new object[]
 						{
@@ -36,29 +31,7 @@
 							++num,
 							". id=",
-//							current.Value.4E2AA,
+							current.Value.entityId,
 							", ",
 							current.Value.EntityName,
-							", pos=",
-							current.Value.GetPosition (),
-							", rot=",
-							current.Value.rotation,
-							", remote=",
-//							current.Value.fd00b1,
-							", health=",
-							current.Value.Health,
-							", deaths=",
-							current.Value.Died,
-							", zombies=",
-							current.Value.KilledZombies,
-							", players=",
-							current.Value.KilledPlayers,
-							", score=",
-							current.Value.Score,
-							", steamid=",
-							CommonMappingFunctions.GetSteamID (ci),
-							", ip=",
-							ip,
-							", ping=",
-							current.Value.pingToServer
 						}
 					)
@@ -67,5 +40,5 @@
 				m_Console.SendResult ("Total of " + w.playerEntities.list.Count + " in the game");
 			} catch (Exception e) {
-				Log.Out ("Error in ListPlayersExtended.Run: " + e);
+				Log.Out ("Error in ListPlayerIds.Run: " + e);
 			}
 		}
Index: binary-improvements/bin/Release/7dtd-server-fixes_version.txt
===================================================================
--- binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 205)
+++ binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 206)
@@ -1,1 +1,1 @@
-Version:       0.100.5439.41910
+Version:       0.100.5442.30220
