User talk:Silver Key

From Second Life Wiki
Revision as of 12:44, 14 December 2009 by Cerise Sorbet (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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)