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

by mojado
Tue Jan 12, 2010 2:24 pm
Forum: Scripting Help
Topic: how to set flood control in this script? [[SOLVED]]
Replies: 10
Views: 7427

U ar awesome.
My script works fine again!!

Many thanxs TCL.;)
by mojado
Tue Jan 05, 2010 1:01 pm
Forum: Scripting Help
Topic: how to set flood control in this script? [[SOLVED]]
Replies: 10
Views: 7427

Many thanxs for your help TCL_no_TK... but this tcl doesn´t work anymore. :? So weird. It´s loaded, but when type !brak in channel not work. BTW, thanxs. :D # brak Quotes 1.0 by maximopc. 29/08/09 # # bind pub - !chuck pub_brak proc pub_brak {nick mask hand channel args} { global brak puthelp "...
by mojado
Mon Jan 04, 2010 9:52 pm
Forum: Scripting Help
Topic: how to set flood control in this script? [[SOLVED]]
Replies: 10
Views: 7427

Thanxs for reply.... :) The .tcl looks like this? # brak Quotes 1.0 by maximopc. 29/08/09 # # bind pub - !brak pub_brak proc pub_brak {nick mask hand channel args} { global brak puthelp "PRIVMSG $channel :[lindex $brak [rand [llength $brak]]]" } bind pub n !brak pub:brak proc pub:brak {n u...
by mojado
Thu Dec 17, 2009 11:37 am
Forum: Scripting Help
Topic: how to set flood control in this script? [[SOLVED]]
Replies: 10
Views: 7427

how to set flood control in this script? [[SOLVED]]

Hi everyone, I have a litle doubt...how to set flood control in this tcl?? brak.tcl # brak Quotes 1.0 by maximopc. 29/08/09 # # bind pub - !brak pub_brak proc pub_brak {nick mask hand channel args} { global brak puthelp "PRIVMSG $channel :[lindex $brak [rand [llength $brak]]]" } set brak {...
by mojado
Thu Jun 25, 2009 9:13 am
Forum: Eggdrop Help
Topic: I can´t configure script for ghost/release [SOLVED]
Replies: 3
Views: 3319

Many thanxs man, works 100%. :) :D
by mojado
Wed Jun 24, 2009 9:10 am
Forum: Eggdrop Help
Topic: I can´t configure script for ghost/release [SOLVED]
Replies: 3
Views: 3319

I can´t configure script for ghost/release [SOLVED]

Hi people, my actual problem is that I can not properly configure the commands ghost and release for my eggdrop. I suffer micro cuts in my ADSL connection 3 or 4 times in the day, and I need run AUTO eggdrop commands of release and ghost . Anybody can help me? Try using a script called autoidentify....
by mojado
Mon May 05, 2008 11:34 pm
Forum: Eggdrop Help
Topic: Can´t register botnick on dalnet
Replies: 1
Views: 2439

Can´t register botnick on dalnet

Hi friends, howto register the botnick on dalnet?

I try with my mask, but receive in the party line: server say invalid nick

And never show in the channel. :oops:

Need help, sorry.:(
Thanxs in advance.




P.D.: The eggdrop is in my local pc, not in shell.
by mojado
Mon Mar 03, 2008 9:36 pm
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

[SOLVED]

Image


Perfect, many thanxs for your replys. YooHoo too.
by mojado
Mon Mar 03, 2008 12:37 pm
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

Wow, thanxs Sir_Fz.(Y)

I understand, just I have a little doubt....when it may return to cast other request? In that period of time?.

Sorry for ask, and again, many thanxs men.:) :D
by mojado
Mon Mar 03, 2008 10:41 am
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

these are simple errors. the procedure is declaring the argument 'channel', but you are using the variable '$chan'. Simply change it to match. Also, I have been told not to use the argument 'args', as it has special meaning in tcl. Instead, use a different argument, like 'rest'. pub_chuck should lo...
by mojado
Mon Mar 03, 2008 9:13 am
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

Thanks for all, but doesn´t work flood control.....I can still send multiple lines without being stopped. :( :oops:



Greetings.
by mojado
Mon Mar 03, 2008 6:51 am
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

And please... try to understand just a little tiny bit about Tcl. Thanxs, but I´m not a programmer. :oops: Your .conf give me these error: http://aycu18.webshots.com/image/45897/2003582824938359107_rs.jpg But.....I solved correcting this line.... if {[throttled $chan nel 30] >= 4} { Now, I am going...
by mojado
Sun Mar 02, 2008 6:49 pm
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

Thanxs YooHoo, now, the eggdrop starts fine...but the control flood in only 3 requests every 30 seconds NOT works.:(

Again, thanxs man.:)
by mojado
Sun Mar 02, 2008 11:58 am
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

Thanxs for reply YooHoo....but not works .....Give me the same error.:? chuck.tcl # chuck Quotes 1.0 by FragUK. 14/10/07 # bind pub - !chuck pub_chuck proc pub_chuck {nick mask hand channel args} { global chuck if {[throttled $chan 30] >= 4} { puthelp "PRIVMSG $channel :[lindex $chuck [rand [ll...
by mojado
Sun Mar 02, 2008 9:38 am
Forum: Scripting Help
Topic: How to control flood in specials tcl files?
Replies: 18
Views: 9184

The file chuck.tcl now looks like this.... # chuck Quotes 1.0 by FragUK. 14/10/07 # bind pub - !chuck pub_chuck proc pub_chuck {nick mask hand channel args} { global chuck if {[throttled $chan 30] >= 4} { puthelp "PRIVMSG $channel :[lindex $chuck [rand [llength $chuck]]]" } } # user's thro...