25.09.2012, 17:44
Do you have
Also that way of connecting bots won't work.
Server, nickname, realname and username are strings, not variables. Also you don't put # before network. Only before channel.
pawn Код:
#include <a_samp>
pawn Код:
gBotID[0] = IRC_Connect(#irc.tl, 6667, bot1, SA_MP Bot, bot);
pawn Код:
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
//or
gBotID[0] = IRC_Connect("irc.tl", 6667, "bot1", "SA_MP Bot", "bot");