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
Sun Aug 08, 2010 6:52 am
Forum: Script Requests
Topic: no warez script
Replies: 9
Views: 6756

download any other 'badword' script, add '!list' to the 'bad words' list and turn on bans for bad words
by tomekk
Fri May 21, 2010 9:57 am
Forum: Script Requests
Topic: Info/command database
Replies: 8
Views: 5127

# 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 eggdrop console (via telnet or...
by tomekk
Thu May 20, 2010 1:56 pm
Forum: Script Requests
Topic: Info/command database
Replies: 8
Views: 5127

check TCL archive, i've made something smiliar
http://www.egghelp.org/cgi-bin/tcl_arch ... ad&id=1333

if you want it for all users, change rights at 'bind',

try it
by tomekk
Tue May 18, 2010 4:13 am
Forum: Scripting Help
Topic: little help with this tcl pls
Replies: 1
Views: 2126

add to your config file source for 'alltools.tcl', this is a script which comes with eggdrop package

Code: Select all

source scripts/alltools.tcl
or type some other path, don't know where you have it...
by tomekk
Tue May 11, 2010 3:44 pm
Forum: Script Requests
Topic: News.tcl Adding/Deleting/Reading news items from/into a file
Replies: 5
Views: 6759

# 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 commands from this script on your chan, type in eggdrop console ...
by tomekk
Sat May 08, 2010 7:57 am
Forum: Scripting Help
Topic: Error in my tcl
Replies: 8
Views: 4935

i will just add to this post,

the code between marks "#####Code by tomekk#####" is not the same like mine from:
http://forum.egghelp.org/viewtopic.php?t=16547
by tomekk
Wed Apr 21, 2010 5:58 am
Forum: Script Requests
Topic: rsyslog output to eggdrop
Replies: 6
Views: 4408

simple example; set port 1444 set host 10.0.1.1 ################################################################## bind evnt - prerehash prerehash_proc set s_socket [socket -server socket_proc -myaddr $host $port] proc prerehash_proc { type } { global s_socket close $s_socket } proc socket_proc { so...
by tomekk
Mon Apr 19, 2010 4:07 am
Forum: Script Requests
Topic: rsyslog output to eggdrop
Replies: 6
Views: 4408

Its just like telnet or netcat, all you have to do is to write TCL socket script, based on TCP/IP.

Of course you can filter whole output.
by tomekk
Tue Apr 13, 2010 5:24 pm
Forum: Script Requests
Topic: rsyslog output to eggdrop
Replies: 6
Views: 4408

do you want to receive logs from rsyslog via TCP and post them on channel right? smth like (spam after rsyslogd connection): 23:18:37 < botty> <6>Apr 13 23:20:55 debian kernel: Kernel logging (proc) stopped. 23:18:39 < botty> <6>Apr 13 23:20:55 debian kernel: imklog 3.18.6, log source = /proc/kmsg s...
by tomekk
Tue Mar 30, 2010 11:39 am
Forum: Script Requests
Topic: Ban from a Internal Channel
Replies: 4
Views: 2661

script is working for me without any problems,
try to copy it again please

or download it from here
http://temp.tomekk.org/kickhim-0.1.tcl
by tomekk
Sat Mar 27, 2010 10:34 am
Forum: Script Requests
Topic: Ban from a Internal Channel
Replies: 4
Views: 2661

# 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 # channel with users set command_channel "#xx" # channel with !kbu command ...
by tomekk
Tue Feb 16, 2010 6:38 am
Forum: Scripting Help
Topic: [solved] Regex help - cant get my head around this
Replies: 4
Views: 3446

ignore, change:

Code: Select all

if {[regsub -all -nocase {.*ReqId:\[(.*)\].*} $arg {\1} arg]} {
to

Code: Select all

if {[regsub -all -nocase {.*again\?\s+ReqId:\[(.*)\].*} $arg {\1} arg]} {
'sleep'
http://tmml.sourceforge.net/doc/tcl/after.html

or try something with TCL timers

cheers
by tomekk
Mon Feb 15, 2010 12:37 pm
Forum: Scripting Help
Topic: [solved] Regex help - cant get my head around this
Replies: 4
Views: 3446

set the_nick "tomekk" ############################################## bind pubm -|- "*" check_line proc check_line { nick uhost hand chan arg } { global the_nick if {$the_nick == $nick} { if {[regsub -all -nocase {.*ReqId:\[(.*)\].*} $arg {\1} arg]} { putquick "PRIVMSG $chan...
by tomekk
Sat Feb 13, 2010 3:49 pm
Forum: Script Requests
Topic: Invitation/SAJOIN Script :)
Replies: 2
Views: 3428

some time ago i wrote something similar eggdrop part (you can add some regexps in this proc, whatever): # Author: tomekk # e-mail: tomekk/@/oswiecim/./eu/./org # home page: http://tomekk.oswiecim.eu.org/ # # Version 0.2 # # This file is Copyrighted under the GNU Public License. # http://www.gnu.org/...
by tomekk
Tue Jan 05, 2010 12:09 pm
Forum: Scripting Help
Topic: http tutorial
Replies: 3
Views: 3157