mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2015
Posts: 3
G
Self-satisfied door
OP Offline
Self-satisfied door
G
Joined: Apr 2015
Posts: 3
When dealing with users in channels I frequent or even manage it would be handy to have a popup box or tool tip be available that I can input notes for. Just an idea.

Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Could just script something real fast to open the standard notepad

something like this?
Code:
menu nicklist {
Notes : notes $1
}
alias notes {
var %dir notes
var %file $+(%dir,\,$1,.txt)
if (!$isdir(%dir)) mkdir %dir
if (!$isfile(%file)) write -c %file
run %file 
}


If you've never used scripts before, open the remote editor by pressing ALT + R and then paste that code into there. Then right click someone's name and press Notes.


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Joined: Apr 2015
Posts: 3
G
Self-satisfied door
OP Offline
Self-satisfied door
G
Joined: Apr 2015
Posts: 3
More along the lines of looking for the tool tip on mouseover containing user specific text. wink based on their name or netmask info.


Link Copied to Clipboard