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

by DarkRaptor
Sat Jan 08, 2011 2:09 pm
Forum: Script Requests
Topic: appropriate flood protections...
Replies: 2
Views: 2851

Try this script: All Protection
by DarkRaptor
Thu Sep 23, 2010 11:45 am
Forum: Eggdrop Help
Topic: Giving Op to my eggdrop is nightmare
Replies: 1
Views: 2389

Hi,

'.chaninfo #yourchan' in partyline and look for idle-kick and chanmode settings.
by DarkRaptor
Thu Sep 16, 2010 12:00 am
Forum: Scripting Help
Topic: Logger TCL
Replies: 1
Views: 3403

Hi Ashoq,

I found this
by DarkRaptor
Tue Sep 14, 2010 8:10 pm
Forum: Scripting Help
Topic: Too many connections in server MySQL
Replies: 3
Views: 3415

bind pubm - * Word:check proc Word:check {nick host hand chan text} { if {![channel get $chan badword]} { return 0 } if {[isop $nick]} {return 0} if {[matchattr $hand o|o $chan]} { return 0 } set conx [getConnection] set sqltext [::mysql::escape "SELECT * FROM ExceptWord where '$text' LIKE Mot...
by DarkRaptor
Tue Sep 14, 2010 6:03 pm
Forum: Scripting Help
Topic: Too many connections in server MySQL
Replies: 3
Views: 3415

Hi,

Your code close the connection only if llenght $why is greater than 0. I suggest put mysql::close just before the last close-brace.
by DarkRaptor
Tue Jul 27, 2010 5:44 pm
Forum: Script Requests
Topic: bseen Mod to show idle time?
Replies: 1
Views: 2201

This function already exists.

Code: Select all

!lastspoke <nick>
by DarkRaptor
Fri Jan 01, 2010 11:31 am
Forum: Other Topics
Topic: Happy New Year 2010
Replies: 7
Views: 8539

Happy New Year!
by DarkRaptor
Mon Nov 23, 2009 12:43 am
Forum: Script Requests
Topic: unban all bans in userlist.
Replies: 1
Views: 2593

bind dcc n clearbans ex_clearbans proc ex_clearbans {hand idx arg} { putcmdlog "#$hand# clearbans $arg" set chan [lindex [split $arg] 0] if {$chan == ""} { putidx $idx "Usage: clearbans <channel|-global|-all> \[creator\]" ; return 0 } set remove [lindex [split $arg] 1]...
by DarkRaptor
Mon Nov 23, 2009 12:23 am
Forum: Eggdrop Help
Topic: New at this.
Replies: 1
Views: 3274

Re: New at this.

Hi kornrocks,

You should verify user's user@host in bot userlist with command .whois nick_that_user_has_when_you_added_him/her.


kornrocks wrote:even when i do .kick commands in channel it doesnt act. or .op
.kick command is not a channel built-in command for eggdrop. You need TCL script to use it.
by DarkRaptor
Mon Nov 23, 2009 12:05 am
Forum: Scripting Help
Topic: mysql connect
Replies: 1
Views: 2417

Hi Fire-Fox,

I'm using this in my script.

Code: Select all

proc name { all arguments } {
   mysqlconnect

   conditions
   &
   commands

   mysqlclose
}
I'm sure to have a "fresh" connection to the mysql server.

Note: I put "mysqlclose" at each location that the script ends.
by DarkRaptor
Tue May 19, 2009 11:10 pm
Forum: Script Requests
Topic: mass join ban script
Replies: 7
Views: 4546

hi,

You could try sentinel.tcl. It should be already in your eggdrop's scripts folder.
by DarkRaptor
Fri Dec 19, 2008 1:28 pm
Forum: Scripting Help
Topic: mask to nick?
Replies: 1
Views: 2052

bind MODE - +b whoisbanned proc whoisbanned { nick host hand chan mode target } { set bannednick "" foreach user [chanlist $chan] { if {[string match $target $user![getchanhost $user]]} { append bannednick "$user " } } putserv "privmsg $chan :$nick tried to ban $bannednick&...
by DarkRaptor
Fri Nov 21, 2008 1:05 pm
Forum: Script Requests
Topic: Mute Script for Typing too much
Replies: 10
Views: 7537

bind FLUD - chan Flood:Chan proc Flood:Chan { nick host hand type chan } { pushmode $chan +b *!*@[lindex [split $host "@"] 1] utimer 120 [list pushmode $chan -b *!*@[lindex [split $host "@"] 1] } You can control this with .chanset .chanset #yourchan flood-chan 6:2 Not tested
by DarkRaptor
Sun Oct 26, 2008 11:26 am
Forum: Script Requests
Topic: Script for keeping devoice user after being devoiced
Replies: 1
Views: 1749

by DarkRaptor
Wed Aug 13, 2008 12:59 pm
Forum: Eggdrop Help
Topic: Ignoring services
Replies: 2
Views: 2515

Hi x-treem,

adding ChanServ to bot's userlist with flag +f should solve this.