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.

sends message to chanserv to op

Old posts that have not been replied to for several years.
Locked
K
Kaarel
Halfop
Posts: 91
Joined: Sat Apr 26, 2003 5:24 am

sends message to chanserv to op

Post by Kaarel »

I have tried, but it was no sucsess.
I would like to have script: When bot is deoped it sends chanserv msg to op it (/cs op)
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Did you not bother to use the search feature?

this should do something like what you need
just change the PRIVMSG to whatever chanserv requires.

Code: Select all

bind mode - "% -o" cs:op

proc cs:op { nick uhost hand chan mode arg } {
    putserv "PRIVMSG chanserv :op $chan"
}
Last edited by ^DooM^ on Thu Feb 24, 2005 5:06 pm, edited 1 time in total.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
avilon
Halfop
Posts: 64
Joined: Tue Jul 13, 2004 6:58 am
Location: Germany

Post by avilon »

Code: Select all

bind need - "% op" whatever
proc whatever {c t} {putquick "PRIVMSG chanserv :op $c"}

Code: Select all

bind mode - "* -o" check:deop
proc check:deop {n u h c m t} {
if {[string equal -nocase $::botnick $t]} {putquick "PRIVMSG chanserv :op $c"}}
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

are they just too lazy to look for a nickserv/chanserv script or is there a lack of good ones in the TCL archieve? @_o.
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

De Kus wrote:are they just too lazy to look for a nickserv/chanserv script or is there a lack of good ones in the TCL archieve? @_o.
To lazy mate. :roll:
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

I don't think this guy needs help. I myself made a script with alot of functions for AUTO REOP with ChanServ, the script is on egghelp.org's tcl archive and I beleive they are plenty more.

These people just refuse to search and request for scripts which have already been made and topics which have already been discussed over and over again in the past.
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Locked