Determines the ASCII character code of a character in a string.
Format("%c")
can be used to convert the character to a string.
var c = GetChar(GetPlayerName(0), 0);
if (Inside(c, 97, 122)) c-=32;
if (Inside(c, 65, 90)) Log("Your name begins with the %dth letter of the alphabet.", c-64)
Gets the first character of the name of the first player.