Top

/charmap - Character Map Alias


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Nov 10, 2008
Last Updated  Jan 13, 2009
Tags  character  map  mirc 

Introduction

Update: You now only have to type "/charmap". It will display the first 255 characters. The reason why you can't display more characters is because the characters beyond 255 are exact repeats and therefore inaccurate.

Note: The variables have been changed from global to local. This way, no "/unset" commands are needed.

Grab the Code

alias charmap {
  var %loop = 255, %num = 0
  while (%loop > 0) {
    inc %num
    echo -a %num -> $chr(%num)
    dec %loop
  }
}

Comments

  (2)  RSS
napa182
Comments: 1,478
 
mIRC Snippet:  /charmap - Character Map Alias
Posted on Nov 10, 2008 8:32 pm
um one thing is you should only have it show from $chr(1) - $chr(256) cuz anything after it repeats it's self and you will get the wrong chr number.
mountaindew
Comments: 1,823
 
mIRC Snippet:  /charmap - Character Map Alias
Posted on Nov 10, 2008 8:38 pm
Use /var instead of /set so they're local variables and you won't need to /unset them.

Commenting Options

Register or Login to Hawkee.com or login with your Facebook account by clicking the button below.

Bottom