Jump to content

Gayngel

Resident
  • Posts

    183
  • Joined

  • Last visited

Everything posted by Gayngel

  1. For those who don't know, Glaznah Gassner is the creator/developer of Smartbots.😛
  2. I find using SLPPF in a loop instead of doing every prim all at once produces better results but of course you have to tolerate your object changing colour prim by prim over a few seconds rather than all immediately. If you can live with that caveat then try a loop. It may of course just be the sim you are trying your script on is very laggy so try it on a quieter region.
  3. Laughs at the people who say they won't touch RAR archives. How do you live on the Internet without them??? Will give Black Dragon a try as I have a very small hard drive so need something portable.
  4. Gayngel

    Login Issues

    I am also experiencing this problem, account is definitely logged out and on Windows 10. Submitted a support ticket did not get a sufficient answer, was just told to uninstall and re-install the newest version of my viewer.
  5. You could use llGetAgentList in another script and link message the list length to your existing script.
  6. Just creating the breedable pet itself is probably going to cost at least $US1000. Script animating and/or animeshing is a long tedious process, not to mention creating a formula that generates a unique pet out of the milllion and one variations, and all the attributes that the breedable should have. 1000 might even be too low, I've heard some crazy amounts offered (US5k upwards) and that's without a web database. But if you've found someone to do it cheaper then God help them they're probably crying themselves to bed lol.
  7. This is very concerning I think for people who hardly make use of processing credit... What if someone who never buys lindens nor cashes out suddenly gets a gift from a friend and now wants to process it to Paypal or their bank account? A year later having made no transactions has their account made inactive and starts to accrue interest and has to pay it... This just seems unfair to be penalized for hardly ever using a service. I am sure others here can think of similar situations for why they hardly process credit out but they are now going to penalized for doing it just once. This is just setting off lots of alarm bells and a great big "UUUUH NO NOT HAPPENING!" from me.
  8. LL posted this today: https://community.secondlife.com/blogs/entry/2577-important-changes-to-your-second-life-account-introducing-tilia/ The Tilia TOS states: This is very concerning I think for people who hardly make use of processing credit... What if someone who never buys lindens nor cashes out suddenly gets a gift from a friend and now wants to process it to Paypal or their bank account? A year later having made no transactions has their account made inactive and starts to accrue interest and has to pay it... This just seems unfair to be penalized for hardly ever using a service. I am sure others here can think of similar situations for why they hardly process credit out but they are now going to penalized for doing it just once. This is just setting off lots of alarm bells and a great big "UUUUH NO NOT HAPPENING!" from me.
  9. I am a programmer with 5 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write simple, minor fixes to existing scripts, tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalise prim designs and builds themselves. Clients may also visit my workshop to see the progress made on their projects. Price is dependent on complexity of the project. Scripts will be full perm on payment . Delivery may be a few hours to weeks also dependent on script complexity and work load. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Cotehill/15/179/55 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  10. Writing scripts is also a good way to earn lindens but of course you have to know how to code. You can learn to script at the College of Scripting at: http://maps.secondlife.com/secondlife/Horsa/177/244/2164 and join the group: secondlife:///app/group/fd616ea5-fa9e-1315-def7-4edf25132f09/about
  11. If you're on Firestorm go to the place and in the address bar click the star icon to save it as a landmark but don't click save just yet, there will be a drop-down option to save it as a landmark or a favourite. Select favourite and then save. The LM will appear as a button under the address bar that you can just click whenever you need to go there.
  12. I've resorted to reading a book waiting for the grid to come back online. O_o
  13. Have a look at the jump function at http://wiki.secondlife.com/wiki/Jump. You can jump out a loop when a condition is met and the code will proceed to run at the target label. The target label must be within the same scope as the loop, it can not cross to other user functions or events. e.g: list fruits = ["apples","oranges,","peaches","bananas","papaya","kiwi"] integer i = 0; integer llength; default { state entry() { llength = llGetListLength(fruits); } touch end(integer num) { for(;i < llength; ++i) { if(llList2String(fruits,i) == "peaches") jump found; } llOwnerSay("No peaches found."); @found; llOwnerSay("Peaches found in list."); } } Note that if you can not avoid jumps it is recommended you use them sparingly, if at all, because they can cause problems with recursion and cause spaghetti coding / make your code unreadable.
  14. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write simple, minor fixes to existing scripts, tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalise prim designs and builds themselves. Clients may also visit my workshop to see the progress made on their projects. Price is dependent on complexity of the project. A percentage of sales of scripts resold in your creations will be negotiated. Delivery may be a few hours to weeks also dependent on script complexity and work load. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Cotehill/15/179/55 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  15. Atom with LSL plugin is also a good option.Atom is a rapid application development text editor so will auto-complete functions and events when you start to type them. To get syntax highlighting and auto-complete you save files as .lsl.
  16. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write scripts for tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalize prim designs and builds themselves. Price is L$10000/per day with first day upfront and negotiable cap on amount of days charged. Usually takes 3-7 days of solid work however delivery may be a few hours to weeks dependent on my RL schedule. Proof of work will be timestamped, live streamed and screenshot. As much as I enjoy scripting, in doing many projects for clients I have learned that even the tiniest job can turn into a massively time-consuming, complicated and tedious task. This happens almost always and unfortunately I do not have the time to spend on your dildo or kitchen spatula or fix some badly made script unless I'm properly compensated for it. Sorry, I'm a nice guy but no. I have had to let go many clients because their project turned into a monster that ate up my life so if you want to hire me please consider if your project is worth that much to you as I'm only prepared to work for people who understand and respect the process and hours put into it. You may find cheaper scripters elsewhere but due to the long, tedious hours and technical experience required, the risk is that they may drop your before completion of the project. Clients may visit my workshop to see the progress made on their projects. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Bao/138/11/3301 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  17. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write scripts for tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalize prim designs and builds themselves. Price is L$10000/per day with first day upfront and negotiable cap on amount of days charged. Usually takes 3-7 days of solid work however delivery may be a few hours to weeks dependent on my RL schedule. Proof of work will be timestamped, live streamed and screenshot. As much as I enjoy scripting, in doing many projects for clients I have learned that even the tiniest job can turn into a massively time-consuming, complicated and tedious task. This happens almost always and unfortunately I do not have the time to spend on your dildo or kitchen spatula or fix some badly made script unless I'm properly compensated for it. Sorry, I'm a nice guy but no. I have had to let go many clients because their project turned into a monster that ate up my life so if you want to hire me please consider if your project is worth that much to you as I'm only prepared to work for people who understand and respect the process and hours put into it. You may find cheaper scripters elsewhere but due to the long, tedious hours and technical experience required, the risk is that they may drop your before completion of the project. Clients may visit my workshop to see the progress made on their projects. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Bao/138/11/3301 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  18. I am a scripter providing custom scripts to clients and making very good money on my own but looking for investors to help fund some of the ideas I have to grow and market the business and in return share profits. Currently I'm working on a project costing L$600000. I only have the time to take on large projects but would still like to provide scripting services for smaller projects by providing a space for new scripters to be trained/mentored by experienced scripters and to have them collaborate on small and large projects to provide faster turnaround time on delivery to customers and work within their budget. I would also need marketers to post ads and monitor forums & groups for new customers as well as recruit new scripters. I will need a sandbox area/region for scripters to develop and tests scripts on. I would also like to host events to showcase scripters skills and products much like the mesh fairs happening around the grid. You can contact me inworld to discuss a business plan at secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about (type that into chat and it will bring up my profile link) (Forewarning: Adult rated profile)
  19. I want to see an API and LSL functions for thirds party vendors and scripts to record sales inworld as a sale on the Marketplace so that inworld customers may write reviews on my MP listings aswell as contribute to total sales in reports and order histories with transaction IDs.
  20. You should also join some inworld groups (probably where you'll get the most help) and visit places that teach scripting. There are many advanced scripters inworld willing to mentor and advise you on your scripting projects as well as self-paced tutorial courses. Places to visit: The College of Music, Scripting & Science : http://maps.secondlife.com/secondlife/Horsa/177/244/2165 Caledon Oxbridge University: http://maps.secondlife.com/secondlife/Caledon Oxbridge/92/198/28 Builders Brewery: http://maps.secondlife.com/secondlife/Builders Resource/128/113/23 Groups to join (type these URIs into chat to bring up the group link): The College of Music, Scripting & Science : secondlife:///app/group/fd616ea5-fa9e-1315-def7-4edf25132f09/about Builders Brewery: secondlife:///app/group/04f595b0-cdc8-97f0-e710-9564824c03b2/about Advanced Scripters of Second Life: secondlife:///app/group/ff1ad504-e388-b65d-195b-1e474e3e59cc/about Scripters Support Group: secondlife:///app/group/c4ecb11e-7d7b-26ad-a7cc-6c9da41fbb0b/about
  21. I am a scripter providing custom scripts to clients and making very good money on my own but looking for investors to help fund some of the ideas I have to grow and market the business and in return share profits. Some ideas I have that need funding: Marketers to post ads and monitor forums & groups for new customers. Collaboration with other scripters to provide faster turnaround time on delivery and cheaper costs to customers. A sandbox area/region for scripters to develop and tests scripts on. Events to showcase scripters skills and products. You can contact me inworld at secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about (type that into chat and it will bring up my profile link) (Forewarning: Adult rated profile)
  22. I am a scripter providing custom scripts to clients making very good money on my own but looking for investors to help fund some of the ideas I have to grow and market the business. You can contact me inworld at secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about (type that into chat and it will bring up my profile link)
  23. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write scripts for tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalize prim designs and builds themselves. Price is L$10000/per day with first day upfront and negotiable cap on amount of days charged. Usually takes 3-7 days of solid work however delivery may be a few hours to weeks dependent on my RL schedule. Proof of work will be timestamped, live streamed and screenshot. As much as I enjoy scripting, in doing many projects for clients I have learned that even the tiniest job can turn into a massively time-consuming, complicated and tedious task. This happens almost always and unfortunately I do not have the time to spend on your dildo or kitchen spatula or fix some badly made script unless I'm properly compensated for it. Sorry, I'm a nice guy but no. I have had to let go many clients because their project turned into a monster that ate up my life so if you want to hire me please consider if your project is worth that much to you as I'm only prepared to work for people who understand and respect the process and hours put into it. You may find cheaper scripters elsewhere but due to the long, tedious hours and technical experience required, the risk is that they may drop your before completion of the project. Clients may visit my workshop to see the progress made on their projects. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Bao/138/11/3301 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  24. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write scripts for tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalize prim designs and builds themselves. Price is L$10000/per day with first day upfront and negotiable cap on amount of days charged. Usually takes 3-7 days of solid work however delivery may be a few hours to weeks dependent on my RL schedule. Proof of work will be timestamped, live streamed and screenshot. As much as I enjoy scripting, in doing many projects for clients I have learned that even the tiniest job can turn into a massively time-consuming, complicated and tedious task. This happens almost always and unfortunately I do not have the time to spend on your dildo or kitchen spatula or fix some badly made script unless I'm properly compensated for it. Sorry, I'm a nice guy but no. I have had to let go many clients because their project turned into a monster that ate up my life so if you want to hire me please consider if your project is worth that much to you as I'm only prepared to work for people who understand and respect the process and hours put into it. You may find cheaper scripters elsewhere but due to the long, tedious hours and technical experience required, the risk is that they may drop your before completion of the project. Clients may visit my workshop to see the progress made on their projects. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Bao/138/11/3301 Marketplace Store: https://marketplace.secondlife.com/stores/149734
  25. I am a programmer with 4 years experience in scripting with LSL. I enjoy building custom systems ground-up and will provide low lag solutions to my customer's specifications. I can write scripts for tip jars, club systems, dialog menus, detections, HUDs and vendors to more advanced systems such as pose systems, RLV, vehicles, pathfinding, weaponry, SL experiences and HTTP for external coms to websites and databases. (Also experienced in HTML/CSS, php, SQL, Ruby, Rails, Python and Javascript ) Script adaptations and library resources if used will be fully cited. I work closely with my clients providing working demos of their products with full perm models (with user license) on completion and delivery. Note: Models will be mockups to present the functioning script, clients must finalize prim designs and builds themselves. Price is L$15000 upfront and L$5000/hour with negotiable cap above 5 hours.. As much as I enjoy scripting, in doing many projects for clients I have learned that even the tiniest job can turn into a massively time-consuming, complicated and tedious task. This happens almost always and unfortunately I do not have the time to spend on your dildo or kitchen spatuala or fix some badly made script unless I'm properly compensated for it. Sorry, I'm a nice guy but no. I have had to let go many clients because their project turned into a monster that ate up my life so if you want to hire me please consider if your project is worth that much to you as I'm only prepared to work for people who understand and respect the process and hours put into it. The price you'll be paying is the standard price for any freelance web developer. Proof of work will be live streamed and screenshot. Clients may also visit my workshop to see the progress made on their projects. Delivery may be a few hours to weeks dependent on my RL schedule. IM me inworld or visit The Script Yard for a consultation. If I'm offline IMs will go to email and will get back to you ASAP. (Forwarning: Adult rated profile) Copy/paste this link to the nearby chat window in your viewer, press enter then click on my name in chat to open my profile: secondlife:///app/agent/a9ba2797-81af-429d-9833-51127ad5593c/about Script Yard LM: http://maps.secondlife.com/secondlife/Bao/138/11/3301 Marketplace Store: https://marketplace.secondlife.com/stores/149734
×
×
  • Create New...