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

by tsukeh
Wed Oct 10, 2007 9:03 am
Forum: Scripting Help
Topic: message
Replies: 2
Views: 1611

Code: Select all

proc pubm:notice {nick host handle chan text} {
 global g_maxpl
 foreach channel [channels] {
  putserv "notice $channel : Hello $g_maxpl "
 }
}
by tsukeh
Wed Oct 03, 2007 8:33 am
Forum: Scripting Help
Topic: Close-brace error
Replies: 7
Views: 3974

Code: Select all

if {[string match -nocase $endof $text]} {
       relay:send "PRIVMSG $endofchan :$nick: $text"
       relay:send "PRIVMSG $endofchan :$nick: These are just Live End of the over results. For Live ball-by-ball Cricket Commentary between $nick  Join #Channel"
}
one space more..
by tsukeh
Sat Sep 15, 2007 3:56 am
Forum: Scripting Help
Topic: How can I get the name of the last month?
Replies: 3
Views: 2791

Code: Select all

file copy -force $file $newfile[strftime %Y_%m [clock scan "last month"]].db
by tsukeh
Sat Aug 11, 2007 9:00 am
Forum: Script Requests
Topic: Script Problem for a simple copy script
Replies: 20
Views: 10630

Trying code then: $ tclsh % set newsBot {GWNEWS-[01][1-5]} GWNEWS-[01][1-5] % set newsBots {GWNEWS-01 GWNEWS-02 GWNEWS-03 GWNEWS-04 GWNEWS-05 GWNEWS-06 GWNEWS-07 GWNEWS-08 GWNEWS-09 GWNEWS-10 GWNEWS-11 GWNEWS-12 GWNEWS-13 GWNEWS-14 GWNEWS-15} GWNEWS-01 GWNEWS-02 GWNEWS-03 GWNEWS-04 GWNEWS-05 GWNEWS-...
by tsukeh
Fri Aug 10, 2007 2:51 pm
Forum: Script Requests
Topic: Script Problem for a simple copy script
Replies: 20
Views: 10630

Sir_Fz wrote:Try the edited code above. GWNEWS-[01][1-5] means nicknames GWNEWS-01 to GWNEWS-15.
How about these bots?

GWNEWS-06
GWNEWS-07
GWNEWS-08
GWNEWS-09
GWNEWS-10
by tsukeh
Fri Aug 10, 2007 2:29 pm
Forum: Script Requests
Topic: Who's on channel
Replies: 16
Views: 9495

Hi! I'm very interested in the same script, but with little modifications (I tried to do them by myself, but I don't know TCL :roll: I just need the same but without the channel name (if possible) and every nick in the same line and separated by a comma and an space. E.g. Nick1, Nick2, Nick3, Nick4...
by tsukeh
Sun Aug 05, 2007 3:39 am
Forum: Scripting Help
Topic: Varibles ((SOLVED))
Replies: 4
Views: 2838

That would be the var $text
by tsukeh
Thu Feb 15, 2007 3:50 pm
Forum: Scripting Help
Topic: filter last character
Replies: 1
Views: 2133

filter out last char: string range $text 0 end-1
or
filter out ")" char(s) from right side: string trimright $text ")"
by tsukeh
Fri Jan 05, 2007 9:03 am
Forum: Script Requests
Topic: Counter-Strike 1.6 MatchBot/ScoreBot TCL Script
Replies: 2
Views: 3414

Not sure if this is what you are looking for..

http://www.limit.org/projects.php
by tsukeh
Tue Oct 24, 2006 6:52 am
Forum: Eggdrop Help
Topic: Libdns.so ??
Replies: 7
Views: 5178

Updated few days ago FC5 system and eggdrop started complaining something about libdns (dont remember what exactly..), then I reinstalled eggdrop (./configure && make and copied binaries over old ones..) and it worked again..
by tsukeh
Mon Oct 23, 2006 8:24 am
Forum: Eggdrop Help
Topic: Libdns.so ??
Replies: 7
Views: 5178

Maybe it (eggdrop) just needs reinstall.
by tsukeh
Sat Sep 23, 2006 3:27 pm
Forum: Scripting Help
Topic: encrypt and decrypt commands
Replies: 3
Views: 3769

That standard base64 is not compatible with encrypt/decrypt commands in eggdrop/crypto.mod.. :(
by tsukeh
Sat Sep 23, 2006 1:54 pm
Forum: Scripting Help
Topic: encrypt and decrypt commands
Replies: 3
Views: 3769

I made some changes/fixes to code and it's now slightly faster.. load crypto.so; # crypto.mod which provides bencrypt/bdecrypt - http://tclcryptography.sourceforge.net/ package require blowfish package require math::bignum set B64 "./0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY...
by tsukeh
Fri Sep 22, 2006 7:05 am
Forum: Eggdrop Help
Topic: Max amount of bots allowed to be linked to a hub
Replies: 2
Views: 2496

Increase this setting.. it's in config

# Set here the maximum number of dcc connections you will allow. You can
# increase this later, but never decrease it.
set max-dcc 50
by tsukeh
Wed Sep 13, 2006 2:09 pm
Forum: Scripting Help
Topic: encrypt and decrypt commands
Replies: 3
Views: 3769

encrypt and decrypt commands

I converted one other code to tcl and got those bytetoB64/B64tobyte procedures. So is there any way to make that 'pure tcl' code faster?? I don't eventually use eggdrop and I have some stability problems with crypto.mod or something.. Testing is done with eggdrop load crypto.so; # crypto.mod which p...