Questions tagged [linden-scripting-language]

Linden Scripting Language, or LSL, is the programming language used in the game Second Life.

Linden Scripting Language, or LSL, is the programming language used in the game Second Life.

68 questions
6
votes
11 answers

Does anybody think that learning Linden Scripting Language is worth it?

I'm just looking for people's opinions on this... I really got worried when Second Life came out; I thought it was going to be a game changer for the Internet; Until I realized that outside of programmers and college students there really aren't…
leeand00
  • 25,510
  • 39
  • 140
  • 297
6
votes
7 answers

Useful Developer Resources in Second Life

Second Life is fun to play with, and some developers are creating content there, but I was wondering what useful resources (if any) are available in Second Life for professional software developers. Discussion groups Education/training Vendor…
Kristopher Johnson
  • 81,409
  • 55
  • 245
  • 302
5
votes
5 answers

LSL communications

Years ago I created a programming collaboratory in Diversity University MOO -- a room written in MOOcode that used TCP/IP to communicate with a perl server back at my campus to compile and execute C, Perl, Bash and other programs and return results…
dick.seabrook
4
votes
2 answers

Concatenate preprocessor defines to form a string

I have this: #define VERSION_MAJOR 1 #define VERSION_MINOR 0 #define REVISION b #define VERSION VERSION_MAJOR.VERSION_MINOR REVISION #define _STRINGIFY(x) #x #define STRINGIFY(x) _STRINGIFY(x) integer version_major = VERSION_MAJOR; integer…
Pedro Gimeno
  • 2,837
  • 1
  • 25
  • 33
3
votes
7 answers

Is there any form of Version Control for LSL?

Is there any form of version control for Linden Scripting Language? I can't see it being worth putting all the effort into programming something in Second Life if when a database goes down over there I lose all of my hard work.
leeand00
  • 25,510
  • 39
  • 140
  • 297
3
votes
1 answer

Getting the display text of an object

I would like to know whether there is any mechanism to retrieve the display text of an object. As far as I know, there's no direct LSL function for that. Isn't there any property that we can use to extract this information?
sura
  • 1,471
  • 4
  • 17
  • 25
3
votes
2 answers

How can I read a random line from a notecard in LSL?

I have a notecard with a different word on each line, and I'd like to be able to select from the lines randomly. How can I do that?
btubbs
  • 1,845
  • 1
  • 16
  • 19
3
votes
2 answers

My LSL particles won't go away even though I've deleted the script. How can I turn them off?

If you have a script that creates a particle system and then delete the script from the prim, the particles don't seem to go away. How can I get rid of them?
btubbs
  • 1,845
  • 1
  • 16
  • 19
3
votes
1 answer

How do I make a stationary image out of particles in LSL?

LSL (Linden Scripting Language) allows for various particle effects using the llParticleSystem function. What are the right parameters to give to that function in order to make a non-moving particle-based image hover over the prim? (This question…
btubbs
  • 1,845
  • 1
  • 16
  • 19
2
votes
1 answer

video chatting in WebGL

I would like to develop a virtual classroom contains projector for presenting power point's slides and video chatting.all these tools will be developed using WebGL. Is there any possibility for including video chatting, and presenting power point's…
2
votes
1 answer

Can a LSL Script "touch" an object running a script

Can a Linden LSL script running in an object TOUCH another object so as to trigger it, as if an avatar touched it? I have a box that runs a script when it is touched by an avatar. I want another box running a script to "touch" it for me and turn…
2
votes
2 answers

LSL HttpServer - Serving large Notecards from Prim Inventory on Secondlife

I am writing a Media-HUD that runs totally on local notecard files stored within the prim's inventory, with notecards named like index.html, style.css, icon.svg etc. My hope is to use the LSL HttpServer functions, and the script's URL to create a…
Thomas Harris
  • 573
  • 4
  • 14
2
votes
0 answers

Inconsistent Results With Base64 Decode PHP

I have a script in second life building a json string which is base64 encoded and sent to a PHP script. Login(string action) { string json_string = "{\"Action\": \""+action+"\", \"Name\": \""+simName+"\", \"OwnersKey\": \""+ (string)llGetOwner()…
Tom Hanson
  • 873
  • 10
  • 39
2
votes
2 answers

How to connect JAVA with LSL(Linden Scripting Language)?

I want to connect the java program to the LSL.I do have so many sensors in SL.I want to give real world readings to these sensors by a java program i.e input from outside SL.Is it possible? If its possible then how.Please do help me.If my given…
Abhiz
  • 970
  • 1
  • 16
  • 36
2
votes
2 answers

Problems with making the root prim filter the child prims by name, than change only the child prims with a certen name. Help please

I need some help. I am working a script that will listen to a channel, take the message and use it as a texture command (this part i have), than change only the child prims that have the right name (this part i can not figure out). I know it is…
AlyEvanier
  • 21
  • 2
1
2 3 4 5