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.

needs public activation

Old posts that have not been replied to for several years.
Locked
K
Karms
Voice
Posts: 3
Joined: Sun Mar 13, 2005 6:19 pm

needs public activation

Post by Karms »

Id like this to be set to allow [all] users on channel access and not jus bot ops. So, !blah can be used public by people not added to bot as well as ones in.

This is current:

set chanrules {
"1blah"
"2blah"
"3blah"
"4blah"
"5bleh"
}
bind pub o !rulez pub:t
proc pub:t {nick uhost hand chan text} {
global chanrules
set rulenick [lindex [split $text " "] 0]
if {$text != "" && [onchan $rulenick $chan]} {
puthelp "NOTICE $rulenick :Help:-"
foreach line $chanrules { puthelp "NOTICE $rulenick :$line" }
return 0
}
foreach line $chanrules {puthelp "PRIVMSG $chan :$line" }
}


I did try removin the "o" from "bind pub" but did not work?

Thankies :)
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

Change

Code: Select all

bind pub o !rulez pub:t 
to

Code: Select all

bind pub - !rulez pub:t 
Locked