Jump to content

Gayngel

Resident
  • Posts

    184
  • Joined

  • Last visited

Posts posted by Gayngel

  1. I have a json string that consists of key/value pairs, each pair a JSON_OBJECT. The values are JSON_OBJECTs that contain key/value pairs themselves. So JSON_OBJECTs nested in a JSON_OBJECT. 

    e.g: {main_key, {nested_key,nested_value,nested_key,nested_value,nested_key,nested_value},{main_key,{nested_key,nested_value,nested_key,nested_value}},{main_key,{nested_key,nested_value,nested_key,nested_value}}}

    Is there a way to get the main_key in the JSON_OBJECT by searching the nested_value? Like can I llListFindList(blah blah blah) - 1 or something similar?

  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. 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.

  4. 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.

    • Like 1
  5. 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.

    • Like 3
  6. LL posted this today: https://community.secondlife.com/blogs/entry/2577-important-changes-to-your-second-life-account-introducing-tilia/

     

    The Tilia TOS states:

    Quote

    If you have funds in your Stored Value Balance and have not made any transfers to or from or otherwise accessed your Stored Value Balance for a period of twelve (12) months, your Stored Value Balance will be deemed an “Inactive Account.”  Other forms of access besides a transfer include, for example, a balance inquiry or accessing your Account.  Unless prohibited by applicable law, we reserve the right to deduct from any Stored Value Balance that is an Inactive Account a fee in the amount of the lower of (i) the amount set forth in our Fee Schedule or (ii) the balance of funds in the Inactive Account (the “Inactivity Fee”). The Inactivity Fee will be charged each successive month for as long as the Stored Value Balance is an Inactive Account.

    We will provide you notice, in the form of an email to the email address you have registered with us at least three (3) days before any Inactivity Fee is deducted from your Inactive Account.

    We will deduct an Inactivity Fee from your Stored Value Balance each month until one of the following events occurs:

    1. you make a transfer of funds into or out of, or otherwise access, your Stored Value Balance, such that it is no longer an Inactive Account; or
    2. the balance of your Inactive Account reaches zero; or
    3. you process a credit from your Stored Value Balance to a permitted account as described in Section 3.3.3 above.

    For avoidance of doubt, you may process a credit or make payments to the relevant Provider out of your Stored Value Balance at any time, even if your Stored Value Balance is an Inactive Account.

     

    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.

     

    • Like 2
  7. 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

  8. 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.

    • Like 1
    • Thanks 1
  9. 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. 

     

    • Like 1
  10. 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

  11. 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

  12. 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

  13. 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)

  14. 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 

     

    • Like 1
  15. 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)

  16. 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)

  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 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

     

×
×
  • Create New...