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 kennycheung21
Sun Apr 24, 2011 4:05 pm
Forum: Scripting Help
Topic: Help: Send an encypted command
Replies: 5
Views: 4081

Could you please give me an example how to encrypt a command before it got send out?

Thanks
by kennycheung21
Fri Apr 22, 2011 7:49 pm
Forum: Scripting Help
Topic: Help: Send an encypted command
Replies: 5
Views: 4081

Yeah, I can encrypt and decrypt it without any problem, but this is done by the bot after receiving an unencrypted command. I just don't know how to encrypt it first before I sent it out. For example, I input the command in the dialog box, then I hit the ENTER, it is sent out without any encryption....
by kennycheung21
Fri Apr 22, 2011 5:59 pm
Forum: Scripting Help
Topic: Help: Send an encypted command
Replies: 5
Views: 4081

Help: Send an encypted command

Hi everyone, I'm wondering how can a user send out an encrypted command to the bot. I mean a user type in an command, then encrypted it before send out to the Bot. so the bot can only received the command encrypted. And the package going through the network is also encrypted. Please help, I can encr...
by kennycheung21
Fri Mar 25, 2011 12:46 pm
Forum: Scripting Help
Topic: timestamp generation
Replies: 2
Views: 3016

timestamp generation

Hello everyone,

I'm wondering if there is any function i can use to generate a timestamp in tcl script?
And if there is any other function to generate a random number in a given range?

Please help and thank you!
by kennycheung21
Wed Mar 16, 2011 9:52 pm
Forum: Scripting Help
Topic: encrypt package in the traffic
Replies: 0
Views: 2007

encrypt package in the traffic

Hi,

please help me.
I would like to implement a command which can encrypt the sent-out package and the bot can decrypt it using some simple cipher. Is this possible or does it require a lot of work?

Any idea?

Thanks
by kennycheung21
Wed Mar 09, 2011 3:50 am
Forum: Scripting Help
Topic: change channel dynamic
Replies: 9
Views: 6294

Oh, I see.
But I'm wondering if I'd like to let the bot do something in the new channel after receiving this command, say print out a sentence, where I should put the statement in this script?

Thanks
by kennycheung21
Tue Mar 08, 2011 1:45 pm
Forum: Scripting Help
Topic: change channel dynamic
Replies: 9
Views: 6294

Thanks Caesar,

From your code, I'm still not sure how to make the bot join the new channel the user specified ($chan).

Maybe there is something I don't quite understand, pls correct me.
by kennycheung21
Tue Mar 08, 2011 4:10 am
Forum: Scripting Help
Topic: change channel dynamic
Replies: 9
Views: 6294

Hi, I've try this: bind dcc -|- mul dcc:mul proc dcc:mul {hand idx arg chan} { #to join channel c1 specified in $chan if {[string equal -nocase "#c1" $chan]} { if {[validchan "#c1"]} { if {[botonchan]} { #do sth else if the bot is already on this channel } else{ if {[channel get ...
by kennycheung21
Fri Mar 04, 2011 3:37 am
Forum: Scripting Help
Topic: change channel dynamic
Replies: 9
Views: 6294

Thanks Caesar,

Could you provide some details?
by kennycheung21
Thu Mar 03, 2011 3:26 am
Forum: Scripting Help
Topic: change channel dynamic
Replies: 9
Views: 6294

change channel dynamic

Hi please help me, I would like to implement a feature which will allow the bot create a new channel and talk in it after receive a specific command. For example, Bot#1 is on channel #t1, and then user send out a command, Bot#1 create a channel #t2, and join it before notifying the user. Is this pos...