NEED TRAVELING SCRIPT

Post requests for goods or services
Post Reply
User avatar
Gregg Legendary
Posts: 123
Joined: Sun Jun 22, 2014 10:22 am
Has thanked: 214 times
Been thanked: 213 times

NEED TRAVELING SCRIPT

Post by Gregg Legendary »

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
These users thanked the author Gregg Legendary for the post (total 4):
Ilan TochnerChris NamasteGusher CastaignedeChristine Nyn
User avatar
Chris Namaste
Posts: 352
Joined: Wed Jan 27, 2016 6:55 pm
Has thanked: 1545 times
Been thanked: 330 times

Re: NEED TRAVELING SCRIPT

Post by Chris Namaste »

wishing you GOOD LUCK finding someone that can give-sell it to you gregg,

writing this here to keep the topic 'up' as well :)
These users thanked the author Chris Namaste for the post (total 2):
Gregg LegendaryChristine 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
User avatar
Baroun Tardis
Posts: 6
Joined: Sun Feb 28, 2021 8:04 pm
Has thanked: 2 times
Been thanked: 10 times

Re: NEED TRAVELING SCRIPT

Post by Baroun Tardis »

Gregg Legendary wrote:
Mon Jan 01, 2024 6:22 am
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
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?
These users thanked the author Baroun Tardis for the post (total 3):
Chris NamasteGregg LegendaryChristine Nyn
User avatar
Gusher Castaignede
Posts: 261
Joined: Tue Mar 17, 2015 10:03 pm
Has thanked: 291 times
Been thanked: 253 times

Re: NEED TRAVELING SCRIPT

Post by Gusher Castaignede »

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
Gregg Legendary wrote:
Mon Jan 01, 2024 6:22 am
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
These users thanked the author Gusher Castaignede for the post (total 3):
Chris NamasteGregg LegendaryChristine Nyn
Image
"lnteractivity, Variety, Ease of Use"
Visit my store at Country Manor
User avatar
Gregg Legendary
Posts: 123
Joined: Sun Jun 22, 2014 10:22 am
Has thanked: 214 times
Been thanked: 213 times

Re: NEED TRAVELING SCRIPT

Post by Gregg Legendary »

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.
These users thanked the author Gregg Legendary for the post:
Christine Nyn
User avatar
Gusher Castaignede
Posts: 261
Joined: Tue Mar 17, 2015 10:03 pm
Has thanked: 291 times
Been thanked: 253 times

Re: NEED TRAVELING SCRIPT

Post by Gusher Castaignede »

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...
Gregg Legendary wrote:
Tue Jan 09, 2024 1:42 am
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.
These users thanked the author Gusher Castaignede for the post (total 2):
Gregg LegendaryChristine Nyn
Image
"lnteractivity, Variety, Ease of Use"
Visit my store at Country Manor
User avatar
Gregg Legendary
Posts: 123
Joined: Sun Jun 22, 2014 10:22 am
Has thanked: 214 times
Been thanked: 213 times

Re: NEED TRAVELING SCRIPT

Post by Gregg Legendary »

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
These users thanked the author Gregg Legendary for the post:
Christine Nyn
User avatar
Christine Nyn
Posts: 75
Joined: Sat Mar 07, 2020 10:20 pm
Has thanked: 245 times
Been thanked: 143 times

Re: NEED TRAVELING SCRIPT

Post by Christine Nyn »

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.
These users thanked the author Christine Nyn for the post (total 3):
Ilan TochnerGregg LegendaryChris Namaste
Post Reply