mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2003
Posts: 161
A
Vogon poet
OP Offline
Vogon poet
A
Joined: May 2003
Posts: 161
I think when you get multiple NOTICEs from the same user at the same time, mirc shouldn't put line separators there... it's annoying when you're getting help from ChanServ or something and the reply is like 50 lines long.

Joined: Feb 2003
Posts: 2,737
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,737
I second this motion.

I swore I posted this before, but I guess I didn't. The linesep is insidious when trying to read Services help files, forcing me to disable it entirely for the duration of my learning.

Kudos Ashkrynt

- Raccoon


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Jan 2003
Posts: 1,057
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Jan 2003
Posts: 1,057
I personally always have is disabled... it's very anoying when reading up on help files of the services...

Joined: Dec 2002
Posts: 1,536
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,536
Not a bad idea to implement tho turning the linesup off (IF you can handle that; not everybody can) is an alternative till then. ive had it off since the earliest mircs ive used (or as long as it was possible for me to)


Those who fail history are doomed to repeat it
Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
I'd like if I was able to turn linesep off just for notices, and maybe other situations. It should offer more toggle options of this kind IMHO

D
DaveC
DaveC
D
would be nice if u could maybe tell mirc to reread the ini files, then you could set the linesep to nothing in the ini when a notice comes in, and have it change back on a timer.

Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
This is what I had in mind, but thinking about /linesep only (hence the options) but yeah this would be great.

Joined: Sep 2003
Posts: 149
S
Vogon poet
Offline
Vogon poet
S
Joined: Sep 2003
Posts: 149
This can be achieved with a simple script.

Code:
on ^:NOTICE:*:*:{
  if (%lnnick == $nick) {
    echo -sm - $+ $nick $+ - $1-
  else {
    set %lnnick $nick
    echo -s -
    echo -sm - $+ $nick $+ - $1-
  }
  haltdef
}


This script is a little rough, but with some modifycation, it will work just fine for this kinda thing.

Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
I'm already aware of a scripted solution, but thanks anyway.

D
DaveC
DaveC
D
could be if your script actually worked <grin>


Link Copied to Clipboard