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 77 matches

by Nimos
Mon Feb 25, 2013 9:33 pm
Forum: Script Requests
Topic: ChanOP history
Replies: 2
Views: 2938

a few questions: nick2 has joined the channel, and regains OP status at 14:00PM 20.02.2013 (having the same ident@host , if not he will be saved with his current ident@host) is that the script's job, or do you have that already? secondly, if someone joins with another ident@host, and then is opped b...
by Nimos
Sun Feb 24, 2013 11:06 pm
Forum: Scripting Help
Topic: Replace line in the file
Replies: 2
Views: 2948

set text [join [lreplace [split $text "\n"] 3 3 "Do you love dogs?"] "\n"]
by Nimos
Sun Feb 24, 2013 5:38 pm
Forum: Script Requests
Topic: Reporting on new data
Replies: 4
Views: 4114

I'm not sure what you mean with your first question, it will report blocks from the "recent blocks" table at the link you gave. It will probably work on any other page with the exact same layout, if there are any, I mainly added the link into the configuration for the case that the address...
by Nimos
Sat Feb 23, 2013 11:18 pm
Forum: Script Requests
Topic: Reporting on new data
Replies: 4
Views: 4114

this is pretty old, but there wasn't anything else to do here and I wanted to do something... ### # Settings set blocks_url "http://eligius.st/~wizkid057/newstats/" set blocks_channel "#ilikeblocks" set blocks_interval 5 # end of settings ## package require http; proc getBlocks {...
by Nimos
Wed Dec 05, 2012 12:00 pm
Forum: Scripting Help
Topic: HELP! Regexp/Regsub
Replies: 4
Views: 3864

if {[regexp -nocase -- {^!.* .*$} $text]} { set trigger [lindex [split $text] 0] set search [lrange [split $text] 1 end] regsub -all -- {\*} $search % search set searchvar [list] foreach word $search { lappend searchvar db.`searchcolum` like '%[mysqlescape $word]%'" } do sql stuff like getting...
by Nimos
Sun Apr 24, 2011 6:17 am
Forum: Script Requests
Topic: 5 Lines MSG
Replies: 3
Views: 3697

Thanks for your comment, speechless. You pointed out some flaws in my script, but it isn't as bad as you understood it. My script only answers, if someone writes 5 lines in a row, without being interrupted by another person (I think thats what OP wanted.). Notice, that my array is fivelines(nick|$ch...
by Nimos
Sat Apr 23, 2011 8:13 pm
Forum: Script Requests
Topic: 5 Lines MSG
Replies: 3
Views: 3697

### # 5lines.tcl ## # # OUTDATED VERSION, USE THE SCRIPT BELOW! # ## # Settings # # The channels the script should be active in, seperated by spaces # (leave empty for all channels) set fivelines(channels) "" # # How many lines to write, to get an answer set fivelines(count) 5 # # # A lis...
by Nimos
Sat Jan 22, 2011 10:26 am
Forum: Script Requests
Topic: report what they tell the bot
Replies: 4
Views: 3223

just replace the channel in the line

Code: Select all

set chan "#..."
with your nickname/the owners nickname
by Nimos
Sun Oct 03, 2010 2:31 pm
Forum: Eggdrop Help
Topic: [Windrop]dequeue_sockets()errno = 128
Replies: 13
Views: 9427

Well, I have exactly the same problem. I am using my Windrop installation for script-testing for a long time without errors until today. I googled a bit, but didnt find any of the solutions helpful in my case... Now im reading this Threat, and on willyws post I just put .jump irc.freenode.net into m...
by Nimos
Thu Mar 19, 2009 12:48 pm
Forum: Scripting Help
Topic: drag ip from nick
Replies: 4
Views: 3033

but, most irc networks cloak the real host of their users, so it might not work like that...
by Nimos
Tue Feb 24, 2009 4:19 pm
Forum: Script Requests
Topic: Help script
Replies: 2
Views: 2455

### # Help script ### # ### # Config ### # ## # Helpfile: set helpfile(file) "omfg_its_a_helpfile.txt" ## # ## # Output Target (private=0 channel=1) set helpfile(target) 0 ## # ## # Output Method (either "PRIVMSG" or "NOTICE") set helpfile(method) "NOTICE" ##...
by Nimos
Wed Jan 07, 2009 3:51 pm
Forum: Script Requests
Topic: Profile Script - Modification Request
Replies: 5
Views: 3436

ok there I need the help of someone else... :oops:

is there something like "file existst -nocase", or do we have to set all the filenames with string tolower?
by Nimos
Wed Jan 07, 2009 3:40 pm
Forum: Script Requests
Topic: $botnick command
Replies: 9
Views: 5087

bind pubm o|o "$botnick op" pub_lol_op_2

proc pub_lol_op_2 {nick host hand chan text} {
pub_lol_op "$nick $host $hand $chan [lrange [split $text] 2 end]"
}

do this for every lol script bind -.-
by Nimos
Wed Jan 07, 2009 7:24 am
Forum: Script Requests
Topic: Clones
Replies: 4
Views: 3008

how do you define a "clone"?
by Nimos
Wed Jan 07, 2009 7:22 am
Forum: Scripting Help
Topic: i think im in the right place! need script help
Replies: 4
Views: 3723

I started scripting by reading other scripts, and using them as kind of template when writing my first own scripts...

Whenever I needed something I didnt know how to do, I looked in scripts I had, and tried to understand it...it is imho the best way of learning TCL, but it takes long ;D