egghelp.org community Forum Index
[ egghelp.org home | forum home ]
egghelp.org community
Discussion of eggdrop bots, shell accounts and tcl scripts.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

identify script
Goto page 1, 2, 3  Next
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive
View previous topic :: View next topic  
Author Message
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 9:23 pm    Post subject: identify script Reply with quote

i am using eggdrop 1.6.7 in dalnet

i have used the following identify scripts, these loads successfully but dont work at all.
nickserv.tcl
dalnet.tcl
identify.tcl
chanserv.tcl

can you please help me se if you can just paste one for me here

thanks alot
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 9:31 pm    Post subject: Reply with quote

what is the command to identify?

"/msg nickserv identify <pass>" ???
_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
awyeah
Revered One


Joined: 26 Apr 2004
Posts: 1580
Location: Switzerland

PostPosted: Sun Dec 19, 2004 9:31 pm    Post subject: Reply with quote

A simpler solution:

Code:

#Set your bot's nick password
set nickpass "damn.seckzi"

bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
 global botnick nickpass
 putquick "PRIVMSG chanserv@services.dal.net :IDENTIFY $botnick $nickpass" -next
}


Or you can simply use this:

Code:

#Set your bot's nick password
set nickpass "damn.seckzi"

set init-server { putquick "PRIVMSG chanserv@services.dal.net :IDENTIFY $botnick $nickpass" -next }


Put this in a .tcl file, upload it and rehash/restart your bot or put it in your bot's .conf file in a new line, where ever it should definately work.
_________________
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 9:36 pm    Post subject: Reply with quote

i will try your codes and let you know
thanks alot
Back to top
View user's profile Send private message
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 9:54 pm    Post subject: Reply with quote

i tried both the above scripts but not working
the first one is showing error
while the second one is loaded but not working.
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 9:57 pm    Post subject: Reply with quote

Try this:

Code:
# Set this variable to the registered nick that you are going to use.
set nsnick ""

# Set this variable to the password of the registered nick you are using.
set nickpass ""

# Set this variable to the name of the nickserv bot on your network.
set nsname ""

# Set this variable to the command used to identify yourself with nickserv.
set identcomm ""


bind evnt - init-server my:procedure

proc my:procedure {type} {
 global nsnick nickpass nsname identcomm
  putserv "PRIVMSG $nsname :$identcomm $nsnick $nickpass"   
}
putlog "Perform loaded"
return "Perform loaded"

_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 10:03 pm    Post subject: Reply with quote

not very clear about
set nsname
set identcomm

please tell me more about it
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 10:03 pm    Post subject: Reply with quote

nsname is like nickserv or ns
identcomm is like identify or authenticate
_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 10:08 pm    Post subject: Reply with quote

can you please give me some examples of

nsname
identcomm

my bot name is zaida
i am on dalnet
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 10:14 pm    Post subject: Reply with quote

nsname=chanserv@services.dal.net
identcomm=identify
_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 10:15 pm    Post subject: Reply with quote

how do you identify yourself? like /msg nickserv identify <pass>?
_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
zaida
Voice


Joined: 19 Dec 2004
Posts: 8

PostPosted: Sun Dec 19, 2004 10:28 pm    Post subject: Reply with quote

yes it is /msg nickserv identify <pass>

thanks alot again
Back to top
View user's profile Send private message
toefraz
Halfop


Joined: 01 Jul 2004
Posts: 44

PostPosted: Sun Dec 19, 2004 10:29 pm    Post subject: Reply with quote

take out $nsnick out of the script then
_________________
When the going gets tough...Make lemonade!!!
Back to top
View user's profile Send private message
awyeah
Revered One


Joined: 26 Apr 2004
Posts: 1580
Location: Switzerland

PostPosted: Sun Dec 19, 2004 10:37 pm    Post subject: Reply with quote

zaida wrote:
i tried both the above scripts but not working
the first one is showing error
while the second one is loaded but not working.


Error what error? This piece of code is fine and works great with me.

I am guessing you have not setup your bot's .conf file properly. Because you have tried more than 5 scripts and the simple init-server is also not working with you. So either your bot is not setup properly, you haven't restart it, one or some of your loaded tcl scripts is clashing or generating errors.
_________________
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
awyeah
Revered One


Joined: 26 Apr 2004
Posts: 1580
Location: Switzerland

PostPosted: Sun Dec 19, 2004 10:40 pm    Post subject: Reply with quote

toefraz wrote:
Try this:

Code:
# Set this variable to the registered nick that you are going to use.
set nsnick ""

# Set this variable to the password of the registered nick you are using.
set nickpass ""

# Set this variable to the name of the nickserv bot on your network.
set nsname ""

# Set this variable to the command used to identify yourself with nickserv.
set identcomm ""


bind evnt - init-server my:procedure

proc my:procedure {type} {
 global nsnick nickpass nsname identcomm
  putserv "PRIVMSG $nsname :$identcomm $nsnick $nickpass"   
}
putlog "Perform loaded"
return "Perform loaded"


And this is basically the same. You are just setting more variables. And there is no need to return, a putlog comment.
_________________
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive All times are GMT - 4 Hours
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Forum hosting provided by Reverse.net

Powered by phpBB © 2001, 2005 phpBB Group
subGreen style by ktauber