17.12.2009, 03:09
Quote:
Originally Posted by tima
Tell me please how to be authorised on a server if bot nick is registered?
|
pawn Код:
// Top of script
#define BOTPASS enteryourpw
// Anywhere you want
public IRC_OnConnect(botid)
{
new str[60]
format(str, 60, "nickserv identify %s", BOTPASS);
IRC_SendRaw(botid, str);
return 1;
}