mIRC [beep]scirpt

By ISOtuxraceINC on Jan 31, 2009

This script is just a beep script... you will be beeped when your nick is said
you can add another line in the similar format if you are often alled somthing short inplace of your nick (ie. mushwars can be called mush, mushie, etc.)

if you are going to add these, replace with your alternate nick name. ( ie. on :TEXT:mushie*:# { .beep 2 } )

**note: this was my second scipt, I realize that you can do nick highlighting in your address book, as well as a beep, so this is obsolete now.

This script is just a beep script... you will be beeped when your nick is said
you can add another line in the similar format if you are often alled somthing short inplace of your nick (ie. mushwars can be called mush, mushie, mushy, etc.)

on *:TEXT:*:# {
if ( $me isin $1- ) { .beep 2 }
else { halt }
}
on *:ACTION:*:# {
if ( $me isin $1- ) { .beep 2 }
else { halt }
}
on *:TEXT:*<your alternate nick>*:# { .beep 2 }
on *:ACTION:*<your alternate nick>*:# { .beep 2 } 

Comments

Sign in to comment.
TheImrac   -  Jan 31, 2009

-Signed and Dated with napalm

 Respond  
napalm`   -  Jan 31, 2009

You two should just quit while you're behind.

 Respond  
Aucun50   -  Jan 31, 2009

Ahh yes that would work, takes the fun out of it tho :(

 Respond  
napa182   -  Jan 31, 2009

or you can use mirc's highlite option

ur halts are unneeded

 Respond  
Aucun50   -  Jan 31, 2009

I see your new to this welcome first off:

This script is just a beep script... you will be beeped when your nick is said
you can add another line in the similar format if you are often alled somthing short inplace of your nick (ie. mushwars can be called mush, mushie, mushy, etc.)

You NEED ; like
;This script is just a beep script... you will be beeped when your nick is said
;you can add another line in the similar format if you are often alled somthing short inplace of ;your nick (ie. mushwars can be called mush, mushie, mushy, etc.)

So that it doesn't mess with the script, your on text can be all in one event like:

on *:TEXT:*:#: {
  if ($me isin $1-) { .beep 2 }
  elseif (<your alternate nick> isin $1-) { .beep 2 }
  else { halt }
}

Same with your on ACTION:

on *:ACTION:*:# {
  if ($me isin $1-) { .beep 2 }
  elseif (<your alternate nick> isin $1-) { .beep 2 }
  else { halt }
}

If you have many script try putting them into 1 not 5-6 when you post them here like neater and doesn't fill up the site as much.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.