Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- list destinazioni=[
- <64.691162,85.801987,22.183308>,
- <55.000000,98.500000,22.183308>,
- <67.500000,92.500000,22.183308>,
- <71.000000,85.500000,22.183308>,
- <64.691162,85.801987,22.183308>
- ];
- default
- {
- touch_start(integer count)
- {
- integer i;
- for(i=0;i<llGetListLength(destinazioni);i++)
- {
- vector destinazione=llList2Vector(destinazioni,i);
- while(llVecDist(destinazione,llGetPos())>.1)
- {
- llSetPos(destinazione);
- llSleep(0.1);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement