Difference between revisions of "32bit Hash"

From Second Life Wiki
Jump to navigation Jump to search
(new)
 
(No difference)

Revision as of 12:00, 27 April 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));   
}