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

by BoaR
Sun Aug 19, 2007 4:16 pm
Forum: Modules & Programming
Topic: Can this C module be converted to eggdrop?
Replies: 5
Views: 13431

Can this C module be converted to eggdrop?

it's a small module called Automated File Retrieval (AFR) that i would like to use with my eggdrop. http://sourceforge.net/projects/afr Automated File Retrieval (AFR) is a plugin for X-Chat written in C. AFR is a queue-based file retrieval utility that can download files from many different types of...
by BoaR
Sun Aug 19, 2007 4:12 pm
Forum: Modules & Programming
Topic: irctree
Replies: 3
Views: 10574

Alchera wrote:
works on Eggdrop 1.4.x - 1.5.x
Does help to READ!
sorry i missed that part.
by BoaR
Mon Aug 06, 2007 10:41 pm
Forum: Scripting Help
Topic: $text help
Replies: 2
Views: 3233

check if the word has # in front.

Code: Select all

[regexp {#.+?} $chan]
by BoaR
Mon Aug 06, 2007 10:37 pm
Forum: Scripting Help
Topic: prevent public command abuse with a timer on a user
Replies: 7
Views: 8577

This should work also..

Code: Select all

#set time in seconds to wait after the user can use the command.
set antiflood "10"
variable flood

proc {} {
if {![info exists flood($chan)]} {set flood($chan) 0}
if {[unixtime] - $flood($chan) <= $antiflood} {return}
set flood($chan) [unixtime]

code here...
}
by BoaR
Sun Aug 05, 2007 12:57 pm
Forum: Modules & Programming
Topic: irctree
Replies: 3
Views: 10574

irctree

where can i find this module for my eggdrop1.6.18 ? the mod says it should work for 1.4.0 and higher but it doesnt, when i use .irctree on the partyline the bot says that i have to run bot 1.4.0 or later which i am so it's odd.. anyone have this mod for latest eggdrop ?

thanks
by BoaR
Sat Aug 04, 2007 6:20 pm
Forum: Scripting Help
Topic: #channel exist ?
Replies: 2
Views: 2099

thanks :D
by BoaR
Sat Aug 04, 2007 3:47 pm
Forum: Scripting Help
Topic: #channel exist ?
Replies: 2
Views: 2099

#channel exist ?

i would like to see something that would check if the word has # in front of the word and if the channel exists in the bots channel list .

i have this to get the 2nd word:

set chan [lindex [split $text] 1]
by BoaR
Sat Aug 04, 2007 3:30 pm
Forum: Script Support & Releases
Topic: Countryban
Replies: 6
Views: 5828

does it work for you out of the box ?

on my shell i did: unzip --help
-p extract files to pipe, no messages

unzip supports -p switch on my shell.
by BoaR
Sat Aug 04, 2007 3:23 pm
Forum: Scripting Help
Topic: Trigger problem after rehash
Replies: 2
Views: 2198

yeah but i dont want to .restart all the time i do testing.. like adding/removing codes on the script since i dont know tcl i pretty much just test i cant have it right on the first try. this code: bind evnt - prerehash ::MyScript::uninstall proc ::MyScript::uninstall { args } { foreach bind [binds ...
by BoaR
Sat Aug 04, 2007 3:18 pm
Forum: Eggdrop Help
Topic: hidding bot passwords
Replies: 25
Views: 10549

lol
by BoaR
Sat Aug 04, 2007 10:42 am
Forum: Scripting Help
Topic: Trigger problem after rehash
Replies: 2
Views: 2198

Trigger problem after rehash

whenever i change the trigger on the script and rehash, the old trigger is still active and so is the new trigger, how can i fix this so that it wont answer on the old trigger after rehash and will only answer to the new one ?

thanks
by BoaR
Sat Aug 04, 2007 10:39 am
Forum: Eggdrop Help
Topic: hidding bot passwords
Replies: 25
Views: 10549

you win.

since this doesnt work on all servers, i thought it was nothing to do with Xchat client because if it was in my client it would be working with all servers.

ps. you dont have to get mad, there's no reason for that. enjoy life you'll live longer.
by BoaR
Sat Aug 04, 2007 10:36 am
Forum: Scripting Help
Topic: mininum t flag ?
Replies: 7
Views: 3754

is there a particular reason why the bot requires users to have +t flag though? botnet masters users do some maintainance on the bot so maybe what the procs are doing is some maintainance ? the procs mainly only write/read a file nothing more.
by BoaR
Sat Aug 04, 2007 9:12 am
Forum: Eggdrop Help
Topic: hidding bot passwords
Replies: 25
Views: 10549

It's not my client, i use XChat and it has nothing to do with hidding passwords. It's a feature on NickServ end of story. >NickServ< identify **** -NickServ- Password Incorrect >NickServ< identify **** -NickServ- Password Incorrect -NickServ- Password accepted - you are now recognized. Server FreeNode
by BoaR
Sat Aug 04, 2007 9:03 am
Forum: Scripting Help
Topic: mininum t flag ?
Replies: 7
Views: 3754

It doesnt work when i enter "p" or "-|p" or "p|-" ,, i add +t to the user account all the script commands work even with these flags "p" or "-|p" or "p|-"..but when i remove +t to the user and leave +p flag only it doesnt work,,