32bit Hash: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
Gigs Taggart (talk | contribs)
new
 
Gigs Taggart (talk | contribs)
(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));   
}