Difference between revisions of "User:Talia Tokugawa/scripts"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
Going to place some example scripts in here...
 
*Dialog menu example [https://wiki.secondlife.com/wiki/User:Talia_Tokugawa/scripts/DialogMenu Link]
 


Code Snippets:
Code Snippets:

Revision as of 20:48, 16 June 2008

  • Dialog menu example Link


Code Snippets:

  • character replacement.
    • These two are for replacing escape characters in a string that is a not compiled with the script

<lsl> text=llDumpList2String(llParseString2List(text, ["\\\""],[]), "\""); </lsl> <lsl> text=llDumpList2String(llParseString2List(text, ["\\\'"],[]), "\'"); </lsl>