Simple Coordinate Plane: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
=== Description ===
=== Description ===


The script is undergoing huge developments and modifications, due to limitations of llSetParameters functionality.
Well, I've figured out a more effective way of using the UUID2Channel method, you know.
The one where you put a hexadecimal prefix infront of a person's UUID.


Will post it soon, already have a backdoor plan to get around it. :D
=== The Script ===
 
// Project Neox was here.
integer key2Hex(key id) {
    integer f = (integer)("0x" + (string) id);
    if(f > 0) f = f * -1;
    return f;
}

Revision as of 16:15, 8 April 2010

Description

Well, I've figured out a more effective way of using the UUID2Channel method, you know. The one where you put a hexadecimal prefix infront of a person's UUID.

The Script

// Project Neox was here. integer key2Hex(key id) {

   integer f = (integer)("0x" + (string) id);
   if(f > 0) f = f * -1;
   return f;

}