• Char covert problem
    1 replies, posted
This is my code code=55 local convert=string.char(4,1,0,0,0,0,math.floor(224 + (code/16)), code % 16) print(convert) output: ?? here what is use of the char(4,1,0,0,0,0). any one have to answer to me.
That's just printing the string you created from those bytechars, you've given no context as to what this string is used for.
Sorry, you need to Log In to post a reply to this thread.