32bit Hash

From Second Life Wiki
Revision as of 06:14, 30 September 2007 by Ppaatt Lynagh (talk | contribs) (add the {{LSL Header}} - all these {{LSL Examples}} should include that header)
Jump to navigation Jump to search

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

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