mIRC Homepage
Posted By: uoGwynn Newbie question - 04/12/05 08:06 PM
Hello! I was looking for information about why my popups might not be popping up and figured this was the right place to look! However, after reading through the entire section and not finding it, I realized that there is a *lot* I don't know about mIRC. Ahh well... so sorry to bother you all but could any of you point me in the right direction in order to figure out why my pop ups aren't popping up? I'm only getting a very limited number of them, even though others using the exact same script get them all? I got it from user A, and then later gave the same thing to user C and I'm the only one not getting all the options.
Posted By: RusselB Re: Newbie question - 04/12/05 08:58 PM
It would help if you posted the codes for the pop-ups that aren't working. When you do post the codes, please remember to use the Code Tags.
Posted By: uoGwynn Re: Newbie question - 05/12/05 02:19 PM
The only popups that are showing are:
Ignore
Unignore
Op
Deop
Voice
Devoice
Kick
Kick (why)
Ban
Ban, kick
Ban, kick (why)

The following were given to me by the owners of the channel and I'd copy pasted into my popups as directed:


Code:
Control
.NickInfo:/uwho $1
.Voice:/mode # +vvv $$1 $2 $3
.DeVoice:/mode # -vvv $$1 $2 $3
.ChanServVoice:/cs voice # $$1
.ChanServDeVoice:/cs devoice # $$1
.ModerateChannel:/mode # +m
.UnModerateChannel:/mode # -m
.Op:/mode # +ooo $$1 $2 $3
.DeOp:/mode # -ooo $$1 $2 $3
.ChanServOp:/cs op # $$1
.ChanServDeop:/cs deop # $$1
.AutoKick:/cs akick # add $$1
.Ban:/cs ban # $$1
.Kick:/kick # $$1
.Kick (why):/kick # $$1 $$?="Reason for kick:" 
.Akick:/msg chanserv akick #elvenorder $$1 
.UnAutoKick:/cs akick # del $$1
.Unban:/cs unban #$$1
.Query:/query $$1
.Ignore:/ignore $$1 1
.Unignore:/ignore -r $$1 1
.GiveAutoOp:/cs access # add $$1 50
.GiveAutoVoice:/cs access # add $$1 5 
-
Server
.Lusers:/lusers
.Motd:/motd
.Time:/time
Names
.#mIRC:/names #mirc
.#irchelp: /names #irchelp
.names ?:/names #$$?="Enter a channel name:"
Join
.#mIRC:/join #mirc
.#irchelp:/join #irchelp
.join ?:/join #$$?="Enter a channel to join:"
Channel
.Try double-clicking in a channel window!:
Other
.Whois ?:/whois $$?="Enter a nickname:"
.Query:/query $$?="Enter a nickname:"
.Nickname:/nick $$?="Enter your new nickname:"
.Away
..Set Away...:/away $$?="Enter your away message:"
..Set Back:/away
.List Channels:/list
-
Edit Notes:/run notepad.exe notes.txt
Quit IRC:/quit Leaving
Posted By: schaefer31 Re: Newbie question - 05/12/05 09:48 PM
The problem with the way you have it is that some of those menus already exist in mIRC and so it adds to those menus rather than create new ones. This will do what I think you want it to. Put it in your remotes (alt r)

Code:
menu nicklist {
  .My Menu
  ..NickInfo:uwho $1
  ..Voice:mode # +vvv $$1 $2 $3
  ..DeVoice:mode # -vvv $$1 $2 $3
  ..ChanServVoice:cs voice # $$1
  ..ChanServDeVoice:cs devoice # $$1
  ..ModerateChannel:mode # +m
  ..UnModerateChannel:mode # -m
  ..Op:mode # +ooo $$1 $2 $3
  ..DeOp:mode # -ooo $$1 $2 $3
  ..ChanServOp:cs op # $$1
  ..ChanServDeop:cs deop # $$1
  ..AutoKick:cs akick # add $$1
  ..Ban:cs ban # $$1
  ..Kick:kick # $$1
  ..Kick (why):kick # $$1 $$?="Reason for kick:" 
  ..Akick:msg chanserv akick #elvenorder $$1 
  ..UnAutoKick:cs akick # del $$1
  ..Unban:cs unban #$$1
  ..Query:query $$1
  ..Ignore:ignore $$1 1
  ..Unignore:ignore -r $$1 1
  ..GiveAutoOp:cs access # add $$1 50
  ..GiveAutoVoice:cs access # add $$1 5 
  .-
  ..Server
  ..Lusers:lusers
  ..Motd:motd
  ..Time:time
  .Names
  ..#mIRC:names #mirc
  ..#irchelp:names #irchelp
  ..names ?:names #$$?="Enter a channel name:"
  ..Join
  ...#mIRC:join #mirc
  ...#irchelp:join #irchelp
  ..join ?:join #$$?="Enter a channel to join:"
  ..Channel
  ...Try double-clicking in a channel window!:
  ..Other
  ...Whois ?:whois $$?="Enter a nickname:"
  ...Query:query $$?="Enter a nickname:"
  ...Nickname:nick $$?="Enter your new nickname:"
  ..Away
  ...Set Away:away $$?="Enter your away message:"
  ...Set Back:away
  ..List Channels:list
  .-
  ..Edit Notes:run notepad.exe notes.txt
  ..Quit IRC:quit Leaving
}
© mIRC Discussion Forums