20.03.2013, 21:49
This shit spam my IRC , and i dunno how to stop it
PHP код:
public IRC_ConnectDelay(tempid)
{
switch (tempid)
{
case 1:
{
// Connect the first bot
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
}
case 2:
{
new string[128];
// Connect the second bot
gBotID[1] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_2_NICKNAME, BOT_2_REALNAME, BOT_2_USERNAME);
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5#####################################");
format(string,sizeof(string),"5%s (%s)",sabbv,svname);
IRC_GroupSay(gGroupID, IRC_CHANNEL,string);
format(string,sizeof(string),"5Version %s",sversion);
IRC_GroupSay(gGroupID, IRC_CHANNEL,string);
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5The sexual Gamemode.");
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5#####################################");
}
case 3:
{
// Connect the admin bot
gBotID[2] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_3_NICKNAME, BOT_3_REALNAME, BOT_3_USERNAME);
}
}
return 1;
}