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

by awyeah
Sat Apr 28, 2012 6:13 am
Forum: Script Requests
Topic: Re: help in active chatter script
Replies: 4
Views: 5226

You should search before you make a request!
Use this script provided in the download link, I made a few years ago. This is what you need.

"Active Chatter"
http://www.egghelp.org/tclhtml/3478-4-0 ... hatter.htm

You can adjust the parameters to change the times and other stuff.
by awyeah
Mon May 25, 2009 2:56 am
Forum: Script Support & Releases
Topic: Active Chatter v3.72.b by awyeah
Replies: 11
Views: 19099

You might want to also check the halfop global variable in the configuration file of the bot, to determine if it is set correctly, based on your IRCd. I dont remember the name of the parameter, but it mostly defines, the sign used for halfop, generally as "%~&" or something. regards, JD
by awyeah
Sun Apr 26, 2009 3:02 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1022549

Wow, Sir_Fz, this is the longest thread I have ever seen on the egghelp forum, I think you started it back like 3 years ago is it? Good to know you're still in script development, this script is a very good all round script with almost every function built. Appreciate the time and effort you have de...
by awyeah
Sun Apr 26, 2009 2:59 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.72.b by awyeah
Replies: 11
Views: 19099

I am not sure, which type of IRCd you're network works on. But basically I designed it for bahamut, i.e. DALnet, where only two modes +o and +v are available, ops and voices respectively. Networks with +h, half op, or half voice or whatever, I am not sure, this script will work or not. Haven't teste...
by awyeah
Sun Feb 22, 2009 9:22 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.72.b by awyeah
Replies: 11
Views: 19099

willyw wrote:
swarfega wrote:works now ....
Well... watch out for the interference with logging. That's not fixed yet.

As for the other part - you're welcome. ;)
Hopefully, someone can improvise and take up this challenge.. there are a lot of gurus in the forum now a days.
by awyeah
Sun Feb 22, 2009 9:21 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.72.b by awyeah
Replies: 11
Views: 19099

The updated script is uploaded on: http://channels.dal.net/awyeah/ Active Chatter v3.80.b http://metalab.uniten.edu.my/~jawad/activechatter.tcl It will be available on egghelp's TCL Archive hopefully by the end of this month, i.e. February 2009. I have sent it to slennox already. This will be the la...
by awyeah
Thu Feb 05, 2009 4:35 am
Forum: Script Support & Releases
Topic: Active Chatter v3.66.b by awyeah (20/09/07 - fixed all bugs)
Replies: 30
Views: 38359

Sorry forgot to add the variables as global. My bad, been away a long time with tcl. Always mess up while coding things in a hurry, no matter how simple. More worse if you don't test it after modification. :) *** Script fixed and uploaded on: http://channels.dal.net/awyeah/ The text should appear si...
by awyeah
Tue Feb 03, 2009 11:22 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.66.b by awyeah (20/09/07 - fixed all bugs)
Replies: 30
Views: 38359

Hello all, Due to the surge number of requests on this script, I took out some time barely to fix the known bugs and issues thanks to speechless. The new and fixed version of the script Active Chatter v3.72b can be found at: http://channels.dal.net/awyeah/ or alternatively you can download it from: ...
by awyeah
Thu Mar 20, 2008 12:49 pm
Forum: Other Topics
Topic: Goodbye..
Replies: 6
Views: 6574

Goodbye..

Dear everyone, I write this to to thank everyone for their continuous support on this forum in tcl script development for helping me out in times of despair. I am currently very busy with my own life, and as you might have noticed do not login anymore on to the forum, and since the past year or so I...
by awyeah
Fri Nov 02, 2007 3:03 am
Forum: Script Support & Releases
Topic: [BETA RELEASE] Clone Scanner v2.35.b by awyeah
Replies: 31
Views: 24212

Try downloading the version uploaded on my website. http://channels.dal.net/awyeah/ I was busy with exams, so no time for scripting. I did fix some small errors and bugs in it as per a few requests on my shoutbox on my webpage, but didn't change the script version because for me being very busy rece...
by awyeah
Tue Oct 09, 2007 2:12 pm
Forum: Script Support & Releases
Topic: Channel Grabber v5.98.b by awyeah (beta testrelease upgrade)
Replies: 7
Views: 11702

Thanks crux.
by awyeah
Mon Sep 24, 2007 9:13 pm
Forum: Scripting Help
Topic: Voice Script
Replies: 9
Views: 5846

Thanks honeybee.
by awyeah
Mon Sep 24, 2007 8:29 pm
Forum: Scripting Help
Topic: Voice Script
Replies: 9
Views: 5846

Use "matchattr" to test wether a user has a given flag: matchattr [nick2hand $N $C] "-q&-q" $C Never knew it could be done in this way possible using a "&" with a "-" infront of both flags. All I know is to use it in this way: if {![matchattr [nick2ha...
by awyeah
Mon Sep 24, 2007 1:02 am
Forum: Scripting Help
Topic: banned words script [Solved]
Replies: 7
Views: 4647

Just some piece of advice: set text [string trim [string range $text $nick+1 e]] set text [string trim $text {$nick+1} e] set text [string trim $text [expr $nick+1] e] You cannot perform mathematrical operations on a string which is NOT AN INTEGER, such as $nick. Since IRCd's restrict nicks to be al...
by awyeah
Mon Sep 24, 2007 12:46 am
Forum: Script Requests
Topic: Request time bans (solved)
Replies: 7
Views: 3648

CASE 1: You mean you want the script to only work with channel ops? (1) Use bind with "-" flag (2) Add a check in the beginning of the proc if {[isop $nick $chan]} { #continue with ur proc here CASE 2: - If you added the user as global op then in bind you use "o|-" or you can eve...