chr(val)

val = A number representing an ASCII symbol

 

This will let the user type in a number and the variable will change to the corresponding ASCII symbol. If the user typed in 97, for example, the variable using the chr function will turn into "a". Please see the  ASCII table in the Extras section for a full list of the ASCII table.

 

Example #1:

show_message(chr(97));

 

Example #2:

num = get_integer("numeral to ascii converter","");

num = chr(num);

 

cityscape - Revision #1