Jump to content

Twisted Pharaoh

Resident
  • Posts

    194
  • Joined

  • Last visited

Everything posted by Twisted Pharaoh

  1. llDie does not guarantee that the item will be deleted because it can be taken to a no-script area.
  2. Look for "low poly rigging" there are 3-5 minutes tutorials. There are also tutorials about exporting to SL, basically there are presets to use. And you should look at tutorials that match your Blender version or you might have some troubles finding the stuff they are talking about.
  3. Well I can't say I am experienced with animesh, but I know some bits of Blender. Basically to get you started you can just take the Blender starter cube, add a single bone to it, name that bone mPelvis, and create an animation to make it spin a bit, export it as bvh. Then import that stuff on test server and see if it works when attached to a prim. It is that part that I think it should work but I'm not sure. If the proof of concept works then it will be time to dive deeper. There are plenty tutorials on YT that should help you get started.
  4. If you look at this page: http://wiki.secondlife.com/wiki/Control, then you see that there is a number describing LCONTROL: 0x10000000. It is an hexadecimal number which you can convert to decimal with Windows calculator in programmer mode. So it is 268435456 in decimal. When you click the mouse button you will get that number in level and edge, when you release the mouse button level will be 0. Note that this works only because you listen to only one button, if you were listening to more controls you would have to check the states with boolean operations as described on the wiki.
  5. Maybe you can work around this by having this object rez temporary objects? Either they would self-delete themselves or have attribute TEMP_ON_REZ which I don't know what it does exactly these days. So, instead of collecting them back you would rez them back. Now a self-deleting object would'nt work on a no-script area.
  6. Ok thanks, that one worked. For those who are interested, on Ubuntu I installed it with: mv LindenLab.crt /usr/local/share/ca-certificates/ update-ca-certificates
  7. curl 7.58.0 (x86_64-pc-linux-gnu) libcurl/7.58.0 OpenSSL/1.1.1g zlib/1.2.11 libidn2/2.3.0 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3 Release-Date: 2018-01-24 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smb smbs smtp smtps telnet tftp Features: AsynchDNS IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets HTTPS-proxy PSL This is the stock curl that comes with Ubuntu 18.04, the system is up to date. I've done a dist-upgrade as suggested by your link that did not help, as I am regularly doing it anyways. However I'll move to Ubuntu 20.04 when it becomes official (should be next month) and will check again then. Thanks for the links.
  8. Speaking of llRequestSecureURL(), I got an issue recently: curl https://simXXXXX.agni.lindenlab.com:12043/cap/4700d12c-7c84-580a-892c-1f997899a73b curl: (60) SSL certificate problem: unable to get local issuer certificate More details here: https://curl.haxx.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above. The workaround is to disable the check, but then it's less secure of course.
  9. Hey, I have looked for such a file to no avail, so I have tried to do it myself. It would have been a near impossible task if I didn't have the genius idea to get some help from Unity! Unity is also a great game platform but it has the characteristic to be very versatile when it comes to rigged avatars. Alas, the result is not perfect but it's a start. You can move the legs the arms and fingers but the avatar will break in two if you touch it. I have played a little with the textures but not that much so you might have to use Ctrl+L to see the avatar in DAZ Studio. So far, DAZ animates and Poser walk designer won't work with it, but I could make a simple animation and import the BVH correctly with the viewer. Here is the link to the first version, feel free to improve it. https://sendeyo.com/en/51119aa6e6
  10. As I mentioned on SLU BVHacker does not fix the arms correctly: BVHacker renames 2 joints lShldr and 2 others rShldr. What you should do is rename LeftShoulder into lCollar manually, RightShoulder in rCollar then do the Attempt SL Joint naming.
  11. Did you post the same link? I thought you pointed me to the FAQ.
  12. Hello, I am relaying SL blogs feed on my site: http://sltwisteddetails.com and noticed it has gone away. I find the RSS feed for each category in the options but I was using the feed for all blogs which was: http://feeds2.feedburner.com/SecondLifeALL I don't seem to find the equivalent, would anyone know if there is one? I'd hate to have to parse a feed for each blog. TIA EDIT: Storm Clarence thank you for taking the time to answer but that was not my question, I am asking if there is an URL for ALL Blogs feed.
  13. For two reasons, one is the line wrapping incorrectly, the second is the preview will complain if you don't. Actually the first examples in the post are posted without step 5.
  14. For a scripting job I recommend 40% upfront, 30% when the script is done, and the last 30% after the debugging, you handle the source code then.
  15. There might be some solutions with the alternate editors (Eclipse maybe?) but I think the second best way would be to add a page in the wiki where we could paste the code and obtain the html. The additional benefit would be the link to the function documentation like if you hover the mouse on llOwnerSay or llDetectedLinkNumber() you can see the link. The first best way would be to have it directly from the forum of course.
  16. I've tried NppExport from Notepad++, but the HTML syntax uses CSS, so the highlighting is removed, it must be possible to correct that though.
  17. default { state_entry() { list l; integer i = 0; while (TRUE) { l = l + [i]; // or add the (l=[]), see below if (i % 100 == 0) llOwnerSay((string)i); ++i; } } }default { state_entry() { list l; integer i = 0; while (TRUE) { l = l + [i]; // or add the (l=[]), see below if (i % 100 == 0) llOwnerSay((string)i); ++i; } } } First, is pasted from a SL script window using the code button, second is pasted from the lslwiki.net web page. From:http://lslwiki.net/lslwiki/wakka.php?wakka=list SetLinkText( integer linknumber, string text, vector color, float alpha ) { llSetLinkPrimitiveParamsFast(linknumber,[PRIM_TEXT,text,color,alpha]); } /* Above here is the function that allows it to work This example makes the prim you click in the Link Set display the word Hello above it in Red text */ default { touch_start(integer total_number) { SetLinkText(llDetectedLinkNumber(0),"Hello",<1,0,0>,1); } }The last one is from wiki.secondlife.com: http://wiki.secondlife.com/wiki/SetLinkText (¨Pasted from Firefox). Method to format code using LSL WIki: This works with Firefox but not with Opera, untested on other browsers. 1) Log into WIki and edit your user page: 2) Type the tags <lsl> and </lsl> as shown above 3) Paste your LSL code between the tags 4) Hit the button "Show Preview " 3) Select the code (make sure you are using Firefox) and Copy it. You don't need to save the page; Preview is enough. 4) Paste it in your forum post. under the "Rich Text" tab. default { state_entry() { llSay(0, "Hello, Avatar!"); } touch_start(integer total_number) { llSay(0, "Touched."); } } 5) Then you can go to the HTML tab and make the editions recommended by Void Singer (don't forget to close the <span> you added) 6) Hit Preview (do it a few times if it complains but all shall go well). 7) Post your code and enjoy the highlighting You can do the same thing from lslwiki.net See Also: Void Singer's post about creating Macros: http://community.secondlife.com/t5/LSL-Scripting/You-know-you-love-formatting-code/td-p/704495/page/2#M84
  18. It might be an object, try returning it?
  19. Hi, I just made an utility that lets you handle the SLUrls: http://sltwisteddetails.com/downloads/ Open it, drag your viewer shortcut on the listbox then click select and SLUrls will open for that viewer. Alternatively it can copy the SLUrls to clipboard so you can paste them in chat, which is handy when using multiple clients at the same time
  20. The viewer Imprudence just works fine on my ebook (700Mhz, 1Gb RAM and an Intel graphic card).
  21. A few years ago, someone posted on the official forums (RIP) about being stalked from sim to sim. Apparently the stalker was using an exploit that would tell you where the victim was teleporting at. If I remember correctly you could defeat them by teleporting twice in a row. It's been a while so I thought this exploit was fixed long time ago but now you make me wonder.
×
×
  • Create New...