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.

[filled] blowfish test script

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
b
bast
Voice
Posts: 37
Joined: Sat Oct 07, 2006 10:24 pm

[filled] blowfish test script

Post by bast »

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.
w
w00f
Halfop
Posts: 49
Joined: Wed Oct 04, 2006 6:50 pm

Post by w00f »

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"
}

b
bast
Voice
Posts: 37
Joined: Sat Oct 07, 2006 10:24 pm

Post by bast »

Thanks, that did the trick.
Post Reply