User talk:Silver Key

From Second Life Wiki
Revision as of 12:04, 14 December 2009 by Zai Lynch (talk | contribs) (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...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)