DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ToAscii()

proto native int string::ToAscii ( )
private

Converts string's first character to ASCII code.

Аргументы
strString for convert to ASCII code
Возвращает
ascii code int.
int ascii = "M".ToAscii();
Print(ascii);
>> ascii = 77
proto void Print(void var)
Prints content of variable to console/log.