Page 1 of 1

help-request has not been forwarded to Help Operators

Posted: Mon Apr 18, 2005 9:27 pm
by Idezo
Hello i am IRCop but with a other client as normal user when i do a /helpop test request i get the message: Your help-request has been forwarded to Help Operators

but as IRCop with umode +h i dont get the request.

I cant find a Help block either in de ircd.conf

what do i wrong, i have look at the manual and forum but cant find the answer.

Sorry for my bad english.

Posted: Tue Apr 19, 2005 7:52 pm
by Ron2K
Right, next time you type /HELPOP as a HelpOp, you'll see this message:

"As a helpop, you need to prefix your request with ? to query the help system...." (or something to that effect).

'Nuff said.

Posted: Wed Apr 20, 2005 9:58 am
by Idezo
I dont need the IRCop HELPOP commands !!!
I know that i must typ /HELPOP ? for the IRCop help commands.

Its the meaning that when somebody typs /HELPOP somthing, and no answer gets, that the request be forwareded to a HelpOp and that doesnt happend.

Posted: Sun Apr 24, 2005 10:42 pm
by Idezo
can somebody help me with this?

Posted: Mon Apr 25, 2005 8:54 am
by Dukat
No, because it works fine. :roll:

Are you sure you are +oh?
Do you have any strange script running? (--> Disable it!)
Check the debug output of your client (mIRC: /debug @debug)

Posted: Mon Apr 25, 2005 3:15 pm
by Idezo
Thanks !!

i am IRCOp with the umodes +ixzowghaAsNWqH

I use mIRC 6.14 with Invision 2b3515.

This is my /debug @debug output:

-> irc.zennec.com LAGTIME.761317998
<- :irc.zennec.com 421 ZeNNeC LAGTIME.761317998 :Unknown command
<- :irc.zennec.com NOTICE ZeNNeC :*** HelpOp -- from Idezo (Local): test
-> irc.zennec.com LAGTIME.761327998
<- :irc.zennec.com 421 ZeNNeC LAGTIME.761327998 :Unknown command
-> irc.zennec.com LAGTIME.761337998
<- :irc.zennec.com 421 ZeNNeC LAGTIME.761337998 :Unknown command


This is what i see in Invision Server Notice:

[4:58pm][ZeNNeC] *** HelpOp -- from Idezo (Local): test

But i think thats not the meaning of it to take my attention.

I hope that i doesnt must uninstall Invision !!

Posted: Mon Apr 25, 2005 5:39 pm
by Dukat
Idezo wrote:This is what i see in Invision Server Notice:

[4:58pm][ZeNNeC] *** HelpOp -- from Idezo (Local): test
So it works fine. You just didn' see it :D
But at least you know now where to look at :wink:

Posted: Mon Apr 25, 2005 7:20 pm
by Idezo
Yes your right thats a notice, but i wasnt satisfiet with it, so i made a nice scriptje for mIRC Invision to load at remotes.

;############## HelpOp Notice with Alarm ###############
ON ^*:SNOTICE:*: {
.haltdef
if (*HelpOp* iswm $1-) {
if ($away == $false) && (%alertHelpOp == on) { /splay C:\Program Files\mIRC\Invision\Themes\Sounds\Default\ringin.wav }
if ($window(@HelOp-Info) == $null) {
window -nk1 @HelpOp-Info
}
echo 7 -t @HelpOp-Info 7[ $network ]14 $1-
}
}
; The follwing is the Menu option in the main Invision Menu below for Alarm Sound On Join On and Off.
menu Channel,Menubar {
Alarm HelpOp
.On:/set %alertHelpOp on | echo -a 12Alarm HelpOp is now On
.Off:/set %alertHelpOp off | echo -a 12Alarm HelpOp is now Off
}

now it works great.

I realy wana thank you Dukat for your suport !!!
You realy helpt me !!!

Greetings Idezo

Posted: Tue Apr 26, 2005 12:43 am
by w00t
That will drive you crazy, as it's going to trigger on every server notice, not just a helpop

Posted: Tue Apr 26, 2005 9:03 am
by Idezo
Its only reacte on HelpOp notice, i work with it and found no problem with it, its a part of a greater script i run. Try it and you will see? :wink:

Posted: Tue Apr 26, 2005 11:32 pm
by w00t
I missed the iswm, you could have combined that with the ON ^*:SNOTICE etc.. but oh well :)