mIRC Home    About    Download    Register    News    Help

Print Thread
#136836 04/12/05 08:06 PM
Joined: Dec 2005
Posts: 2
U
uoGwynn Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
U
Joined: Dec 2005
Posts: 2
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.

#136837 04/12/05 08:58 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
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.

#136838 05/12/05 02:19 PM
Joined: Dec 2005
Posts: 2
U
uoGwynn Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
U
Joined: Dec 2005
Posts: 2
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

#136839 05/12/05 09:48 PM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
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
}

Last edited by schaefer31; 05/12/05 09:53 PM.

Link Copied to Clipboard