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

by Pauschi
Sun Nov 08, 2020 1:15 pm
Forum: Eggdrop Help
Topic: Logging chat
Replies: 1
Views: 3791

Logging chat

Hey guys

for now the eggdrop logs the chat from

old
to
new

so the newest is always on bottom.

1
2
3
4
5
6
7
8
9

is there any way, that the eggdrop is saving the chat in reverse mode?

new
old

9
8
7
6
5
4
3
2
1

?

Cheers
by Pauschi
Mon Aug 17, 2020 5:50 pm
Forum: Script Requests
Topic: PHP > Connect through Eggdrop Telnet and send a message
Replies: 1
Views: 2816

PHP > Connect through Eggdrop Telnet and send a message

Hello,

is there any PHP Telnet script available that logs in to my Eggdrop with telnet/login/password and sends a msg command?

.msg #Q it worked!

then disconnect again ;-)
by Pauschi
Thu Aug 13, 2020 12:11 pm
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

Thank you! It works :)
by Pauschi
Wed Aug 12, 2020 8:27 am
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

Thanks Again CrazyCat! When i check my Apache2 Logs, only pizza.php gets triggered, without ?user=<$nick> "POST /pizza.php HTTP/1.1" 200 220 "-" "Tcl http client package 2.7.13" pizza.php: <?php $user = $_GET['user']; $gesamt = file_get_contents("bier_$user.txt&quo...
by Pauschi
Tue Aug 11, 2020 9:22 am
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

Thanks ComputerTech. @Pauschi: if you want to have it working for voice and ops (add halfop to), the final script is: bind pub - ".pizza" pizzame set desturl "http://google.de/pizza.php" package require http proc pizzame {nick host handle chan text} { if { ![isop $nick $chan] &a...
by Pauschi
Tue Aug 11, 2020 2:35 am
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

Thank you guys, appreciate your work and help!

Ive just learned that https links sadly dont work.

Theres no way to avoid this?
by Pauschi
Mon Aug 10, 2020 3:19 pm
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

All OPS and VOICE users in the channel should be allowed to do it.


if {![isop $nick $chan]} { return 1 }


Where do i need to set this? ;P
by Pauschi
Mon Aug 10, 2020 12:15 pm
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

Thank you very much for answering.

I'll check it out and let you know if its working :)

yeah it was a example URL :)

EDIT: Somehow the bot is not responding :/

It worked with:

bind pub - ".pizza" pizzame

but not with

bind pub -|o ".pizza" pizzame
by Pauschi
Sun Aug 09, 2020 11:35 am
Forum: Script Requests
Topic: "Visit" URL with command .pizza
Replies: 16
Views: 9853

"Visit" URL with command .pizza

Hello, im looking for a easy and simple TCL script, that can be triggered by @(Operators) only: When a Operator writes: .pizza in the Channel #pizza, it shall open up a connection to website http://google.de/pizza.php?user=$IRC_NICKNAME in the background and respond with the Website's content. $IRC_...
by Pauschi
Thu Sep 05, 2019 2:05 am
Forum: Scripting Help
Topic: Reacting to all commands *?
Replies: 2
Views: 3657

Thank you sir! Im gonna try it:)
by Pauschi
Tue Sep 03, 2019 11:11 am
Forum: Scripting Help
Topic: Reacting to all commands *?
Replies: 2
Views: 3657

Reacting to all commands *?

Hello! my simple script is working so far, unfortunally it only reacts when someone writes !raffle into the chat. bind PUB -|- !raffle raffle proc raffle { nick host hand chan arg } { putserv "PRIVMSG $chan :!raffle" } Can it be triggered with every text what starts with "!" ? I ...