I have 7 stop points on my tour.
then i move from one to the other with llMoveToTarget(nextStop, 1.5)
Well, all fine if the stops are within a 60m distance(which is about how far llMoveToTarget moves i think) but of course they are not.
So rather than adding points to pass i thought it should be possible to calculate them...
But either my math isnt enough or i dont see it yet.
This is a try approach... it doesnt work!
vector vDest1 = <45,230,20>;
vector vDest2 = <95,180,40>;
vector CalculateNextStep(vector next)
{
float dist;
dist = llVecMag(next - vDest1);
while(dist > 60)
dist = dist - dist/2;
next = llVecNorm(next)*dist;
next = next * llVecMag(next);
return next;
}
default
{
state_entry()
{
llSay(0,(string)CalculateNextStep(vDest2));
}
}
I am sure there is a way to calculate this ... please any hints appreciated MUCH
)or just tell me to make a "real" balloon as vehicle, i just thought my approach is simlper and easier

Lulu