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
Tue Sep 04, 2007 4:16 am
Forum: Script Support & Releases
Topic: VoiceServ v6.75.b by awyeah
Replies: 8
Views: 7622

That's what happens when you are overloaded with work and projects and other stuff.. considering I only slept 2hrs last night also, after a 4hr project meeting and presentation deadline. Hope there shouldn't be any more errors with the script now. Didn't get time to test it, but do let me know if an...
by awyeah
Mon Sep 03, 2007 1:26 pm
Forum: Script Support & Releases
Topic: VoiceServ v6.75.b by awyeah
Replies: 8
Views: 7622

Sydneybabe wrote:hi sir i'm getting an error ----> [12:06] Tcl error [aov:do]: invalid command name "VERBOSE"
Forgot to escape the curly brackets in the text [VERBOSE]. They should work fine now.

*** Script fixed and uploaded
by awyeah
Mon Sep 03, 2007 1:13 pm
Forum: Script Requests
Topic: chan Limit is +2 & floodbots joins 10 tcl needed
Replies: 5
Views: 3211

This can happen infact, not because of the lag between servers, but because of SERVER DESYNCH sometimes.
by awyeah
Mon Sep 03, 2007 4:49 am
Forum: Script Requests
Topic: chan Limit is +2 & floodbots joins 10 tcl needed
Replies: 5
Views: 3211

Re: chan Limit is +2 & floodbots joins 10 tcl needed

hello i set my chan +l 2 but floodbots joins more around 10 at once. i need a tcl to ban if the joins counts > current chanlimit if possible and sometimes server lags i want it also to ban if the flood joins while channel is +i or +r thank you. If you are using DALnet or your network uses the baham...
by awyeah
Sun Sep 02, 2007 10:49 pm
Forum: Other Topics
Topic: New script website
Replies: 4
Views: 2823

Nothing wrong with the egghelp tcl script archive, it hosts many scripts. The problem is for newbie eggdrop users, I've seen that if they are searching say for a protection script, they will find a lot of results on the archive.. confused with so many results and finding out which one is the best an...
by awyeah
Sun Sep 02, 2007 10:40 pm
Forum: Scripting Help
Topic: today time in unixtime
Replies: 3
Views: 3447

Heres the full format, just FYI: #Format specifiers: #---------------------------------------------------- # %%: Insert an '%' # %a: Abbreviated weekday name (Mon, Tue, etc) # %A: Full weekday name (Monday, Tuesday, etc) # %b: Abbreviated month name (Jan, Feb, etc) # %B: Full month name (January, Fe...
by awyeah
Sun Sep 02, 2007 10:30 pm
Forum: Script Requests
Topic: Self-learning bot?
Replies: 7
Views: 6576

This is also a good script which I have used previously.. for what you are mentioning (replicating AI in an eggdrop): egg-fu v2.02 A simulated artificial intelligence script for eggdrop much like infobot, but with many more options and features and high-configurability, includes ability for multi-la...
by awyeah
Sat Sep 01, 2007 4:19 pm
Forum: Scripting Help
Topic: Write and Read
Replies: 6
Views: 4034

To match these strings, you can use something like this: if {[regexp {^[A-Z]$} [string index $text 0]] && [regexp -nocase {^[a-z.]{1,}$} [string range $text 1 end-4]] && [regexp {^[0-9]{4}$} [string range $text end-3 end]]} { Might not be the best of solutions, (not a regexp pro).. b...
by awyeah
Sat Sep 01, 2007 4:02 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.66.b by awyeah (20/09/07 - fixed all bugs)
Replies: 30
Views: 38432

The active chatter (+v) flag is only given if a person has said more than X (x is a number) number of lines on a channel. My script only counts channel messages and NOT channel actions or channel notices. Furthermore, if a user is kicked from the channel, parts the channel, quits irc or any of the m...
by awyeah
Sat Sep 01, 2007 3:51 pm
Forum: Script Support & Releases
Topic: VoiceServ v6.75.b by awyeah
Replies: 8
Views: 7622

Thanks for notifying me. I added the verbose option in a hurry and forgot to declare the "verbose" array as global in the procs. Anyway I've fixed that now, just a small fix. You can download the fixed script from my website at: http://channels.dal.net/awyeah/ Hopefully you shouldn't encou...
by awyeah
Fri Aug 31, 2007 9:16 am
Forum: Other Topics
Topic: New script website
Replies: 4
Views: 2823

New script website

Recently I made a webpage devoted to the "small" eggdrop TCL scripts community we have. I didn't have enough time to make a proper website.. so I made a small page containing some tcl scripts (will update them continuously and add more) which I have recently done through the past 2 to 3 mo...
by awyeah
Tue Aug 21, 2007 6:20 am
Forum: Scripting Help
Topic: bind mode (servermode on split rejoin)
Replies: 6
Views: 3763

Thanks heh, got that already. Just wasn't clearly explained in the bind mode help.
by awyeah
Tue Aug 21, 2007 6:15 am
Forum: Script Requests
Topic: excess flood ban tcl
Replies: 8
Views: 4737

Yes I know that, but for the fact that, a *!*@host.domain.com cannot contain special tcl characters to choke on, even if you use vhosts (hosts can only be aplhanumeric) if you look into the case.
by awyeah
Tue Aug 21, 2007 6:12 am
Forum: Script Support & Releases
Topic: Active Chatter v3.66.b by awyeah (20/09/07 - fixed all bugs)
Replies: 30
Views: 38432

Yes that is a problem however, as you can change ctcp replies based on if you use scripts, or if you know how to script yourself as well. There is another way to script around it, but only the idea of that in my mind is too complex just to write it, heh. I guess then getchanidle would be the ONLY (e...
by awyeah
Mon Aug 20, 2007 6:23 am
Forum: Script Requests
Topic: excess flood ban tcl
Replies: 8
Views: 4737

Here you go: #Set the channels here for this script to work on set quitmsgchans "#urdu #awyeah #miri" bind sign - "*" quitmsg:ban proc quitmsg:ban {nick uhost hand chan reason} { if {![botisop $chan]} { return 0 } if {[string equal "Excess Flood" $reason] || [string equ...