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

by Caribou
Sun Feb 26, 2006 3:58 pm
Forum: Scripting Help
Topic: help echo script
Replies: 2
Views: 4595

Salut, je suis français aussi :D Je pense que tu peux rajouter un foreach avec une deuxieme liste mais cette fois une liste de nom à intercepter, en reprenant le principe de ton script, mais uniquement le pseudo ou le host aussi compte ? (I think you can add another foreach with a second list but th...
by Caribou
Sun Feb 26, 2006 3:40 pm
Forum: Scripting Help
Topic: Why a " ² " become " ? "
Replies: 3
Views: 5212

Thanks De Kus, I did a search about encoding and i find out a solution, i used fconfigure command, i don't really know where to had it, so i made it just before writing in my text file. and now when i open the .txt file i got the " ² " instead of " ? " :D if {![catch {set fileWri...
by Caribou
Sun Feb 26, 2006 2:00 am
Forum: Scripting Help
Topic: Why a " ² " become " ? "
Replies: 3
Views: 5212

Why a " ² " become " ? "

Hello, i have a weird bug about a character, the " ² ", when i write it in a text file, it make it " ? ", and i don't really understand why, i can't find any thread about this, maybe i didn't used the correct key-words to find it but well. Someone have any clue about this ? I gue...
by Caribou
Sun Feb 13, 2005 2:34 pm
Forum: Archive
Topic: About scrabble game
Replies: 10
Views: 5161

I have not much time to test your tips right now (on vacancy), but i'll try them soon.

Downloaded your tcl script stdragon, taking a look on it, thank you so much.
by Caribou
Sat Jan 29, 2005 4:10 am
Forum: Archive
Topic: About scrabble game
Replies: 10
Views: 5161

Wow, what a job user, thats pretty nice, my skill is to low to understand everything. Well you mean, i should convert everywords in a sorted sequence of letters, for example, MEDIUM become DEIMMU. And also doing this to the random letters to compare them easily im right? But i have a question, if th...
by Caribou
Fri Jan 28, 2005 11:36 am
Forum: Archive
Topic: About scrabble game
Replies: 10
Views: 5161

Yeah $Letters contain random sentence, i mean i can be EFOIBZURLS for example. $Word will be every words who exists, and trying to check if they fit in EFOIBZURLS. I saw some game coded in C/C++ who can execute this extremely fast, i wanted to check if TCL could make it since i dont know how C is wo...
by Caribou
Fri Jan 28, 2005 10:53 am
Forum: Archive
Topic: About scrabble game
Replies: 10
Views: 5161

About scrabble game

Hello, im trying to make a scrabble game, or boggle if you prefer, and i wanna make him abble to check a full database of words, with a string (random letters) to say how many words the string is able to make. But with this code it take like 30sec to check the database, and also it use like 40% of s...
by Caribou
Mon Aug 02, 2004 11:14 pm
Forum: Archive
Topic: Anyway to modify Idle-Kick eggdrop function ?
Replies: 4
Views: 1986

Yeah yeah, i searched in archives before posting there, i also made a research on board with few keywords and found someone talking about On Idle script. but i didn't find anything about another way to use Idle-Kick option, except than just setting the max idle before kicking, i wanted to make the b...
by Caribou
Mon Aug 02, 2004 9:39 pm
Forum: Archive
Topic: Anyway to modify Idle-Kick eggdrop function ?
Replies: 4
Views: 1986

Yeah but i wanted to use the Idle-Kick from the eggdrop, and not making my own function to check idle time of all users.
I guess that mean i have to do it entirely, thanks
by Caribou
Mon Aug 02, 2004 6:51 pm
Forum: Archive
Topic: Anyway to modify Idle-Kick eggdrop function ?
Replies: 4
Views: 1986

Anyway to modify Idle-Kick eggdrop function ?

Hello, i ear about an integred function who kick users with large idle times. But i wanna use this detector to do something else than kicking the user, is there anyways to do this? using the idle-kick detection like a bind and adding personal tcl scripts, like "bind flud" and flood detecti...
by Caribou
Wed Jul 21, 2004 9:27 pm
Forum: Archive
Topic: Pattern for a Regexp
Replies: 5
Views: 1850

No, im sorry you were right, [^\d] is working correctly, i just add problem cause my bot tried to launch this as a command [], i don't know why but i made this : if {[regexp "(8|08|24|40|56|72|88),(2\[^\\d]|02|18|34|50|66|82|98)" $arg] && [regexp "" $arg]} { detect } else...
by Caribou
Wed Jul 21, 2004 7:46 am
Forum: Archive
Topic: Pattern for a Regexp
Replies: 5
Views: 1850

im not able to use [^\d], maybe i made something wrong with it.
[regexp "(8|08|24|40|56|72|88),(2|02|18|34|50|66|82|98)[^\d]" $text]
by Caribou
Tue Jul 20, 2004 11:05 pm
Forum: Archive
Topic: How to config the Ignore stuff
Replies: 1
Views: 910

How to config the Ignore stuff

Hello,

My EggDrop is sometimes ignoring Ops, Bot (IRCOP), and myself.

I wanna config him to never ignore me and other ops, and also never ignoring the ircop bot who send mass notices.

I used the bind flud to remove all antiflood punishments, but im still aving troubles with the ignores :-?
by Caribou
Sat Jul 17, 2004 6:54 pm
Forum: Archive
Topic: Pattern for a Regexp
Replies: 5
Views: 1850

Pattern for a Regexp

Hi there, Im trying to make a pattern to detect a specific mirccolor and report it. i want him to find Yellow on Darkblue here is what i made actually : "()(8|08|24|40|56|72|88)(,)(02|2|18|34|50|66|82|98)" But with this i got a problem, sometimes color can be "24,23" and it will ...
by Caribou
Fri May 28, 2004 9:11 am
Forum: Archive
Topic: bug with "clock clicks -milliseconds"
Replies: 3
Views: 1912

I forgot to say, its a !ping command for users Here is the source code : bind pubm - *!ping pub:ping bind ctcr -|- PING ctcr:pingreply proc pub:ping { nick uhost handle channel arg } { global ping status if {$status(listen) == "on" && [llength [split $arg " "]] == "1...