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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
bast
Voice
Posts: 37 Joined: Sat Oct 07, 2006 10:24 pm
Post
by bast » Fri Apr 27, 2007 6:12 pm
This woulden´t be to hard to code i guess, but it´s greek to me.
So i´ll ask instead.
I want a script that will answer
Test encryption worked!!
When someone types test in a chan with blowfish.
Should only answer on test.
so the user knows if he has set the correct key.
Last edited by
bast on Sun Apr 29, 2007 5:40 pm, edited 1 time in total.
w00f
Halfop
Posts: 49 Joined: Wed Oct 04, 2006 6:50 pm
Post
by w00f » Fri Apr 27, 2007 8:07 pm
just find out one blowcrypt.
a good blowcrypt must have an option "if key exists then encrypt and reply if key used", this means the bot will never talk in plaintext if you have any blowkey enabled to one #.
no idea how is your blowcrypt script , so enable that option if you have, and if your blowcrypt doesn't have any test function, add somethin like this to blowcrypt.tcl
Code: Select all
bind pub - !test test
proc test { nick host hand chan arg } {
puthelp "PRIVMSG $chan :$nick-$host-$hand-$chan-$arg - Key encryption ok"
}
bast
Voice
Posts: 37 Joined: Sat Oct 07, 2006 10:24 pm
Post
by bast » Fri Apr 27, 2007 10:21 pm
Thanks, that did the trick.