mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-24 21:02:06 +00:00
echo bot chat to the server console (must remember about this for nq)
This commit is contained in:
parent
dbcb664ab4
commit
43c9295fc5
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue