Chr Code List
Platform: mIRC
Published Dec 19, 2007
Updated Dec 20, 2007
just add into remotes and type /ascii
dialog p_ascii {
title "Ascii Codes"
size -1 -1 91 120
option dbu
box "Ascii", 1, 2 1 86 103
list 3, 4 9 80 90, size vsbar
link "X-Static Codes", 2, 23 107 40 8
}
on *:DIALOG:p_ascii:*:*: {
if ($devent == init) {
var %i 1
while (%i < 257) {
did -a $dname 3 $chr(%i) - %i
inc %i
}
}
elseif ($devent == sclick) && ($did == 2) {
run http://xstatic.webtastix.co.nz/
}
}
alias ascii {
if ($dialog(p_ascii)) { dialog -x p_ascii p_ascii }
else { dialog -m p_ascii p_ascii }
}