Don't click here unless you want to be banned.

LSL Wiki : llBase64ToString

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl809.us.archive.org
string llBase64ToString(string str)

Converts a Base 64 string to a conventional string. If the conversion creates any unprintable characters, they are converted to question marks (this behavior is different then llUnescapeURL).

Compare with llBase64ToInteger, llStringToBase64 and llIntegerToBase64.

Raw Printable Character Ranges
Decimal Hex
10 0xA
32 -> 127 0x20 -> 0x7F
Example:
default
{
    state_entry()
    {
        string test = llBase62ToString("SGVsbG8gd29ybGQh");
        llSay(0, (string)test); //The result is "Hello World!".
    }
}


This article wasn't helpful for you? Maybe the related article at the LSL Portal is able to bring enlightenment.

Functions | Crypto | Communications | Strings
Comments [Hide comments/form]
Attach a comment to this page: