| View previous topic :: View next topic |
| Author |
Message |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 9:23 pm Post subject: identify script |
|
|
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 |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 9:31 pm Post subject: |
|
|
what is the command to identify?
"/msg nickserv identify <pass>" ??? _________________ When the going gets tough...Make lemonade!!! |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Dec 19, 2004 9:31 pm Post subject: |
|
|
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 |
|
 |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 9:36 pm Post subject: |
|
|
i will try your codes and let you know
thanks alot |
|
| Back to top |
|
 |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 9:54 pm Post subject: |
|
|
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 |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 9:57 pm Post subject: |
|
|
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 |
|
 |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 10:03 pm Post subject: |
|
|
not very clear about
set nsname
set identcomm
please tell me more about it |
|
| Back to top |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 10:03 pm Post subject: |
|
|
nsname is like nickserv or ns
identcomm is like identify or authenticate _________________ When the going gets tough...Make lemonade!!! |
|
| Back to top |
|
 |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 10:08 pm Post subject: |
|
|
can you please give me some examples of
nsname
identcomm
my bot name is zaida
i am on dalnet |
|
| Back to top |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 10:14 pm Post subject: |
|
|
nsname=chanserv@services.dal.net
identcomm=identify _________________ When the going gets tough...Make lemonade!!! |
|
| Back to top |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 10:15 pm Post subject: |
|
|
how do you identify yourself? like /msg nickserv identify <pass>? _________________ When the going gets tough...Make lemonade!!! |
|
| Back to top |
|
 |
zaida Voice
Joined: 19 Dec 2004 Posts: 8
|
Posted: Sun Dec 19, 2004 10:28 pm Post subject: |
|
|
yes it is /msg nickserv identify <pass>
thanks alot again |
|
| Back to top |
|
 |
toefraz Halfop

Joined: 01 Jul 2004 Posts: 44
|
Posted: Sun Dec 19, 2004 10:29 pm Post subject: |
|
|
take out $nsnick out of the script then _________________ When the going gets tough...Make lemonade!!! |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Dec 19, 2004 10:37 pm Post subject: |
|
|
| 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 |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Dec 19, 2004 10:40 pm Post subject: |
|
|
| 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 |
|
 |
|