This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Keep Getting Identify problem

General support and discussion of Eggdrop bots.
Post Reply
P
PHPN00B
Voice
Posts: 12
Joined: Tue Jan 15, 2008 5:40 pm

Keep Getting Identify problem

Post by PHPN00B »

i had this in .conf file

Code: Select all

bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  global botnick
  putquick "MODE $botnick +i-ws"
}
i changed it to

Code: Select all

bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  putquick "MODE $::botnick +iR-ws"
  putquick "privmsg nickserv :identify pass"
}
its still not identifying itself

any help be thankful

i did use search but did not see common problem
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

The privmsg command is an odd one, because it is case-sensitive. Just alter your procedure like this:

Code: Select all

bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  putquick "MODE $::botnick +iR-ws"
  putquick "PRIVMSG nickserv :identify pass"
}
be sure to change the password to the correct one :wink:
P
PHPN00B
Voice
Posts: 12
Joined: Tue Jan 15, 2008 5:40 pm

Post by PHPN00B »

[14:21] === Bot: 1 channels, 0 users.
Launched into the background (pid: xxxxx)

but but doesn't come into Channel :(
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

YooHoo wrote:The privmsg command is an odd one, because it is case-sensitive...
What kind of ircd would this be? I've never had any problems with case-sensitive irc commands.

PHPN00B:
There are two possibilities for your bot not showing up in your channel, the first is that it's unable to connect to the server (routing-trouble, firewall, k-lined, missing I-line, etc). The second is an issue with the tcl-libraries on your system being falsely detected as non-threaded.

Try starting your eggie with -nt option. If your bot does come online now, you've got some problems with your libraries; if not, check your serverlist aswell as any firewall/routing setup. Also try to connect to those servers using a different client.
NML_375
P
PHPN00B
Voice
Posts: 12
Joined: Tue Jan 15, 2008 5:40 pm

Post by PHPN00B »

i installed eggdrop again and the script didn't work my bot went into the channel but the name was keep changing
User avatar
DragnLord
Owner
Posts: 711
Joined: Sat Jan 24, 2004 4:58 pm
Location: C'ville, Virginia, USA

Post by DragnLord »

Some services do not accept private messages to nickserv for identifying.
Try changing
putquick "PRIVMSG nickserv :identify pass"
to
putquick "nickserv identify pass"
Post Reply