I have many animesh flying birds ready to go...however i require a script to move them around the sims, preferable one users can tell the birds where to fly... i will pay
Gregg
NEED TRAVELING SCRIPT
- Gregg Legendary
- Posts: 126
- Joined: Sun Jun 22, 2014 10:22 am
- Has thanked: 215 times
- Been thanked: 222 times
NEED TRAVELING SCRIPT
- These users thanked the author Gregg Legendary for the post (total 4):
- Ilan Tochner • Chris Namaste • Gusher Castaignede • Christine Nyn
- Chris Namaste
- Posts: 363
- Joined: Wed Jan 27, 2016 6:55 pm
- Has thanked: 1578 times
- Been thanked: 347 times
Re: NEED TRAVELING SCRIPT
wishing you GOOD LUCK finding someone that can give-sell it to you gregg,
writing this here to keep the topic 'up' as well
writing this here to keep the topic 'up' as well
- These users thanked the author Chris Namaste for the post (total 2):
- Gregg Legendary • Christine Nyn
Chris CreationZ url kitely market : https://www.kitely.com/market?store=914 ... &sort=date
Because ultimately we are not the avatars we create. We are not the pictures on the film stock. We are the light that shines through.Jim Carrey
Because ultimately we are not the avatars we create. We are not the pictures on the film stock. We are the light that shines through.Jim Carrey
- Baroun Tardis
- Posts: 6
- Joined: Sun Feb 28, 2021 8:04 pm
- Has thanked: 2 times
- Been thanked: 10 times
Re: NEED TRAVELING SCRIPT
Are you talking about a list of places in a sim, where the user can say "Go home!" or "Go to the store!" and they go there?Gregg Legendary wrote: ↑Mon Jan 01, 2024 6:22 amI have many animesh flying birds ready to go...however i require a script to move them around the sims, preferable one users can tell the birds where to fly... i will pay
Gregg
- These users thanked the author Baroun Tardis for the post (total 3):
- Chris Namaste • Gregg Legendary • Christine Nyn
- Gusher Castaignede
- Posts: 261
- Joined: Tue Mar 17, 2015 10:03 pm
- Has thanked: 294 times
- Been thanked: 254 times
Re: NEED TRAVELING SCRIPT
If you haven't got someone yet please send me more details to brainstorm...
preferably on discord where discussions are logged and saved live...
RamsesTosh#1191
preferably on discord where discussions are logged and saved live...
RamsesTosh#1191
Gregg Legendary wrote: ↑Mon Jan 01, 2024 6:22 amI have many animesh flying birds ready to go...however i require a script to move them around the sims, preferable one users can tell the birds where to fly... i will pay
Gregg
- These users thanked the author Gusher Castaignede for the post (total 3):
- Chris Namaste • Gregg Legendary • Christine Nyn
- Gregg Legendary
- Posts: 126
- Joined: Sun Jun 22, 2014 10:22 am
- Has thanked: 215 times
- Been thanked: 222 times
Re: NEED TRAVELING SCRIPT
Let me refine my request a bit...
I need a script for my critters that a user who buys or receives my critter can set home, then set points to go to eventually returning home.
I need a script for my critters that a user who buys or receives my critter can set home, then set points to go to eventually returning home.
- These users thanked the author Gregg Legendary for the post:
- Christine Nyn
- Gusher Castaignede
- Posts: 261
- Joined: Tue Mar 17, 2015 10:03 pm
- Has thanked: 294 times
- Been thanked: 254 times
Re: NEED TRAVELING SCRIPT
More details..... an object that returns home.... that's all?
An object that responds by receiving commands?
What causes the objects to wander off and get lost?
Every detail matters for coding good...
An object that responds by receiving commands?
What causes the objects to wander off and get lost?
Every detail matters for coding good...
Gregg Legendary wrote: ↑Tue Jan 09, 2024 1:42 amLet me refine my request a bit...
I need a script for my critters that a user who buys or receives my critter can set home, then set points to go to eventually returning home.
- These users thanked the author Gusher Castaignede for the post (total 2):
- Gregg Legendary • Christine Nyn
- Gregg Legendary
- Posts: 126
- Joined: Sun Jun 22, 2014 10:22 am
- Has thanked: 215 times
- Been thanked: 222 times
Re: NEED TRAVELING SCRIPT
The script I currently tried to use that worked in IWZ and still works in SL, just uses setpos to define a set pattern. I works in OS grids however over time it drifts where that pattern is because as I'm informed by coders when they wrote to OS to include VAR regions there's an error in the maths that causes such moving things to drift over time. I am told this will likely NEVER be fixed. Knowing Ubit's coding behavior I kinda believe this. So i figure the only way to guarantee they don't drift is to set a home point. define coordinates along the way and them make it return home at the end of those coordinates. Generally the best way I've seen this done is using dialogue boxes that write the information to notecard. Excuse me if not very clear, I am very Ill and my mind isn't as sharp as it used to be.
Gregg
Gregg
- These users thanked the author Gregg Legendary for the post:
- Christine Nyn
- Christine Nyn
- Posts: 83
- Joined: Sat Mar 07, 2020 10:20 pm
- Has thanked: 271 times
- Been thanked: 151 times
Re: NEED TRAVELING SCRIPT
If drift occurs over time that suggests that the script you mention is using relative offsets to move from one position to the next. Rounding errors would then cause drift. You could avoid that entirely by making your waypoints absolute sim coordinates and using llSetRegionPos instead of llSetPos.
Your point about a start position is valid as that allows a bird for example to be rezzed and then flutter around a path that does not stray too far from its origin. The way to do that is most probably to use the start position, calculate the the resultant absolute waypoints and read them into a list, then simply use the list with suitable time delays to move the bird. the only thing i would add there is to NOT use llSleep in any way to get your delays.
Better than taking the SetPos route would be to use the generated waypoints list to drive a series of llKeyFramedMotion shifts as then you could get smooth timed movement between waypoints. That would give you almost zero drift.
Your point about a start position is valid as that allows a bird for example to be rezzed and then flutter around a path that does not stray too far from its origin. The way to do that is most probably to use the start position, calculate the the resultant absolute waypoints and read them into a list, then simply use the list with suitable time delays to move the bird. the only thing i would add there is to NOT use llSleep in any way to get your delays.
Better than taking the SetPos route would be to use the generated waypoints list to drive a series of llKeyFramedMotion shifts as then you could get smooth timed movement between waypoints. That would give you almost zero drift.
- These users thanked the author Christine Nyn for the post (total 3):
- Ilan Tochner • Gregg Legendary • Chris Namaste