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

by horgh
Sun Sep 24, 2017 4:08 pm
Forum: Script Support & Releases
Topic: Birdy (OAuth, Twitter, Tweets&MegaHAL v6.01d) Jun12,2013
Replies: 305
Views: 432327

Regarding the truncated tweet: Updating the script to use extended tweet mode may solve that: https://dev.twitter.com/overview/api/upcoming-changes-to-tweets You'd need to find wherever it is making the HTTP requests to retrieve tweets and pass an additional argument of "tweet_mode=extended&quo...
by horgh
Sun Jul 04, 2010 10:03 pm
Forum: Scripting Help
Topic: Line deletion in a file [solved]
Replies: 10
Views: 6022

You are closing the file and returning inside the while loop for reading which is probably not what you want. Your file gets cleared when a ban is added as you are opening it with "w". To add a line to the end of the file you should open with "a". This is maybe what is causing th...
by horgh
Sun Jul 04, 2010 8:16 pm
Forum: Scripting Help
Topic: [solved]how to read a text file top to bottom ??
Replies: 2
Views: 2563

# Rls: track_list.v1.0.tcl # Date: 19/06/10 # Coded by: SaNcTuM # Contact: #a.b.inner-sanctum@EFNET ################################### bind PUB - -tlist SaNcTuM_tracks set track_list "/home/eggdrop/requests/track_lists" proc SaNcTuM_tracks {nick uhost hand chan text} { set number [lindex...
by horgh
Sun Jul 04, 2010 8:07 pm
Forum: Scripting Help
Topic: Line deletion in a file [solved]
Replies: 10
Views: 6022

Well you'll have to pastebin the current script so we can look.
by horgh
Sat Jul 03, 2010 10:22 pm
Forum: Scripting Help
Topic: Line deletion in a file [solved]
Replies: 10
Views: 6022

bind pub o|o !uban uban proc uban {nick host hand chan text} { set ban [lindex [split $text] 0] set fid [open bans.txt] set records [read -nonewline $fid] close $fid set records [split $records \n] set record [lsearch $records $ban*] if {$record > -1 && [ischanban $ban $chan]} { set records...
by horgh
Fri May 21, 2010 4:56 pm
Forum: Script Support & Releases
Topic: [reward] AI for Eggdrop
Replies: 1
Views: 5501

bMotion (http://www.bmotion.net:8000/bmotion) is the best one that I know of.

Though I don't know if it has multilanguage support.
by horgh
Tue May 18, 2010 3:16 pm
Forum: Script Support & Releases
Topic: Twitter client with OAuth + Twitter OAuth library
Replies: 0
Views: 4562

Twitter client with OAuth + Twitter OAuth library

Hi I've added OAuth authentication to the Twitter script fedex and I wrote. The OAuth support is in a separate file and is usable as a library. The script itself will report all tweets seen by a single twitter account and gives the ability to interact with that account, such as sending tweets, etc. ...
by horgh
Wed May 12, 2010 5:16 pm
Forum: Script Support & Releases
Topic: pixseen v1.0
Replies: 7
Views: 11528

Thanks for the great script! Got it loaded on all my bots. If you do another release I have a couple minor requests/suggestions! :oops: - some kind of status of db like size, num of nicks - help/usage if just !seen or some such. I see there is some code here for this but bot doesn't say anything whe...
by horgh
Sat Feb 13, 2010 3:14 pm
Forum: Script Support & Releases
Topic: rssnews tcl size
Replies: 1
Views: 2727

that's the memory usage of your bot. that script or one of the other scripts on your bot are not managing memory very well it looks like. if it keeps growing it sounds like a memory leak!

i would switch to a different script.