Tagged Questions
The lsl tag has no wiki summary.
3
votes
1answer
92 views
getting the display text of an object
This is related to LSL scripting in Second Life.
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 ...
3
votes
1answer
364 views
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 ...
3
votes
9answers
747 views
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 ...
3
votes
5answers
606 views
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, ...
2
votes
2answers
34 views
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 ...
2
votes
3answers
91 views
Using (Java) Eclipse abilities in other programming language
I use Eclipse mainly for LSL (linden Scripting language). The plug-in for this language does not provide things like templates or task-tag recognition. Is there any way that these kind of features in ...
2
votes
1answer
597 views
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?
2
votes
1answer
115 views
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?
2
votes
3answers
497 views
How can I hide an object's name in chat in LSL?
Given an object named "MyObject", an llSay(0, "Hello World"); from a script inside the object will look like this in chat:
MyObject: Hello World
How can I get it to just look like this?
Hello ...
2
votes
5answers
304 views
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 ...
2
votes
2answers
163 views
Negotiating a common “network-channel” in a peer-to-peer system
Is there a common or established algorithm for peer-nodes in a network to decide on a unique "network-channel" (or any other form of semi-secret identifier)?
The environment I'm working in is ...
1
vote
1answer
82 views
Issue with timer in .lsl (Linden Scripting Language)
Have a problem with the script below written in .lsl (Linden Scripting Language)
It is designed to let one renter A (first renter) to rent the space and can rent out the space for renter B (second ...
1
vote
2answers
440 views
How can I change a portion of a string in the Linden Scripting Language (LSL)?
I have a string:
string cover = "withaname"
I would like to change the withaname to withnoname.
I would then like to change withnoname to withanamegoose.
What is the best way to accomplish this ...
1
vote
3answers
616 views
Problem updating MySQL DB using LSL
I have the following problem. I'm updating my mysql database using LSL. There is a corresponding table in the database and there is update.php with appropriate settings (have tested it with html ...
1
vote
9answers
481 views
Simplest possible voting/synchronization algorithm
What would be a simplest algorithm one or more people could use to decide who of them should perform some task? There is one task, which needs to be done only once, and one or more people. People can ...