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
Sun Sep 23, 2007 3:07 am
Forum: Script Requests
Topic: channel limiter(l) and join throttle(j) script
Replies: 5
Views: 2701

You can, but its point less to set +j 4:2 along with +l. It is pointless if you keep on setting the same value for +j (4:2) everytime +l is changed, since +j doesn't effect number of users in a channel (like +l) is only there for join throttling. So IMHO, setting +j should be once sufficient and hen...
by awyeah
Sat Sep 22, 2007 10:01 am
Forum: Script Requests
Topic: channel limiter(l) and join throttle(j) script
Replies: 5
Views: 2701

You don't need to change settings for join throttling (+j), just set it once on your channel, if you're using the bahamut IRCd (your own IRC network, DALnet etc). Note 4:2 (joins:secs) is the minimum setting. As for a simple channel limiter you can use: http://channels.dal.net/awyeah/scripts/chanlim...
by awyeah
Fri Sep 21, 2007 1:35 am
Forum: Scripting Help
Topic: delay output
Replies: 6
Views: 5567

You can create your own delayed queues here with this script. Download it from:
http://barkerjr.net/pub/irc/eggdrop/Scr ... cl.tar.bz2
by awyeah
Thu Sep 20, 2007 1:03 pm
Forum: Scripting Help
Topic: add isop to the soutcast.tcl [SOLVED]
Replies: 6
Views: 5038

Contact the author then: domsen@domsen.org
by awyeah
Thu Sep 20, 2007 12:58 pm
Forum: Script Requests
Topic: adding whois feature in this code
Replies: 7
Views: 3499

For this both of your bots should be linked, else you cannot accomplish this. You can do something like this. Msg the other bot on the botnet with $text say "WHOIS $nick" and when the other bot receives it: ON THE BOTNET from the receiving bot: (1) Check for the sending botnick (use string...
by awyeah
Thu Sep 20, 2007 5:04 am
Forum: Script Requests
Topic: adding whois feature in this code
Replies: 7
Views: 3499

Well what don't you understand over here from my reply?? ask.
by awyeah
Thu Sep 20, 2007 1:32 am
Forum: Script Requests
Topic: regchat
Replies: 6
Views: 3360

The script seems outdated. With eggdrop v1.6.18, you can now easily add nick!uhosts with +v flags for separate channels (if their +m or not, doesn't really matter) as long as users get +v when they join a +m channel if their host is found in the list.
by awyeah
Wed Sep 19, 2007 11:04 pm
Forum: Script Support & Releases
Topic: Active Chatter v3.66.b by awyeah (20/09/07 - fixed all bugs)
Replies: 30
Views: 38417

Active Chatter v3.66.b
20/09/07: Fixed some bugs reported.
Uploaded activechatter.tcl v3.66.b on my script website:
http://channels.dal.net/awyeah/
by awyeah
Wed Sep 19, 2007 11:01 pm
Forum: Script Requests
Topic: regchat
Replies: 6
Views: 3360

Re: regchat

barman wrote:hello i need a tcl for a chat with popular people. The regchattcl don't work. Can somebody help me?

thx
popular people? sounds obnoxious.. lol
by awyeah
Wed Sep 19, 2007 10:58 pm
Forum: Scripting Help
Topic: add isop to the soutcast.tcl [SOLVED]
Replies: 6
Views: 5038

First of all: (1) Please indent your code properly, because it is difficult to read. (2) You don't need to split chanlist, since it is already a list. (3) Use a foreach loop and check the isop condition for that nick on the channel, as mentioned by TCL_no_TK Try this: proc setdj {nickname djnickname...
by awyeah
Tue Sep 18, 2007 8:58 pm
Forum: Script Requests
Topic: adding whois feature in this code
Replies: 7
Views: 3499

For whois you just need to bind to the raw keywords and display the output , should be nothing difficult.. and you will execute it through a public trigger. 301 nick :away 310 nick :looks very helpful 311 nick username address * :info 312 nick server :info 313 nick :is an IRC Operator 317 nick secon...
by awyeah
Tue Sep 18, 2007 8:52 pm
Forum: Script Requests
Topic: Checking for ops in channels and reporting
Replies: 1
Views: 2503

Re: Checking for ops in channels and reporting

Hi, I hope someone can help with this question. When my bot joins channels, is it possible for it to set a timer and check it's Op or Hop status ever x mins? If it is opped, i would like it reported into a specific channel. I know there are several scripts that check for Ops status, but i have a sp...
by awyeah
Tue Sep 18, 2007 2:28 am
Forum: Scripting Help
Topic: How to acquire the number of characters minus color codes
Replies: 2
Views: 2514

If $text is "\0034,1\xb0\xbaO\xa7\0030 ~ ~ ~ ~ ~ $botnick command help ~ ~ ~ ~ ~" then: #In eggdrop 1.6.17 and later, you can use: set text [stripcodes bcruag $text] #If you want to count spaces as characters set textlen [string length $text] #If you don't want to count spaces as character...
by awyeah
Mon Sep 17, 2007 9:22 pm
Forum: Scripting Help
Topic: Change the Encoding so it shows "Å" [SOLVED]
Replies: 15
Views: 9186

I'm not sure what +D does over here. See tcl-commands.doc in the eggdrop package for the list of flags available.

As for adding users with a new flag who get the umode +D, I guess then that can be only done through a tcl script.
by awyeah
Mon Sep 17, 2007 9:15 pm
Forum: Scripting Help
Topic: Change the Encoding so it shows "Å" [SOLVED]
Replies: 15
Views: 9186

Sorry my bad, the code is fixed above.