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

by speechles
Wed Mar 20, 2013 6:26 pm
Forum: Other Topics
Topic: Voting and Reputation, How do you feel about it?
Replies: 7
Views: 2856

Exactly. There is no guarantee. But you are limited by quota. You only have so many votes per day to use. Say 5 perhaps. Do you spend these every day as down votes for same people (ie, you are a sad sad person), or do you spend them happier on up votes to deserving posts/scripts/etc? This is where m...
by speechles
Wed Mar 20, 2013 6:18 pm
Forum: Other Topics
Topic: Voting and Reputation, How do you feel about it?
Replies: 7
Views: 2856

sounds like Reddit, not a forum... Reddit doesn't work quite the same way. It itself is more of a message board, like an old bbs than a forum. You would have 2 ways to sort the forum. The normal way, which displays everything by age. Newest floats to the top. We know how this works. It promotes bum...
by speechles
Mon Mar 18, 2013 9:03 pm
Forum: Other Topics
Topic: Voting and Reputation, How do you feel about it?
Replies: 7
Views: 2856

Voting and Reputation, How do you feel about it?

Just today it happened again. Another script download from the tcl archive here is found to have detrimental flaws. Which script, which flaw isn't important. What is.. is what this site lacks, that every other site in the world has. This is 2013 isnt it? So here is the jist: Imagine, if you will, th...
by speechles
Wed Mar 13, 2013 2:14 am
Forum: Script Support & Releases
Topic: Birdy (OAuth, Twitter, Tweets&MegaHAL v6.01d) Jun12,2013
Replies: 305
Views: 433311

Hello! Script work fine with GET requests. +/-follow,+/-app,!followers,!mymenitons command run and authorize correctly. But, !tweet someone do not work with error: OAuth failed: (401) Error: could not authenticate with oauth.; Request: /1/statuses/update.json ( ok ) Why? PS consumer_key/secret and ...
by speechles
Tue Mar 12, 2013 1:25 pm
Forum: Script Requests
Topic: auto nick change
Replies: 6
Views: 4955

why in the hell would you complicate the code that much and make a foreach to create bindings? just put a damn BIND CRON.. bind cron - "*/15 * * * *" change:nick Seriously? You don't know why??! It's clearly obvious what I've done there. Let me simplify it into the simplest terms. The mos...
by speechles
Mon Mar 11, 2013 9:08 pm
Forum: Script Requests
Topic: auto nick change
Replies: 6
Views: 4955

bind time - "00 * * * *" change:nick set temp(nick) { "nick111" "nick222" } proc change:nick {min hour day month year} { global temp set randnick [lindex $temp(nick) [rand [llength $temp(nick))]]] if {$randnick != ""} { if {[string match -nocase $::botnick $r...
by speechles
Mon Mar 11, 2013 8:33 pm
Forum: Script Support & Releases
Topic: Earthquakes v1.1 (Egghelp Version) July 2, 2o12
Replies: 11
Views: 19025

Any chance this can be updated? The website has some changes and this script no longer reports as it did. It's more than a simple url correction so it's beyond my repair. tia. Actually.. um.. it is updated (silently updated two weeks ago or so). USGS no longer offers csv updates. Instead they offer...
by speechles
Sat Mar 09, 2013 8:02 pm
Forum: Scripting Help
Topic: [SOLVED] need help match something from list1 to list2
Replies: 4
Views: 3880

set fp [open "temp" r] set data [split [read -nonewline $fp] \n] close $fp foreach a [array names nlu] { foreach b $nlu($a) { if {[string length $b]} { set lpos 0 while {[set pos [lsearch -exact -start $lpos $data $b]]>-1} { putlog "$b == [expr {$pos+1}] -- matched \002[lindex $data ...
by speechles
Wed Feb 27, 2013 11:05 pm
Forum: Script Requests
Topic: ChanStatus.tcl
Replies: 3
Views: 3767

The eggdrop can only display informations provided by the ''/msg X command''. https://cservice.undernet.org/live/ I think the chap meant, something similar to visiting the above site, and logging in. Then reading info from the site once logged in. Eggdrop can do this. She is very nimble. If you can...
by speechles
Fri Feb 22, 2013 2:47 pm
Forum: Script Requests
Topic: Diggtitles.tcl + httpS
Replies: 11
Views: 11671

Windrop eh? Then it's freakishly simple to get tls working. It's just that, that IS NOT how you add it... haw.. quite comical.. it isn't a module.. :lol: Here is how you actually get tls to work on a windrop: 1) Download tls1.6 for windows . 2) Extract this to your c:\windrop\lib\tcl X folder. If yo...
by speechles
Wed Feb 20, 2013 2:52 pm
Forum: Script Requests
Topic: NMAP
Replies: 11
Views: 9979

Caeser is right. An attacker can compromise your bot pretty immediately otherwise. For example, the code below: !nmap [return "[adduser nick] [chattr nick +fgmnov]"] Here we show that using [exec] over unsanitized user input will let "nick" takeover your bot. Using the !nmap line...
by speechles
Sun Feb 17, 2013 3:02 pm
Forum: Script Support & Releases
Topic: Birdy (OAuth, Twitter, Tweets&MegaHAL v6.01d) Jun12,2013
Replies: 305
Views: 433311

I have updated my eggdrop version and now encounter this problem: conflicting versions provided for package "base64": 2.3.2, then 2.4.1 while executing "package provide base64 2.4.1" (file "scripts/base64.tcl" line 379) invoked from within "source scripts/base64.t...
by speechles
Sun Feb 17, 2013 3:41 am
Forum: Script Support & Releases
Topic: Birdy (OAuth, Twitter, Tweets&MegaHAL v6.01d) Jun12,2013
Replies: 305
Views: 433311

Hey speechles - is it possible to add in addition to this the Date and time the tweet was written to the file at the end of each tweet? Sure... Add this in the config section of the script: # Add your timestring which the file saving portion will use # to create it's timestamps set twitter(filetime...
by speechles
Sat Feb 16, 2013 5:53 pm
Forum: Script Requests
Topic: nicklist.tcl -> hide bot
Replies: 4
Views: 4428

Re: nicklist.tcl -> hide bot

hello, at first sorry for my bad english! it's possible to hide the eggdrop nick in the nicklist.txt? regards rené The eggdrop's current nickname is always the first in the nicklist it returns. This would be index position 0. So you just need to skip this first position with a "list range"...
by speechles
Wed Feb 13, 2013 9:54 pm
Forum: Script Support & Releases
Topic: imdbapi.com v1
Replies: 47
Views: 58065

Now !imdb matrix does not work but !imdb Matrix does. Same with the other fix mentioned above by adding A-Z to the already a-z0-9 Anyone a solution? The issue here is the fellow was running into issues with characters in the url path. He wasn't using http packages handy http::formatQuery option. In...