Top

Room Commands.


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Dec 13, 2007
Last Updated  Dec 13, 2007
Tags  commands  menu  room 
  Bookmark and Share

Introduction

Paste fresh remotes.

Right click Channel ot nicklist to use.
If you have questions or Problems contact me on
/server 58.168.24.36 on nick Chris^`2122


Grab the Code

Comments

  (5)  RSS
mountaindew
Comments: 1,640
 
mIRC Snippet:  Room Commands.
Posted on Dec 13, 2007 12:12 pm
you should check if $me isop $chan
|Chris|
Comments: 11
 
mIRC Snippet:  Room Commands.
Posted on Dec 13, 2007 7:00 pm
Why?
Rebellious
Comments: 64
 
mIRC Snippet:  Room Commands.
Posted on Dec 13, 2007 7:37 pm
Quote:
Why?

Because you won't be able to use the commands if you do not have the correct status:
Code:
 menu channel,nicklist {
  $iif($me isop $chan,Room Cmds, $style(2) Room cmds):
  ..Topic: { topic $chan $$?="Set Topic?" }
  ..Greet: { set $chan greet $$?="Greet?" }
  ..Secret: { mode $chan +s }
  ..DeSecret: { mode $chan -s }
  ..Invite: { mode $chan +i }
  ..DeInvite: { mode $chan -i }
  ..Members Only: { mode $chan +j }
  ..DeMembers Only: { mode $chan -j }
  ..Invite: { invite $$1 $$?="What Channel?" }
  ..Kick: { kick $$1 $chan $$?="Why?" }
  ..Ban: { mode $chan +b $address($$1,4) }
  ..Kick ban: { mode $chan +b $address($$1,4) | kick $chan $$1 $$?="Why?" }
}
mountaindew
Comments: 1,640
 
mIRC Snippet:  Room Commands.
Posted on Dec 13, 2007 8:03 pm
indeed
|Chris|
Comments: 11
 
mIRC Snippet:  Room Commands.
Posted on Dec 15, 2007 2:26 pm
Ah i see. Well if you don't Check it'll just tell you you're not able to do those commands through services. But w/e.
Thanks.


Please Register or Login to start posting comments.
Bottom