Top

"* is available for help." toggler


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  2.0
Scores Submitted  2
Date Added  Jun 13, 2008
Last Updated  Jun 13, 2008
Tags  alias  help  irc  mirc  op  operator  toggle 
  Bookmark and Share

Introduction

That is made for IRCOps that are too busy to do /mode [SAP]Francis -h+h.

Here: Only need to type /toggle_help and it does it for you ;)

Paste all that in remotes.

Grab the Code

Comments

  (5)  RSS
Scakk
Comments: 237
 
mIRC Snippet:  "* is available for help." toggler
Posted on Jun 13, 2008 5:19 pm
With your version you have to type " /toggle_help 1 " or " /toggle_help 0 ".

Shorter version: Only need to type " /toggle_help "

Code:

alias toggle_help {
  $iif(%help == 1, %help = 0, %help = 1)
  $iif(%help == 1, mode $me -h, mode $me +h)
}
Korvin
Comments: 238
 
mIRC Snippet:  "* is available for help." toggler
Posted on Jun 13, 2008 6:35 pm
lawlz =D very simple script and not really needed
Korvin
Comments: 238
 
mIRC Snippet:  "* is available for help." toggler
Posted on Jun 13, 2008 6:45 pm
Code:
alias toggle_help { $iif(*h* iswmcs $usermode,mode $me -h,mode $me +h) }
mine pwnz
mountaindew
Comments: 1,645
 
mIRC Snippet:  "* is available for help." toggler
Posted on Jun 13, 2008 8:10 pm
Quote:

Code:

alias toggle_help {
  $iif(%help == 1, %help = 0, %help = 1)
  $iif(%help == 1, mode $me -h, mode $me +h)
}


You don't really need the same thing in both situations, so you could just do
Code:

  %help = $iif(%help,0,1)
  mode $me $iif(%help,-h,+h)
francismori7
Comments: 3
 
mIRC Snippet:  "* is available for help." toggler
Posted on Jun 13, 2008 10:12 pm
You can type /toggle_help only lol.

Please Register or Login to start posting comments.
Bottom