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

by demond
Thu Sep 07, 2006 5:30 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 255368

this means temporary redirection which the script cannot handle as it's not a full-fledged http client like most web browsers

I'd suggest you specify feed's real URL - the one it's getting redirected to
by demond
Wed Sep 06, 2006 10:10 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 255368

I don't customize my scripts to serve somebody's specific needs
by demond
Wed Sep 06, 2006 1:37 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 255368

blowfish?? what does it have to do with RSS? where did you see a blowfish feed?
by demond
Mon Sep 04, 2006 10:52 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 255368

a timeout error has nothing to do with the script or the feed itself, it simply indicates inability to connect, for whatever reason, to the webserver at that particular time
by demond
Mon Sep 04, 2006 12:42 pm
Forum: Scripting Help
Topic: exec awk problem
Replies: 6
Views: 5936

my guess is that space between the redirection character and output file name is not being interpreted as in shell

try without it, i.e. >bans-$chan-tmp.txt
by demond
Mon Sep 04, 2006 1:27 am
Forum: Script Requests
Topic: Deop Script
Replies: 17
Views: 10053

as soon as BOT joins the channel, it gets oped by Chanserv on DALnet and it doesn't Deop itself. Later if I OP the BOT using Chanserv or myself. it does Deop itself. Wonder whats wrong :s try this, let me know if it works: bind mode - {#yourchan +o} foo bind mode - {#yourotherchan +o} foo proc foo ...
by demond
Mon Sep 04, 2006 1:06 am
Forum: Script Support & Releases
Topic: The First Eggdrop TCL LameNickometer! Hooplah!
Replies: 15
Views: 12435

could you add also LameChanometer? What would it do? It's called 'sarcasm'. Satire; irony; ridicule; taunt; gibe no no, I was serious suppose your channel chatter consists mainly of one- or two-word phrases, idiotic remarks, too much emoticons, excessive amounts of caps, colors, repeats, you name i...
by demond
Mon Sep 04, 2006 12:52 am
Forum: Eggdrop Help
Topic: Eggdrop SSL Linking
Replies: 6
Views: 4996

I suppose the only purpose of other encrypted protocols is to stop people being able to watch you stealing credit card details over the Internet? alright, point made; then perhaps you'd care to enlighten us on what you need that for? if by any chance you are on a huge heterogenous botnet which hubs...
by demond
Mon Sep 04, 2006 12:16 am
Forum: Scripting Help
Topic: pm user if raw 307 is null
Replies: 22
Views: 18446

try it and see for yourself, don't wait for somebody to approve your trials
by demond
Mon Sep 04, 2006 12:13 am
Forum: Scripting Help
Topic: exec awk problem
Replies: 6
Views: 5936

escape curly braces with backslashes
by demond
Sun Sep 03, 2006 6:05 am
Forum: Script Requests
Topic: Deop Script
Replies: 17
Views: 10053

i.m.offline wrote:thx mate
now surprisingly I dont know why but bot doesn't deop itself when it joins the channel and gets OPed.
opped by whom? possibly because the op is not seen as it happens before join sync is completed
by demond
Sun Sep 03, 2006 4:21 am
Forum: Script Support & Releases
Topic: The First Eggdrop TCL LameNickometer! Hooplah!
Replies: 15
Views: 12435

could you add also LameChanometer?
by demond
Sun Sep 03, 2006 2:02 am
Forum: Script Requests
Topic: Deop Script
Replies: 17
Views: 10053

Code: Select all

bind mode - {#yourchan +o} foo
bind mode - {#yourotherchan +o} foo
proc foo {n u h c m v} {
   if {[isbotnick $v]} {
      putserv "mode $c -o+v $v $v"
   }
} 
by demond
Sat Sep 02, 2006 11:50 pm
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 218881

I guess I'll also add an option for interpreting bad words/whois info not as regexps but plain wildcard match using [string match] - and that ought to be default

I'd imagine most xchannel users are more experienced than your average eggdrop owner, but most folks aren't acquainted with regexps anyway
by demond
Sat Sep 02, 2006 11:30 pm
Forum: Scripting Help
Topic: Timers and additions
Replies: 6
Views: 5621

Re: Timers and additions

X-Ception wrote: The basis of login is NOT based on bots userlist but users on a specific channel - anyone on said channel must be able to login/out
then you need to develop an authorization system first; or by "login" you mean simply recording current time for the user issued that command?