Difference between revisions of "32bit Hash"
Jump to navigation
Jump to search
m (add Note: The Seedable_PRNG example presents MD5 of MD5 of MD5 of ... as pseudo-random numbers) |
Huney Jewell (talk | contribs) m (Change example according to LSL naming standard) |
||
Line 1: | Line 1: | ||
{{LSL Header}} | {{LSL Header}} | ||
Here's a function to turn | Here's a function to turn an UUID into an integer. | ||
<pre> | <pre> | ||
integer | integer Key2Integer(string inkey) | ||
{ | { | ||
return (integer)("0x" + llGetSubString(llMD5String(inkey,0), 0, 7)); | return (integer)("0x" + llGetSubString(llMD5String(inkey,0), 0, 7)); |
Revision as of 04:08, 3 October 2007
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Here's a function to turn an UUID into an integer.
integer Key2Integer(string inkey) { return (integer)("0x" + llGetSubString(llMD5String(inkey,0), 0, 7)); }
Note: The Seedable_PRNG example presents MD5 of MD5 of MD5 of ... as pseudo-random numbers