diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index 55b34a3..b299165 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -700,6 +700,13 @@ Returns a pseudo-random number between [0, mag). + + key llGenerateKey(); + + Generates a key (SHA-1 hash) using UUID generation to create a unique key.\n + As the UUID produced is versioned, it should never return a value of NULL_KEY.\nThe specific UUID version is an implementation detail that has changed in the past and may change again in the future. Do not depend upon the UUID that is returned to be version 5 SHA-1 hash. + + vector llGetAccel(void); @@ -3281,7 +3288,7 @@ - + void llWanderWithin(vector Origin, float Distance, list Options); Sets a character to wander about a central spot within a specified radius. diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index f9a5592..18e2374 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -7,6 +7,15 @@
+
+

2013-02-25 - Release 2.50.0

+
+ * Function added: +
    +
  • llGenerate()
  • +
+
+

2013-02-14 - Release 2.49.0

diff --git a/trunk/SecondLife/SecondLifeMain.cs b/trunk/SecondLife/SecondLifeMain.cs index 779657d..b7dfa3d 100644 --- a/trunk/SecondLife/SecondLifeMain.cs +++ b/trunk/SecondLife/SecondLifeMain.cs @@ -1778,6 +1778,12 @@ namespace LSLEditor return dblValue; } + public key llGenerate() + { + Verbose("llGenerate()"); + return key.NULL_KEY; + } + public void llFleeFrom(vector Source, Float Distance, list Options) { Verbose("llFleeFrom({0}, {1}, {2})", Source, Distance, Options); @@ -4306,7 +4312,7 @@ namespace LSLEditor Verbose("VolumeDetect(" + detect + ")"); } - public void llWanderWithin(vector Origin, Float Distance, list Options) + public void llWanderWithin(vector Origin, vector Distance, list Options) { Verbose("llWanderWithin({0}, {1}, {2})", Origin, Distance, Options); }