Quote:
|
bots chat only appear on HLDS not in-game.
|
At a glance. Untested. Bots that usually do not talk, won't. Hope this is what you mean.
Post Test from OP. Did not work.
Code:
{
if(!is_user_connected(i))
continue;
message_begin(MSG_ONE, get_user_msgid("SayText"), {0, 0, 0}, i);
write_byte(id);
write_string(SzMessages);
message_end();
}
{
if(!is_user_connected(i) || !is_user_bot(i) || is_user_bot(i))
continue;
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), {0, 0, 0}, i);
write_byte(id);
write_string(SzMessages);
message_end();
}
Quote:
Originally Posted by feren02
---- Upon doing this, even a Human player chats cannot be seen in-game anymore. What maybe the other work around?
|
__________________