mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2003
Posts: 6
R
rioborg Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Jan 2003
Posts: 6
When you right click, let's say, status window, you get several menu options, like: Server, Names, Join, Other, Edit Notes, and below those you have the 3rd party scripts loaded.

My question is, how can I put line dividers to separate the different scripts I have loaded.

Like the divider between Other and Edit Notes.

Hope you can understand.

Joined: Dec 2002
Posts: 2,031
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,031

Insert a - in the script where you want the divider.

Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
You can separate menu items with a dash: "-". eg:
Code:
menu status { 
  first
  .something in first : noop
  .something else in first : noop
  second
  -
  third
  .something in third : noop
  .-
  .something else in third : noop
}


You can start with a separator too, e.g. if you want to add a "new" item to an existing menu definition:
Code:
menu status, channel {
  -
  MyScript
  .funktion1 : noop
  .funktion2 : noop
}

Joined: Jan 2003
Posts: 6
R
rioborg Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Jan 2003
Posts: 6
Thanks a lot everyone.


Link Copied to Clipboard