Lowercase nick voicer
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 3.3 |
| Scores Submitted | 3 |
| Date Added | Nov 22, 2007 |
| Last Updated | Nov 22, 2007 |
| Tags | auto channel voice |
|
|
Introduction
this one is for channels and/or servers where there is a split between a capital letter starting nick and a lowercase starting nick getting a voice.
this script sets a loop in which it looks for the first letter before voicing. this is to overcome nicks that have already been taken and therefore other things have been added to keep the nick. ie.. lucy (taken) therefore `lucy or {lucy}
once it has found the first letter, it checks whether it is upper or lowercase. if it is lowercase then it gives voice
as usual.. change channel for your own.
Comments people please?
mIRC Snippet:
Lowercase nick voicer
Posted on Nov 22, 2007 6:54 pm
Posted on Nov 22, 2007 6:54 pm
Please use while loops. They are much faster then goto's.
mIRC Snippet:
Lowercase nick voicer
Posted on Nov 22, 2007 8:00 pm
Posted on Nov 22, 2007 8:00 pm
this a first at a very complex script for me. i not know while loops as yet heh. still on the basics. have made note though to look up what they are
mIRC Snippet:
Lowercase nick voicer
Posted on Jan 30, 2008 9:20 am
Posted on Jan 30, 2008 9:20 am
| Code: |
| alias -l issub { if ($1- === $lower($1-)) { return 1 } } on *:JOIN:#:{ if ($nick != $me) && ($issub($nick)) { mode # +v $nick } } |
My version of this - i don't see any need for those loops or anything like that.
mIRC Snippet:
Lowercase nick voicer
Posted on Jan 30, 2008 9:21 am
Posted on Jan 30, 2008 9:21 am
Ahh, yeah - should add ($me isop $chan) || ($me ishop $chan) checking at the on join event too. :)
mIRC Snippet:
Lowercase nick voicer
Posted on Jan 30, 2008 4:45 pm
Posted on Jan 30, 2008 4:45 pm
i thought i had to put it in as some nicks are taken and people put other things at the start of nicks.. so i set the check to scroll through till it found the first letter.. ie.. ```sandy, or {sandy}, or 123sandy.. something like that. that is why i did the script the way i did. if there easier way of checking the nick for the first letter inbetween the crap at the start of it, i would be most interested. thanks for the advice there though Noutrious :)
mIRC Snippet:
Lowercase nick voicer
Posted on Feb 8, 2008 7:45 am
Posted on Feb 8, 2008 7:45 am
oh, now got the point, then it could be like this:
You can get symbols $chr by using //echo -a $asc(`) for example and then seperate the characters to remove from nick, so making the nickname not equal to previous one - not voicing the nick.
| Code: |
| alias -l issub { if ($1- === $lower($remove($1-,$chr(40),$chr(41),$chr(96))) { return 1 } } |
You can get symbols $chr by using //echo -a $asc(`) for example and then seperate the characters to remove from nick, so making the nickname not equal to previous one - not voicing the nick.
mIRC Snippet:
Lowercase nick voicer
Posted on Feb 8, 2008 4:49 pm
Posted on Feb 8, 2008 4:49 pm
ah... many thanks there Noutrious :) apprerciate the feedback and am working on the explinations of my scripts better for future postings





