Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function stringToMisc( text )
- local result = ""
- for i=1,#text do
- local sText = string.sub( text, i, i )
- local dec = string.byte( sText )
- result = result.. string.char(dec+96)
- end
- return result
- end
Advertisement
Add Comment
Please, Sign In to add comment