mIRC Home    About    Download    Register    News    Help

Print Thread
#77427 01/04/04 12:04 AM
Joined: Dec 2003
Posts: 259
M
milosh Offline OP
Fjord artisan
OP Offline
Fjord artisan
M
Joined: Dec 2003
Posts: 259
Hi, to you all. Is there a way to use cyrilic letters in private messages? Like I can use this †

Thank you!

#77428 01/04/04 12:11 AM
Joined: Mar 2003
Posts: 611
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Mar 2003
Posts: 611
use the ascii code for the font you are using, remember if the person reading is using a different font, they may not see the same thing as you.


billythekid
#77429 01/04/04 12:20 AM
Joined: Dec 2003
Posts: 259
M
milosh Offline OP
Fjord artisan
OP Offline
Fjord artisan
M
Joined: Dec 2003
Posts: 259
How to findout the ascii code for some letter in my font? Is there an acsii for cyrilic letters in fixedsys example (it's mIRC default font smirk)

Thanx!

#77430 01/04/04 12:29 AM
Joined: Mar 2003
Posts: 611
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Mar 2003
Posts: 611
i use this alias
Code:
 
ascii {
  window -Ck0d @ASCII-NUMBERS 372 1 265 700
  var %f 1
  while %f < 257 {
    if %f == 2 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (CTRL + B) }
    elseif %f == 3 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (CTRL + K) }
    elseif %f == 15 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (CTRL + O) }
    elseif %f == 022 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (CTRL + R) }
    elseif %f == 031 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (CTRL + U) }
    elseif %f == 032 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f (SPACE) }
    elseif %f == 0160 { echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f ("HARD SPACE") }
    else echo @ASCII-NUMBERS $chr(%f) - alt + 0 $+ %f
    inc %f
  }
}

 

i read somewhere that it only needs to loop to 255 not 256 but i didnt change it, put that in aliases and type /ascii to show the commands to type for all available characters on the default font


billythekid
#77431 01/04/04 12:41 AM
Joined: Dec 2003
Posts: 259
M
milosh Offline OP
Fjord artisan
OP Offline
Fjord artisan
M
Joined: Dec 2003
Posts: 259
It works reallyyyyyyyyy great. Thank you! grin

#77432 01/04/04 07:44 PM
Joined: Mar 2003
Posts: 611
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Mar 2003
Posts: 611
no problem
wink


billythekid

Link Copied to Clipboard