From 43c9295fc5ee80339a1cff46be3b5a4caa13ec6c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 17 Dec 2006 11:25:03 +0000 Subject: [PATCH] echo bot chat to the server console (must remember about this for nq) --- fbxa/chat.r | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fbxa/chat.r b/fbxa/chat.r index d5c9cb7..8ab6a1a 100644 --- a/fbxa/chat.r +++ b/fbxa/chat.r @@ -77,6 +77,8 @@ b_originator == targ WriteByte (MSG_ALL, 3); WriteByte (MSG_ALL, 2); WriteString (MSG_ALL, msg); + dprint (ent.netname); + dprint (msg); } -(void)say2:(string)msg @@ -85,6 +87,7 @@ b_originator == targ WriteByte (MSG_ALL, 3); WriteByte (MSG_ALL, 2); WriteString (MSG_ALL, msg); + dprint (msg); } -(void)sayTeam:(string)msg @@ -98,6 +101,7 @@ b_originator == targ WriteByte (MSG_ALL, 3); WriteByte (MSG_ALL, 1); WriteString (MSG_ALL, ent.netname); + dprint (ent.netname); } // I didn't like the old code so this is very stripped down