Difference between revisions of "32bit Hash"

From Second Life Wiki
Jump to navigation Jump to search
m (add the {{LSL Header}} - all these {{LSL Examples}} should include that header)
Line 1: Line 1:
{{LSL Header}}
Here's a function to turn a UUID into a integer.
Here's a function to turn a UUID into a integer.



Revision as of 06:14, 30 September 2007

Here's a function to turn a UUID into a integer.

integer keytoint(string inkey)
{
    return (integer)("0x" + llGetSubString(llMD5String(inkey,0), 0, 7));   
}