Difference between revisions of "User talk:Silver Key"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 16: Line 16:
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)
: 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)
:: I think str and id are only limited from the script memory limit. Have tested both with length of 20480 bytes in Mono and around of 6144 bytes in LSL. (Second Life Server 1.34.0.140927) [[User:Kuraiko Yoshikawa|Kuraiko Yoshikawa]] 01:56, 15 December 2009 (UTC)

Latest revision as of 18:56, 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)
I think str and id are only limited from the script memory limit. Have tested both with length of 20480 bytes in Mono and around of 6144 bytes in LSL. (Second Life Server 1.34.0.140927) Kuraiko Yoshikawa 01:56, 15 December 2009 (UTC)