Originally posted by Eggy Lippmann
This forum is too empty. I want more posts to read damn it!
Somebody get some noobies to ask scripting questions or something.
It's all your fault, cat. You and that blasted wiki of yours! Now the noobies have no questions to ask anymore!
This forum is too empty. I want more posts to read damn it!
Somebody get some noobies to ask scripting questions or something.
It's all your fault, cat. You and that blasted wiki of yours! Now the noobies have no questions to ask anymore!
OK! Here's a simple question.
I'm tinkering with a simple elevator.
so far i have been able to create one that responds to simple stuff like init, up, down, stop, d20 (set distance to 20) etc.
Here's some code snippets.
integer distance = 10;
//initially i set the distance to some number
.
.
.
// this initial code to configure the elevator object
bottom = llGetPos();
top = bottom + <0,0,distance>;
llSetStatus(STATUS_PHYSICS,TRUE);
llSleep(0.1);
llMoveToTarget(bottom, 0.1);
llWhisper(0,"ready"

.
.
.
if(message == "up"

{
llMoveToTarget(top, 0.5);
}
everything works just fine... except that i can't put any value greater than 50 or 55 for distance. If i do then nothing happens.
Is there a limitation to how far llMoveToTarget can go?
I've seen elevators go much higher than 50 or so meters so perhaps someone could tell me where my approach is incorrect.
thanks ever so much =)
wizzie