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

by haferbrei
Sat Jul 27, 2024 7:11 am
Forum: Scripting Help
Topic: help chatGTP
Replies: 1
Views: 3387

Re: help chatGTP

It would be best if you could also post the init routine, how the eggdrop is addressed in the channel, and which eggdrop you are using.
by haferbrei
Sun Oct 24, 2021 6:44 pm
Forum: Scripting Help
Topic: Top 10 adding
Replies: 0
Views: 16858

Top 10 adding

Hi! I've a trivial gaming-script. How can i add a score to the users, who are gaming? bind PUBM -|- * mondgesichtparser set mond(sprueche1) { "WAHNSINN! Ein Punkt! Was soll ich denn jetz damit? Oder wird das mal ein Mondgesicht? " "Hals und Bauch hat er auch, Arme noch und Beine dran,...
by haferbrei
Sun Oct 24, 2021 6:35 pm
Forum: Script Requests
Topic: IMDB
Replies: 10
Views: 7504

Re: IMDB

BLaCkShaDoW wrote:BlackIMDB now available at 100% discount (free) for a period of time.
Can i change the language of the Plot?
by haferbrei
Tue Aug 24, 2021 6:51 pm
Forum: Script Support & Releases
Topic: [Solved] m00nie eggdrop URL title grabbing script
Replies: 16
Views: 14408

v1.4 now include the decoding as suggested by CrazyCat :) Thanks for the point in the right direction CrazyCat wouldn't have thought of that so cheers Cheers m00nie Thank you m00nie! I had to add one more character: "ő" "\&#337 ;" The script works perfectly thank you for you...
by haferbrei
Tue Jun 08, 2021 8:24 pm
Forum: Scripting Help
Topic: google sheets api
Replies: 3
Views: 5045

solved

I have not found a search function in the api.
So I download the sheet as json and then do a simple search in the text file.
by haferbrei
Sat Jun 05, 2021 5:58 pm
Forum: Scripting Help
Topic: google sheets api
Replies: 3
Views: 5045

I tried with the customsearch but I can only add web pages and not custom google sheets to the search.
by haferbrei
Thu Jun 03, 2021 8:52 pm
Forum: Scripting Help
Topic: google sheets api
Replies: 3
Views: 5045

google sheets api

Have any of you used TCL to search a Google Sheet for a string via Google api?

I found only this:

Code: Select all

POST https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/developerMetadata:search
I would like to query this via tcl, but I am getting nowhere :-(
by haferbrei
Fri May 14, 2021 9:32 pm
Forum: Scripting Help
Topic: Counting points
Replies: 0
Views: 4046

Counting points

How do the four user points add up, if they get the moonface? The number of faces is counted already. bind PUBM -|- * mondgesichtparser set mond(sprueche1) { "WAHNSINN! Ein Punkt! Was soll ich denn jetz damit? Oder wird das mal ein Mondgesicht? " "Punkt Punkt Punkt... Ach so! Mondgesi...
by haferbrei
Mon May 10, 2021 10:03 pm
Forum: Eggdrop Help
Topic: Eggdrop v1.9.0 Stable Release
Replies: 2
Views: 3658

whats new what we can use?
by haferbrei
Sat May 08, 2021 12:56 am
Forum: Eggdrop Help
Topic: Need help with bot.conf Please
Replies: 2
Views: 3193

its ok.
by haferbrei
Mon Apr 19, 2021 4:40 pm
Forum: Scripting Help
Topic: thread
Replies: 2
Views: 3285

Re: thread

willyw wrote:
I'm fuzzy on this - been a long time - but you can use the
open
command with pipes to deal with this.
i tried it with &, but it doesnt help at all. I get the message (!) timer drift -- spun 2 minutes
by haferbrei
Fri Apr 16, 2021 10:24 pm
Forum: Scripting Help
Topic: Output to channel
Replies: 1
Views: 2547

How can I putquick "PRIVMSG $chan :$pack arrives." in the channel before exec is executed? currently it is not output until exec is done. set binary {/etc/eggdrop/bashscript.sh} putquick "PRIVMSG $chan :$pack arrives." foreach line [split [exec $binary $pack] "\n"] { pu...
by haferbrei
Mon Apr 12, 2021 7:14 pm
Forum: Scripting Help
Topic: thread
Replies: 2
Views: 3285

thread

I want to run a bash script that packs folders. This takes a little time and during this time the bot is not responsive.
How can I move the script to a thread?

Code: Select all

set zipper [thread::create {
puts "Starting zipper thread"
exec bash.script
}]
Unfortunately, this does not work.
by haferbrei
Sat Mar 20, 2021 4:46 am
Forum: Scripting Help
Topic: inotify directory
Replies: 2
Views: 3057

u need only the tcl-ionotify modul.
thats it
by haferbrei
Mon Mar 08, 2021 7:36 pm
Forum: Scripting Help
Topic: Output to channel
Replies: 1
Views: 2547

Output to channel

How can I output the intermediate output directly from a script? Currently it is only output after the script has finished. Actually i call a shell script to execute a lot of things. set binary {./script.sh} foreach line [split [exec $binary $pack $pack2 $nick] "\n"] { putquick "PRIVM...