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

by ProXy
Tue Mar 18, 2003 4:47 pm
Forum: Archive
Topic: detect channel advertising
Replies: 14
Views: 7673

But i guess this will not match ##, right?
by ProXy
Tue Mar 18, 2003 1:48 pm
Forum: Archive
Topic: detect channel advertising
Replies: 14
Views: 7673

detect channel advertising

Hello, I just use Nosense to protect my chan against channel advertising. Theres only a little error in nosense: It doesn`t match Channel like ## oder ###. these are valid qnet chans, so i wanted to rewrite the regexp. I want to check if one or more char is after # and save the channel in a var call...
by ProXy
Tue Mar 11, 2003 10:15 pm
Forum: Archive
Topic: regexp...
Replies: 4
Views: 1589

Well, the string is not static, so I have to check, that i split between the chars and the [ bracket...
by ProXy
Tue Mar 11, 2003 1:08 pm
Forum: Archive
Topic: regexp...
Replies: 4
Views: 1589

regexp...

Hi, I have a string that contains a word like "HTP[1:2:3]". Is it possible to split the word to "HTP" and "[1:2:3]" with regexp? Or is it just possible to split the string with other commands? Would be nice for some support :)

Greetings,
ProXy
by ProXy
Mon Mar 10, 2003 9:18 pm
Forum: Archive
Topic: Problems printing a website`s source..
Replies: 4
Views: 1772

Problems printing a website`s source..

Hi, I just wrote a little Script that should give out the Source of a given Website to the channel. The sorce of the tcl is: proc intern:ogame2 {channel sessionid} { set halfurl "http://u3.o5game.de/game/" set token [http::geturl [append overviewurl $halfurl "overview.php?session=&quo...
by ProXy
Sun Mar 02, 2003 6:55 am
Forum: Archive
Topic: expr overflow?
Replies: 3
Views: 554

Well i have a public !tcl script...but bound to m|m :)
by ProXy
Sat Mar 01, 2003 10:33 pm
Forum: Archive
Topic: expr overflow?
Replies: 3
Views: 554

expr overflow?

I just wanted to solve this simple calculation: 16777216 * 253 Whenever I try to do this with expr I get a negative value. It seems to be an overflow. How could I calc this two numbers? [03:23:10] <@ProXy> !tcl expr 16777216 * 253 [03:23:10] <@Hack|The|Planet> result: -50331648 - clicks: 124
by ProXy
Thu Feb 27, 2003 9:33 am
Forum: Archive
Topic: linking with sharing..
Replies: 3
Views: 594

Just another question. My userport differs from my bot-port but match * shows me the same port for both connection-types. How can I change one of them to its correct value?
by ProXy
Thu Feb 27, 2003 9:07 am
Forum: Archive
Topic: linking with sharing..
Replies: 3
Views: 594

linking with sharing..

Hello, I just linked my eggdrops like written on egghelp.org, they are connected and the leaf got the hub`s userfile. But when I use -restart in the partyline of the leaf (with the hub`s userfile), he doesn`t know that he should reconnect to the hub, because in the hub userfile there is no entry to ...
by ProXy
Sat Feb 22, 2003 8:49 am
Forum: Archive
Topic: botonchan problems
Replies: 5
Views: 1409

But -1 for an illegal channel would be better than an tcl error... :)

Thanks for the trick with validchan, this works great..

Well, could anyone also tell me how to get the right case for the channels? :))
by ProXy
Fri Feb 21, 2003 11:41 pm
Forum: Archive
Topic: botonchan problems
Replies: 5
Views: 1409

Well, thanks for this solution. I will try this to make sure, that the eggdrop really is on the channel, but I guess "botonchan" isn`t very useful, if it produces an error, that must be catched :)

Perhaps this can be improved within the next eggdrop versions...
by ProXy
Fri Feb 21, 2003 10:55 pm
Forum: Archive
Topic: botonchan problems
Replies: 5
Views: 1409

botonchan problems

Hello, I simply want to check if my eggdrop is on a specific channel. I found "botonchan", but when the eggdrop is not on the channel [botonchan #abc] doesn`t report 0 or -1, but reports an tcl error! This is really crazy, because most people would use botonchan to check if the eggdrop is ...
by ProXy
Wed Feb 19, 2003 9:08 am
Forum: Archive
Topic: Sorting chanlist like mIRC
Replies: 14
Views: 4055

Because for some user - like me - it is important to have so capital letters in their nicks. So I prefer -dictionary, there I only have some problems with brackets...
by ProXy
Tue Feb 18, 2003 2:34 pm
Forum: Archive
Topic: Killing timer...
Replies: 5
Views: 1594

K, thx a lot I now got a solution. I check if there is a timer or not. If not, I start another...else do nothing :)
by ProXy
Tue Feb 18, 2003 11:23 am
Forum: Archive
Topic: Killing timer...
Replies: 5
Views: 1594

Killing timer...

Hello, I wrote a script that checks the channelpeak every minute. Everytime I rehash my eggdrop, another timer starts. So I should kill all other timer, that were set by my script. I found the function "killtimer" but I don`t know how to check the exisiting timers, and how to kill all of t...