08.02.2014, 10:53
pawn Код:
public IRC_OnUserJoinChannel(botid, channel[], user[], host[])
{
new string[128];
printf("*** IRC_OnUserJoinChannel (Bot ID %d): User %s (%s) joined channel %s!", botid, user, host, channel);
format(string,sizeof(string),"[IRC JOIN] User %s has joined the IRC Channel %s!",user,channel);
SendClientMessageToAll(COLOR_ROYALBLUE,string);
return 1;
}
For example :
[IRC JOIN] User rakshith122 has joined the channel #extreme
[IRC JOIN] User rakshith122 has joined the channel #extreme
I don't know what and where is the problem,
Hope someone would help me,
Thanks.