Index: binary-improvements/7dtd-server-fixes/src/API.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/API.cs	(revision 253)
+++ binary-improvements/7dtd-server-fixes/src/API.cs	(revision 267)
@@ -28,6 +28,6 @@
 		}
 
-		public override bool ChatMessage (ClientInfo _cInfo, string _message, string _playerName) {
-			return ChatHookExample.Hook (_cInfo, _message, _playerName);
+		public override bool ChatMessage (ClientInfo _cInfo, EnumGameMessages _type, string _msg, string _mainName, bool _localizeMain, string _secondaryName, bool _localizeSecondary) {
+			return ChatHookExample.Hook (_cInfo, _type, _msg, _mainName);
 		}
 	}
Index: binary-improvements/7dtd-server-fixes/src/ChatHookExample.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/ChatHookExample.cs	(revision 253)
+++ binary-improvements/7dtd-server-fixes/src/ChatHookExample.cs	(revision 267)
@@ -4,17 +4,12 @@
 {
 	public class ChatHookExample {
-		private const string BBFILTER = "[ffffffff][/url][/b][/i][/u][/s][/sub][/sup][ff]";
 		private const string ANSWER = "     [ff0000]I[-] [ff7f00]W[-][ffff00]A[-][80ff00]S[-] [00ffff]H[-][0080ff]E[-][0000ff]R[-][8b00ff]E[-]";
 
-		public static bool Hook (ClientInfo _cInfo, string _message, string _playerName) {
+		public static bool Hook (ClientInfo _cInfo, EnumGameMessages _type, string _message, string _playerName) {
 			if (!string.IsNullOrEmpty (_message)) {
-				if (_message.EndsWith (BBFILTER + BBFILTER)) {
-					_message = _message.Remove (_message.Length - 2 * BBFILTER.Length);
-				}
-
 				if (_message.ToLower () == "/alloc") {
 					if (_cInfo != null) {
 						Log.Out ("Sent chat hook reply to {0}", _cInfo.playerId);
-						_cInfo.SendPackage (new NetPackageGameMessage (ANSWER, ""));
+						_cInfo.SendPackage (new NetPackageGameMessage (EnumGameMessages.Chat, ANSWER, "", false, "", false));
 					} else {
 						Log.Error ("Argument _cInfo null on message: {0}", _message);
