llIntegerToBase64
Revision as of 10:32, 22 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: string llIntegerToBase64( integer number );280 | Function ID |
0.0 | Forced Delay |
10.0 | Energy |
Returns a string that is a Base64 big endian encode of number
• integer | number |
Caveats
Examples
string ASCII7ToString(integer letter)
{
if(letter >= 0x80 || letter < 0) return "";//Not valid ascii7 character
return llBase64ToString(llIntegerToBase64(letter << 24));
}
Notes
Only the first 6 of the 8 characters returned are needed to decoded it back into an integer.
See Also
Functions
• | llBase64ToInteger | |||
• | llBase64ToString | |||
• | llStringToBase64 |