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

by caesar
Wed Apr 15, 2020 9:40 am
Forum: Other Topics
Topic: A Suggestion For This Forum
Replies: 2
Views: 3851

You got the Script Support & Releases for prety much what you said.
by caesar
Tue Apr 14, 2020 12:57 am
Forum: Script Requests
Topic: Todo-list
Replies: 5
Views: 7935

You mean channel operators that may not have access to your bot?
by caesar
Wed Apr 08, 2020 7:18 am
Forum: Script Support & Releases
Topic: adding throttle in m00nie's youtube tcl
Replies: 43
Views: 31387

Throttling is limiting the usage if the number of requests are above a certain amount in a small window time frame, basically prevent others from flooding your bot with commands to fetch results. Why don't you store variables inside an array, I mean instead of: variable user_throt 30 variable chan_t...
by caesar
Fri Apr 03, 2020 12:47 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

You tried with the change i suggested and still get the same error?
by caesar
Thu Apr 02, 2020 10:11 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

Did you check to see if you got the tls package there?
by caesar
Thu Apr 02, 2020 8:59 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

I got Ubuntu, can't tell but it should.
by caesar
Thu Apr 02, 2020 7:30 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

Locate this line: http::register https 443 [list ::tls::socket -autoservername true] and replace it with: ::http::register https 443 tls:socket and under the 'package require http' line add this code: proc tls:socket args { set opts [lrange $args 0 end-2] set host [lindex $args end-1] set port [lind...
by caesar
Thu Apr 02, 2020 5:59 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

Connect to your shell and type 'tclsh' then 'package require tls' and post here what result you get. Oh, and to exit type 'exit' and press Enter.

You should get something like this:

Code: Select all

% package require tls
1.6.7
%
by caesar
Thu Apr 02, 2020 4:26 am
Forum: Scripting Help
Topic: covid-19.tcl by blackshadow
Replies: 26
Views: 22290

The package you are looking for is 'tcl-tls' not 'tls-tcl' and you don't need to remove anything, just install it if you don't have it.

On Ubuntu last version is 1.6.7+dfsg-1.2build1.

Oh, and if you are on CentOS then use 'yum install tcl-tls'
by caesar
Sat Mar 28, 2020 4:10 pm
Forum: Script Requests
Topic: Using pushmode and putkick and having the bans set first
Replies: 6
Views: 5040

pushmode and putquick use two different queues so the only way to somewhat circumvent this is, like willyw suggested, using an utimer. As far as I remember (and looked at the last code posted on page 2) the anti-mass join script used putquick to stack bans and then the kick part is executed that als...
by caesar
Wed Mar 25, 2020 6:14 am
Forum: Eggdrop Help
Topic: set +R , -R mode on specific time for channels
Replies: 4
Views: 4796

In the linked code you have to set +moderate on the channels you want to be locked/unlocked at given times.
by caesar
Wed Mar 25, 2020 3:18 am
Forum: Scripting Help
Topic: kamus.tcl
Replies: 13
Views: 8450

Use the code I posted.
by caesar
Wed Mar 25, 2020 1:55 am
Forum: Scripting Help
Topic: kamus.tcl
Replies: 13
Views: 8450

That's most likely cos I forgot to add: setudef flag bahasa under the: package require http Edited the above code to add the line and it's working: [07:53:05] (@cez): !a [07:53:07] -Bot- Command: !a bahasa kata - Bahasanya: Padang, Aceh, Bali, Banjar, Bugis, Jawa, Lampung, Makassar, Palembang, Ponti...
by caesar
Sun Mar 22, 2020 10:53 am
Forum: Scripting Help
Topic: kamus.tcl
Replies: 13
Views: 8450

Same error? A new one? Be more specific. I took the liberty to fix your code a bit. Haven't tested anything so let me know if it works or you get any errors. namespace eval bahasa { package require http setudef flag bahasa bind pub - !a [namespace current]::public proc public {nick uhost hand chan t...
by caesar
Tue Mar 17, 2020 2:08 am
Forum: Script Support & Releases
Topic: adding throttle in m00nie's youtube tcl
Replies: 43
Views: 31387

Just remove the ! (exclamation mark) from this line:

Code: Select all

if {![m00nie::throttled2 $chan 10]} { return 0 } 
cos that's what I told him to do. :)