Jump to content

Rhiannon Arkin

Resident
  • Posts

    85
  • Joined

  • Last visited

Everything posted by Rhiannon Arkin

  1. i tend to make lots of meshes and animate the transparency. but i wish there was more tools available. I haven't seen those dinos. so what does puppeteer do?
  2. is there anything like animesh already available ? i thought it's an announcement for something in the future. curious !
  3. Thanks Ela, i did end up using this idea and first tp to a spot just 10 meters before the target then again to the target. But for other reasons, the reason for my imprecision was that my sittarget has an offset so the avatar briefly appears away from the target in the moment of arrival, which looks like the setRegionPos misses, but it actually is pretty much where it should be. thanks!
  4. ok. good to know it's not that command. thanks. i'll dig in more then. i'm switching animations too so maybe i'm seeing that. ...
  5. no i am working on a teleporter and it just keeps on missing by about 2-3 meters. only for a very brief flash. then it lands correctly. hm...
  6. hi Is it possible that llSetRegionPos 'overshoots' it's target before then rubber banding back to the intended position ? thanks R/
  7. so you wouldn't be concerned about firing the llSetTimerEvent within the timer ? this resets and restarts the timer every second. I haven't noticed any extra lag that comes with it when i tried it, so maybe it's ok.
  8. bang. it's so easy. just use llSleep instead of a timer. It seems accurate enough for counting minutes. integer min; integer sec=10; integer starttime=3; //minutes integer counter; float sleeptime = 60.0; integer nowtime; integer finishtime; default { state_entry() { llTargetOmega(llRot2Left(llGetLocalRot()),-PI/10,1); nowtime = llGetUnixTime(); for (counter=starttime;counter>1;--counter) {llSleep(sleeptime);} finishtime=llGetUnixTime(); llOwnerSay(((string)(finishtime-nowtime))); //just to check if it's really one minute llSetTimerEvent(1.0); //use timer only for seconds counter } timer() {--sec; llOwnerSay("second: "+((string)sec)); if (sec==0) {llOwnerSay("gameover"); llSetTimerEvent(0.0); llTargetOmega(ZERO_VECTOR,-PI/10,0);} //stop it } }
  9. Thanks Rolig The only reason i didn't have the timer tick every second is that i only need the minutes for the most part of my countdown. A tick per second i only need at the last minute. That's where i switch to another timer. But maybe i am wrong in my assumption that a timer tick every second uses more cpu power then a time tick every minute. not sure how it works inside. it might not matter. If it doesn't matter i'll use a timer that ticks every second but only trigger my display of the countdown every minute. BUT: i get the idea: avoid state change. All my testing so far point to the state change as the moment that resets the rotation of my object. I muted everything and it still does it, on exactly that moment.
  10. I think i have to change a state, because i am triggering a timerevent within a timer event, and it works, but i'd like to think that is very inefficient because it gets triggered over and over again this way.
  11. oh interesting. yes i do change the color of the object in the state_entry of the new state. That can cause a reset ? hmmm... I do change colors a few times within the first state, but that doesn't have any effect on it's rotation it seems.
  12. Hi I am building myself a countdown script and it all works fine, except, that the object rotation seems to reset it's start position when the script changes to another state. I am using this for starting the rotation, llTargetOmega(llRot2Left(llGetLocalRot()),-PI/10,1); but during a state change the object still snaps to a start position and starts its rotation there instead of continuing where it left off before the state change. wicked R
  13. thanks for the infos. i guess json is another tool in the toolbox. i was so curious because often,when i post here with my scripting troubles, json comes up as "or you try it with json". R.
  14. well sorry too sloppy language. I meant, what is the advantage of using json here in sl. what does json provide that lists wouldn't. ?
  15. So what IS the kick about json vs lists? Rhia
  16. that should work. i tried scaling the objects away when they are not needed. seems very complicated to do. I'll try the link_message approach. thanks!
  17. and no way around it ? no special secret trick?
  18. Another weird question: I want to touch an object that sits behind another object that's invisible (alpha). I tried switching the top object to phantom, turned physics off, (it's a child) and was reading about various ll functions but it seems that the objects, albeit invisible, always block the 'touch' from reaching the object underneath. It is funny because the cursor does change to touch so it sees the touch object, but can't click on it because of the other geometry in front of it. arg. thought i'd ask.
  19. Thanks for pointing to the code. That's cool. I'll just wanted it for a status board for gms on the sim.
  20. I couldn't find any function that allows to retrieve the current profile picture of players from within a script. How is it done? thanks Rhi
  21. Hello I am not sure if this is the right forum, I have a strange question, I am a sim owner, and I wonder, how the sim ban is working. Is it based on just the name or is there some other information involved that identifies that avatar? I don't think sim ban lists are based on ip addresses. I am asking because one person got ejected (not banned) by a memory usage monitor that usually works pretty well. But this player could not return to the sim anymore, he received the message that he's on the sim ban list. But he was not part of any ban lists, neither region, estate or any parcel. Only when I temporarily removed other names from the region ban list, the player was able to tp back on to the sim. This made me instantly think that one of the banned avis was an alt of the avi in question, but... ...how would the ban list know about alts of an avi? seemed baffling to me.
  22. Hi I want to rezz an linkset from the inventory of an object and then link the two together. is there any way around these popups asking people to click on to grant permissions ? A different way of doing it? the linkset represents a few meshes that I animate by alpha on-off animation, but it's so much geometry, that i'd love to find a way of only rezzing it when i need it, and to not carry these 'invisivble' pieces with me. So i thought maybe rezzing it and then afterwards killing it. But then it's of course disconnected from the original object. thought i'd ask best R.
  23. Speed is not relevant, just annoying. Also I thought there must be something wrong watching a script taking MINUTES to read a already digital content of a text file. It's not a magnetic card reader, but a file, already code. so what does take so long ? reading a notecard should be a matter of milliseconds not 10 minutes. So I just thought i am doing something wrong. but i guess that's the speed it goes. I think it's all set up as fast as it gets right now. thanks for all the input.
  24. Iis this the bento skeleton? I am looking for that too. Thanks
×
×
  • Create New...