mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2015
Posts: 4
G
Self-satisfied door
OP Offline
Self-satisfied door
G
Joined: Apr 2015
Posts: 4
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: 771
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 771
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.

Joined: Apr 2015
Posts: 4
G
Self-satisfied door
OP Offline
Self-satisfied door
G
Joined: Apr 2015
Posts: 4
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