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

by krimson
Mon May 22, 2006 1:29 am
Forum: Eggdrop Help
Topic: This message is relayed every 30 minutes. INSANITY
Replies: 7
Views: 7155

did you read the previous post?
greenbear wrote:

Code: Select all

foreach u [userlist] {
  if {[getuser $u PASS] == ""} {
    chpass $u [randstring 10]
  }
}
(this is how you set a random password for all users)
by krimson
Sun May 21, 2006 3:36 pm
Forum: Eggdrop Help
Topic: help with eggy [SOLVED]
Replies: 9
Views: 7523

type in partyline:

Code: Select all

.chanset #chan flood-chan 0:0
by krimson
Tue May 16, 2006 4:48 pm
Forum: Script Requests
Topic: Join chan, get op'd in diff chan
Replies: 6
Views: 5286

replace the proc header proc opCheck {nick host hand chan} { with proc opCheck {nick host hand chan mode victim} { you could also optimise the proc a little: bind mode - +o opCheck proc opCheck {nick host hand chan mode victim} { if {[botisop #a] && [onchan $victim #a]} { if {[validchan #b] ...
by krimson
Sun May 14, 2006 2:12 pm
Forum: Script Requests
Topic: Join chan, get op'd in diff chan
Replies: 6
Views: 5286

(14) MODE (stackable)
bind mode <flags> <mask> <proc>
proc-name <nick> <user@host> <handle> <channel> <mode-change> <victim>
you lack two arguments in the proc. using the model above would fix your problem
by krimson
Sun May 14, 2006 1:09 pm
Forum: Script Requests
Topic: Identify Script + Op [REQ]
Replies: 7
Views: 5455

bind notc - "<TEXT>" identified proc identified {nick uhost hand text target} { if {$nick == $nickserv} { foreach chan [channels] { putserv "CHANSERV op $chan" } } unbind notc - "<TEXT>" identified } just replace <TEXT> with the message nickserv sends you upon identify...
by krimson
Sun May 14, 2006 1:01 pm
Forum: Scripting Help
Topic: Read/Write to txt - Tutorial ??
Replies: 5
Views: 5692

this should help you

http://tclhelp.net/#faqfile
by krimson
Sun May 14, 2006 7:38 am
Forum: Eggdrop Help
Topic: error line1 ? [solved]
Replies: 3
Views: 3809

commenting out that line with # should work
by krimson
Sun May 07, 2006 1:37 pm
Forum: Eggdrop Help
Topic: Won't Accept a DCC
Replies: 16
Views: 13250

try connecting via telnet and see if it outputs any error when you try to join dcc chat. you can use .rehash and .restart from there too
by krimson
Thu Apr 27, 2006 3:46 pm
Forum: Script Requests
Topic: AuthNick
Replies: 3
Views: 4331

Code: Select all

bind raw - 330 get_auth

proc get_auth {x y z} { 
putlog "[lindex [split $z " "] 1] is authed as [lindex [split $z " "] 2]"
}
for this to work you'd have to include it in any /whois script

(i've tested it with swhois v1.03)
by krimson
Tue Apr 25, 2006 2:07 am
Forum: Eggdrop Help
Topic: User without priviledges with flags +fhp Can ban and kick
Replies: 5
Views: 5228

geezer wrote:I set up one of the ops with only the +fhp flags
then perhaps the user had +o flag too?