Top

Comments

  (8)  RSS
Cartaglion's
KuTsuM
Comments: 140
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 21, 2005 10:55 am
before the echo put
if ($readini(nick.ini,nicks,$nick)) echo -a $v1 @ $chan $+ : $1-
else echo -a $nick @ $chan $+ : $1-
Raid
Comments: 90
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 21, 2005 9:02 am
Is there a way to make this so it gets shortened versions of your name?
like w/ clan tag [SI]Raid but people never say that so make it reconize Raid?
Raid
Comments: 90
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 20, 2005 8:04 am
This is pretty nice.
brottor
Comments: 116
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 18, 2005 9:47 pm
also, you can make it do on pm too. such as:
on *:text:*:*: {
if (!$chan) echo -a $nick said $1- in pm to me.
}
this will work if anyone says anything im pm to you, it will echo the active window that they said what they said to you.
Noutrious
Comments: 353
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 18, 2005 5:43 am
Fossa i know, but that was only example of how it would be more functional :P~
KuTsuM
Comments: 140
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 17, 2005 5:30 pm
The snippet is fine, no real need for corrections
Fossa
Comments: 11
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 17, 2005 2:00 pm
Your code will not work rapid , there is no trigger in the on text event and its missing a bracket, also this part : if ($me isin $1-) && ($away = $false) && ($chan = $active) {
.echo -a $nick @ $chan $+ : $1-
halt
}
isnt needed since mIRC shows your nick said on the active channel.
here is a simple code for those nick highlights :
on *:text:$($+(*,$me,*)):#: Window @highlights | if ($chan != $active) .echo -bf @highlights $fulldate $chan : $nick : $1-

Noutrious
Comments: 353
 
mIRC Snippet:  Very simple Some1 Is talking to you snippet
Posted on Oct 17, 2005 6:37 am
on 1:TEXT:#: {
if ($chan = $active) { halt }
if ($away = $true) { .window @awaylog | .echo @awaylog $nick @ $chan $+ : $1- | halt }
if ($me isin $1-) && ($away = $false) && ($chan = $active) {
.echo -a $nick @ $chan $+ : $1-
halt
}

This would be more functional.
Bottom