19.11.2012, 11:48
Ok now me problem is i made a filterscript for irc. But i dont wanna put the whole FS in me gamemode. but i need
in me gamemode for the admin channel how can i fix this.? soz for bad english if you dont understand me please say me i try to explain better then,
pawn Код:
forward SendToIrcAdmins(player[],reciever[],const string[]);
public SendToIrcAdmins(player[],reciever[],const string[])
{
new ircstr[180],botid;
IRC_JoinChannel(botid, IRC_ADMINCHANNEL);
format(ircstr,sizeof(ircstr),"%s",string);
IRC_GroupSay(gGroupID,IRC_ADMINCHANNEL,ircstr);
return 1;
}