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.

Search found 255 matches

by tomekk
Sat Jan 08, 2011 6:15 am
Forum: Script Requests
Topic: I need someone to help me please
Replies: 10
Views: 7042

scared 'admin', anyway.... # Author: tomekk # e-mail: tomekk/@/oswiecim/./eu/./org # home page: http://tomekk.oswiecim.eu.org/ # # Version 0.1 # # This file is Copyrighted under the GNU Public License. # http://www.gnu.org/copyleft/gpl.html # if you want to use this script on your chan, type in eggd...
by tomekk
Fri Jan 07, 2011 6:36 am
Forum: Script Requests
Topic: I need someone to help me please
Replies: 10
Views: 7042

ncgi is a TCL module which is a part of TCLLIB,
install just TCLLIB on your system
by tomekk
Thu Jan 06, 2011 7:12 pm
Forum: Script Requests
Topic: Cycle every 15 minutes
Replies: 2
Views: 2708

hmm,

'bind time' or some timer with:

Code: Select all

channel set $chan +inactive                                                               
channel set $chan -inactive 
should do the work
by tomekk
Thu Jan 06, 2011 7:07 pm
Forum: Script Requests
Topic: I need someone to help me please
Replies: 10
Views: 7042

I have some old voobly script, I've made some fixes and it should work. Script is kinda stupid and not flexible, there is no chance to add some extra scenarios without tweaking the source code, but for your purpose it should be enough. In order to use this script you have to install 'tcllib' because...
by tomekk
Sat Dec 11, 2010 9:30 am
Forum: Script Requests
Topic: teamspeak
Replies: 7
Views: 4509

i think python project is gone, can't find it ... but, you can look into this:
http://freshmeat.net/projects/libtbb/?b ... _id=220603
http://teambb.sourceforge.net/
by tomekk
Fri Dec 03, 2010 10:01 pm
Forum: Script Requests
Topic: teamspeak
Replies: 7
Views: 4509

You have to implement TS2 protocol.
There is no chance to join to the channel with telnet commands.

There was some python code in the net with sample TS2 bot library, you can
try to find it and rewrite it to TCL.
Some time ago i've made this with PHP.
by tomekk
Sun Oct 17, 2010 4:54 pm
Forum: Script Requests
Topic: Info/command database
Replies: 8
Views: 5079

yap, cause the files on the disk are case sensitive, try to change: set trigger_name [lindex $input_data 1] to: set trigger_name [string tolower [lindex $input_data 1]] lemme know about it, if this will not work then i will check it on some egg. // anyway, thanks for info - this is a bug ;) [a-zA-Z]...
by tomekk
Sun Oct 17, 2010 4:45 pm
Forum: Script Requests
Topic: Info/command database
Replies: 8
Views: 5079

change:

Code: Select all

set trigger_regexp {^\![a-z]+$}
to:

Code: Select all

set trigger_regexp {^\![a-zA-Z0-9]+$}
it this case, commands will be case sensitive,
if you want to make !TEST same as !test you have to tweak some code inside this script
by tomekk
Sat Sep 11, 2010 1:03 pm
Forum: Script Requests
Topic: sending files to a password protectedwebpage
Replies: 1
Views: 2150

Upload files to site, via form? I think will be better via FTP, you can use a module from tcllib. man n ftp ftp(n) ftp client ftp(n) _____________________________________________________________________________________________________ NAME ftp - Client-side tcl implementation of the ftp protocol SYN...
by tomekk
Fri Aug 27, 2010 5:03 am
Forum: Script Requests
Topic: Crontab sort out file
Replies: 6
Views: 4355

yes, the result will not be the same, cause the number of arguments is bigger than before, you didnt't write it before...

change -f5- to -f6- but in this case this will not work for previous example,
by tomekk
Fri Aug 27, 2010 4:33 am
Forum: Script Requests
Topic: Crontab sort out file
Replies: 6
Views: 4355

this is an example, test.txt is a source file, after '>' is a destination file, you can put there whatever you want
by tomekk
Fri Aug 27, 2010 3:30 am
Forum: Script Requests
Topic: Crontab sort out file
Replies: 6
Views: 4355

script? run simple shell command: tomekk@tweety:~# cat test.txt 1 10/19/2009 16:41:19 #shishkebab [17:21] <+saethr> usa owns kuwait | [17:21] <+Ropaz^> lol where do you know that? | [17:21] <+Ropaz^> kuwait is a state on iraq | [17:22] <+Ropaz^> its like Lyon in france 2 10/19/2009 16:41:19 #shishke...
by tomekk
Wed Aug 25, 2010 12:18 pm
Forum: Script Requests
Topic: unreal ircd eggdrop bot script
Replies: 4
Views: 4419

hmm, i lost it somewhere, try this one: bind pub -|- .vhost info_proc bind msgm -|- "*" prv_cmds proc info_proc { nick uhost hand chan arg } { putquick "PRIVMSG $chan :$nick: use the syntax /msg bot changevhost newv.v.host" } proc prv_cmds { nick uhost hand arg } { set input_args...
by tomekk
Wed Aug 25, 2010 4:27 am
Forum: Script Requests
Topic: unreal ircd eggdrop bot script
Replies: 4
Views: 4419

oke, if i remember good i have script like this one on my PC @ home, i'll check it when i'll be back.
by tomekk
Tue Aug 24, 2010 2:16 pm
Forum: Script Requests
Topic: unreal ircd eggdrop bot script
Replies: 4
Views: 4419

but, what is the command which bot should send to the IRC server?