IRC Question
#1

Hello Guys, how to make that Players in the Server, see what Players write on the IRC Chat? Like "Player X [IRC]: blabla"
Reply
#2

You've already been explained how to do this in the IRC plugin thread.
Reply
#3

Do you mean without a !say command? If so then just add this to your script -

Код:
public IRC_OnUserSay(botid, recipient[], user[], host[], message[])
{
    new string[128];
    format(string, sizeof(string), "[IRC] %s: %s", user, message);
    SendClientMessageToAll(YOUR_COLOR_HERE, string);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)