mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2004
Posts: 423
C
Fjord artisan
OP Offline
Fjord artisan
C
Joined: Aug 2004
Posts: 423
hi,

i'm in need of some assistance with a double click nick completer..
what i'm trying to do is similar to what invision has where you dlclick on a nick and it selects it from the nick list and addresses like any other completer... i have this in my mouse options editbox -afp $$1 . but how would i be able to have it display the addressed nick in bold or with some other charaters surrounding it so it would look like << BOB >>, so it's clear that a specific person is being addressed in a busy channel?? would i have to do somthing like adding a var or similar?

any help on this would be appreciated.
thanks in advance!

Joined: Nov 2003
Posts: 2,327
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Nov 2003
Posts: 2,327
If you just want it to be << nick >>, then use:

Code:
editbox -afp &lt;&lt; $$1 &gt;&gt;


If you want to be able to customise how it's displayed, use:

Code:
editbox -afp $+(%pre,$$1,%suf)


Then:

Code:
/set %pre &lt;whatever you want to appear before the nick&gt;
/set %suf &lt;whatever you want to appear after the nick&gt;


New username: hixxy
Joined: Aug 2004
Posts: 423
C
Fjord artisan
OP Offline
Fjord artisan
C
Joined: Aug 2004
Posts: 423
thats what i needed!

thanks tidy


Link Copied to Clipboard