Difference between revisions of "User talk:Silver Key"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '== llMessageLinked == Hi Silver :-)<br> I noticed your addition to the llMessageLinked article, but I can't repro this on Server 1.34.0.140927. Could it be that your scri...')
 
Line 15: Line 15:
}</lsl>
}</lsl>
Greetz, --[[File:Zai_signature.png|45px|link=User:Zai Lynch]] <sup><small>([[User talk:Zai Lynch|talk]]|[[Special:Contributions/Zai Lynch|contribs]])</small></sup> 19:04, 14 December 2009 (UTC)
Greetz, --[[File:Zai_signature.png|45px|link=User:Zai Lynch]] <sup><small>([[User talk:Zai Lynch|talk]]|[[Special:Contributions/Zai Lynch|contribs]])</small></sup> 19:04, 14 December 2009 (UTC)
: There is a limit like this, 63 in [[llSetObjectName]]. An old bug used to let us have very long temporary names but they fixed it. Can that be where you are seeing a cutoff? --[[User:Cerise Sorbet|Cerise Sorbet]] 19:44, 14 December 2009 (UTC)

Revision as of 12:44, 14 December 2009

llMessageLinked

Hi Silver :-)
I noticed your addition to the llMessageLinked article, but I can't repro this on Server 1.34.0.140927. Could it be that your script is lacking memory and that the string is therefor beeing truncated? If not, can you post the script snippet you used to repro this, along with the Server version and location? It would be a bug then... I used: <lsl> string something = "012345678901234567890123456789012345678901234567890123456789"; default{

   touch_start(integer total_number){
       something = something + "a";
       llMessageLinked(LINK_THIS, 0, something, "");
   }
   
   link_message(integer sender, integer num, string str, key id){
       llOwnerSay((string)llStringLength(str));
   }

}</lsl> Greetz, --Zai signature.png (talk|contribs) 19:04, 14 December 2009 (UTC)

There is a limit like this, 63 in llSetObjectName. An old bug used to let us have very long temporary names but they fixed it. Can that be where you are seeing a cutoff? --Cerise Sorbet 19:44, 14 December 2009 (UTC)