|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
I have asked this in the past before, but I lost everything when my computer shit to bed. I lost everything. I was able to dbl click a nick and it appeared in the text box like so "nick_is_here: bla bla bla" I had the nick in a yellow color.
Can someone help me out with this? I appreciate it greatly!
Chris
|
|
|
|
Joined: Jan 2007
Posts: 22
Ameglian cow
|
Ameglian cow
Joined: Jan 2007
Posts: 22 |
on ^*:HOTLINK:<*>:#: $iif($replace($1,>,$null,<,$null) ison #,return,halt)on *:HOTLINK:*:*: editbox -afp $+($replace($1,>,$null,<,$null),:)(Tested)Doubleclicking on nick in channel now will that what you want... PS: If you don't want that : at the end of added nick, then just change: on *:HOTLINK:*:*: editbox -afp $+($replace($1,>,$null,<,$null),:)to: on *:HOTLINK:*:*: editbox -afp $replace($1,>,$null,<,$null)(Tested)
Deele /SCRIPTWORKS/
LV | ENG | RU
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
To simplify it, all you need to do is go into mIRC's options - Alt-O > Mouse. Then, in the Nick List box, put:
/editbox -afp 08 $+ $$1 $+
That's all you need to do.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Oct 2006
Posts: 342
Fjord artisan
|
Fjord artisan
Joined: Oct 2006
Posts: 342 |
Doubleclicking on nick in channel now will that what you want... that will open the query message...
learn learn learn
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
Doubleclicking on nick in channel now will that what you want... that will open the query message... It depends on the setting in the options. Deele probably doesn't have the default /query $$1 in there, so assumed it worked properly.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Jan 2007
Posts: 22
Ameglian cow
|
Ameglian cow
Joined: Jan 2007
Posts: 22 |
Doubleclicking on nick in channel now will that what you want... that will open the query message... It depends on the setting in the options. Deele probably doesn't have the default /query $$1 in there, so assumed it worked properly. No, I have This is just like, overriding it... Try double-cliking in channel window on nick and it will work. And yes, Riamus variant of code works the same, but I wanted to show, how to do this, in pure remote script
Deele /SCRIPTWORKS/
LV | ENG | RU
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
Thanks guys! working good glad I could come here and get some help
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
I need help adding color to it instead of having a plain white nick coming out on the channel I want to have it like.
•nick• with color, with the nick being a different color and the bullets being same color. I want to be able to customize the colors and such also. I appreciate anyones help and input! Thanks!
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
My example showed it with color. You can also place color in front of each $1- in the hotlink script (use $+ between the color and $1-).
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
alright, what about the bullets? or any other design I deside to use? this is what I got with one bullet, I can't figure the rest out, or where to put the color tags.. editbox -afp $+($replace($1,>,$null,<,$null),•)
Last edited by o0Chris0o; 12/04/07 08:31 AM.
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
editbox -afp $+(04•,$replace($1,>,$null,<,$null),•)
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
ahhh ok, I had it there just didn't have the comma
thanks riamus
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
editbox -afp $+(04•,$replace($1,>,$null,<,$null),•)
I tried putting that in the options under mouse but there isn't enough room and I get "* Invalid format: $+"
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
That wasn't what I told you to put into the options. This is what I said to put into the options:
/editbox -afp 08 $+ $$1 $+
You can just put the • in there and it will dow what you wanted.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
Hey Riamus, I figured it out, it does work exactly how I want it to, but when I close down mIRC it doesn't save the settings for the mouse..any idea why or do you have any other suggestions? Thanks for your help
|
|
|
|
Joined: Nov 2006
Posts: 1,559
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
Instead of putting the whole code in the options (which will be stripped restarting mirc), let the options call an alias. So first, fill "options > mouse > command to perform on double-click > nick list" with e.g.: nicklistdoubleclick $$1 then add the alias-to-call in your remote, e.g. alias nicklistdoubleclick { editbox -afp $+(08•,04,$1,08•) }
Last edited by Horstl; 14/04/07 02:31 AM.
|
|
|
|
Joined: Sep 2006
Posts: 71
Babel fish
|
OP
Babel fish
Joined: Sep 2006
Posts: 71 |
Alright, I think it worked Thanks! by the way... I am having problems with the same with color codes for my time stamp
Last edited by o0Chris0o; 14/04/07 03:17 AM.
|
|
|
|
Joined: Feb 2006
Posts: 6
Nutrimatic drinks dispenser
|
Nutrimatic drinks dispenser
Joined: Feb 2006
Posts: 6 |
Works with me
|
|
|
|
Joined: Nov 2006
Posts: 1,559
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
Timestamping can be modified in the options. Control codes used there were stripped each time mirc restarts, as mirc stores that data in inis (mirc.ini in that case). But, you can let your script re-format timestamps on start: on *:start: { .timestamp -f 05[14HH05:14nn05:14ss05] } This goes to remotes. Simply combine items of time-and-date (H, ss, tt, zzz etc) with control codes. There is no need for "$+"-ing the line. And dont forget to set colour numbers as duble-digits.
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
Oh, right. Control codes won't save in the ini file. To do the double click thing, you'd just use this in the options:
/editbox -afp $+($chr(3),08,$$1,$chr(3))
That should save fine.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
|