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
Mon Sep 17, 2007 9:07 pm
Forum: Scripting Help
Topic: Change the Encoding so it shows "Å" [SOLVED]
Replies: 15
Views: 9187

This script will replace any occurences of "aa" in $mytext with "å" and assign the substituted string to $mynewtext, which will be displayed on the channel.
by awyeah
Mon Sep 17, 2007 8:43 pm
Forum: Scripting Help
Topic: Change the Encoding so it shows "Å" [SOLVED]
Replies: 15
Views: 9187

You can use this then: set chans "#aliasfm" set schelptrigger "skaal" set mytext "afdasgfaagfsaaasgfryuitkaaaarsgtrdythgftrrqw" bind pub - $schelptrigger pub_skaal proc pub_skaal {nick uhost hand chan text} { regsub -all {aa} [encoding convertfrom iso8859-1 $::mytext] &...
by awyeah
Mon Sep 17, 2007 8:21 pm
Forum: Scripting Help
Topic: Change the Encoding so it shows "Å" [SOLVED]
Replies: 15
Views: 9187

by awyeah
Mon Sep 17, 2007 12:30 pm
Forum: Other Topics
Topic: Possible expliot in eggdrop's server module?
Replies: 16
Views: 10460

I must also say the same for myself, studies, work, family, friends and other chores keep my agenda full daily almost on weekdays and on weekends. As apart for the devteam, I don't think am really that capable also. But I do hope in the future there still will be progress on the eggdrop project and ...
by awyeah
Sun Sep 16, 2007 8:34 pm
Forum: Other Topics
Topic: Possible expliot in eggdrop's server module?
Replies: 16
Views: 10460

However, as I've been made to understand, eggheads devteam really could use some new coders with time/inspiration to work with the code. Many projects like eggdrop depend on new coders, as people tend to less time to spend as years pass. Well nml375 you stand out as a good candidate for the egghead...
by awyeah
Sun Sep 16, 2007 8:31 pm
Forum: Scripting Help
Topic: ascii file player help...
Replies: 10
Views: 5132

You can try this script and create your own delayed queue with this. Queues This is a utility for script developers. It allows you to create more queues so that you aren't limited by just three queues. Download the script from: http://barkerjr.net/pub/irc/eggdrop/Scripting/scripts/queues.tcl.tar.bz2
by awyeah
Sun Sep 16, 2007 1:53 am
Forum: Script Support & Releases
Topic: Channel Grabber v5.98.b by awyeah (beta testrelease upgrade)
Replies: 7
Views: 11719

Thanks, well looking forward for people to use it, so I can get feedback. :P
by awyeah
Sun Sep 16, 2007 1:47 am
Forum: Scripting Help
Topic: regexp issue
Replies: 5
Views: 3888

Well my idea was first to check with regexp to match the string and then proceed to substitute, you can substitute in many ways: regsub IS NOT the ONLY SOLUTION. You can use nml's expression for regsub or use this then, lol: set text [lindex [split $text] 0] Three Runs [lrange [split $text] 2 end] T...
by awyeah
Sat Sep 15, 2007 9:40 am
Forum: Script Requests
Topic: Self-learning bot?
Replies: 7
Views: 6576

Megahal, hmm interesting.. never used it.. will try it out. :P
by awyeah
Sat Sep 15, 2007 9:39 am
Forum: Other Topics
Topic: Trojan detection
Replies: 6
Views: 3571

@ Tosser^^: Maybe you should refine your search criteria.
by awyeah
Sat Sep 15, 2007 9:21 am
Forum: Script Support & Releases
Topic: Channel Grabber v5.98.b by awyeah (beta testrelease upgrade)
Replies: 7
Views: 11719

Channel Grabber v5.98.b by awyeah (beta testrelease upgrade)

Channel Grabber v5.98.b by awyeah (beta test-release upgrade) If you want to register dropped channels, where there are no OPs and people are still in the channel, this script is your best choice!! This script will make the bot check the channel user count based on a timer, and when the channel emp...
by awyeah
Sat Sep 15, 2007 9:07 am
Forum: Scripting Help
Topic: regexp issue
Replies: 5
Views: 3888

Re: regexp issue

Hi like this: 11.6 3 test --> then turn 3 into Three To match this you can use this: #if $text is the string: "11.6 3 test" if {[regexp {^(([0-9.]{3,})|([0-9]{1,}))(\x20)(3)(\x20)([a-z]{1,})$} $text]} { #for substitution you can use regsub or string map #or you can do it this way: set tex...
by awyeah
Wed Sep 12, 2007 10:24 pm
Forum: Other Topics
Topic: Trojan detection
Replies: 6
Views: 3571

I have seen there are only a few threads related to trojans/drones/spambots and infected clients on the forum. Since they vary from network to network and from channel to channel as well as I've seen it makes a difficult criteria to specify a single thread which can be used in general for every type...
by awyeah
Wed Sep 12, 2007 10:00 pm
Forum: Script Requests
Topic: REQUEST - !op !ban !deop !voice !devoice etc
Replies: 9
Views: 5104

Re: Sorry

Yo! :) The tcl should allow only ops with chanserv access (aop, sop, etc) to have access to the commands This could pose a problem, since there are only a few ways to check who can and who can not use the commands with eggdrop. 1 by checking if the person is oped, halfoped or voiced on the channel....
by awyeah
Wed Sep 12, 2007 3:29 am
Forum: Scripting Help
Topic: sending a message to all ops on a channel [Solved]
Replies: 5
Views: 4125

You will need this if the bot is op, so it doesn't need to message itself, heh. proc msg_ops {channel msg} { if {![validchan $channel]} { return } if {$msg == ""} { return } foreach user [chanlist $channel] { if {$user != "" && [isop $user $channel] && ![isbotnick...