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.

i need tcl steps

Old posts that have not been replied to for several years.
Locked
n
nemo
Voice
Posts: 7
Joined: Sun Sep 05, 2004 2:10 am
Location: KuwaiT
Contact:

i need tcl steps

Post by nemo »

Hello

i have eggdrop online but i need tcl script, how setup tcl and what are the steps ?
nemo
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Re: i need tcl steps

Post by ^DooM^ »

nemo wrote:Hello

i have eggdrop online but i need tcl script, how setup tcl and what are the steps ?
What sort of TCL Script do you require?

Have you looked in our Archive at all the scripts available?

To load a tcl onto your bot you need put the script into the scripts directory and tell your eggdrop where to find it by adding

Code: Select all

source scripts/mychosen.tcl
where mychosen.tcl is the name of the tcl that you are loading
at the bottom of eggdrop.conf

here is a link to our tcl archive

Click Me!

Hope this helps :wink:
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
n
nemo
Voice
Posts: 7
Joined: Sun Sep 05, 2004 2:10 am
Location: KuwaiT
Contact:

Post by nemo »

i want bot identify it self by NickServ chanserv and lock the mode +R

http://www.egghelp.org/tclhtml/3478-4-6-0-1.htm

i download tcl script but winzip does not support, what program i need to open tcl script ?
nemo
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

If you don't have a suitable software, just upload it onto your shell, then
'tar zxvf file.name.zip' and unzip it. Then go ahead and use pico, download it whatever, modify it and use it.

If you want to identify on connection to the IRC server you wouldn't really need such a script, just lookup the word "init-server" in the forums search option and you can modify that small piece of code to identify to nickserv, chanserv and make your bot set +R to its nick.
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
n
nemo
Voice
Posts: 7
Joined: Sun Sep 05, 2004 2:10 am
Location: KuwaiT
Contact:

Post by nemo »

Code: Select all

set mynet "irc.austnet.org" 
set myhomechan "#Adult_Flirt_Trivia" 
set mycserv "ChanOp" 
set mynserv "nickop@austnet.org" 
set mypasswd "sup3r_s3cr3t_passW3rd" 
set myidmsg "IDENTIFY $mypasswd" 

##  Here are the server mod variables: 

bind evnt - init-server evnt:init_server 
proc evnt:init_server {type} { 
global botnick mynserv myidmsg 
 putserv "MODE $botnick +iw-sv" 
 putserv "PRIVMSG $mynserv :$myidmsg" 
} 

bind evnt - connect-server evnt:connect_server 
proc evnt:connect_server {type} { 
global botnick mynserv myidmsg 
 putserv "MODE $botnick +iw-sv" 
 putserv "PRIVMSG $mynserv :$myidmsg" 
}
this help me work fine

thanks alot YooHoo ]Kami[ and awyeah :D
nemo
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

nemo wrote: i download tcl script but winzip does not support, what program i need to open tcl script ?
I use winrar to open linux archives in GUI, it supports all needed: tar, gz, and bz2. Remember, if you extract .tar(.*) files not within a unix enviroment, some file flags may be lost (not relevant, when all files have default ^^).
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
Locked