Search the Community
Showing results for tags 'tricks'.
-
Hello, thats the first Time im Using the SL Forum actually. So, my Problem is: Im trying to sell stuff for like hmmm as long as im in sl? (aboud 10 yrs) And im really struggeling. I would like to have your opinions. How do i Promote my Stuff? What sells good? What do i do wrong? Does it makes sence to hire someone to do promotion for you? What else...huumm...oh and depending on Marketplace: Does it makes sence to make a listening? I got told my stuff is nice, actually preatty often and that im Really creative. So i kinda dont understand why ppl tell me over and over again "oh that is so cute!" but i still cant figure how to get "the crowd" to buy my stuff. Ill be Happy for ever Tip and trick u can give me!!! Have a Lovely Day, and im looking foreward for answears! p.s sorry for spelling Mistakes, english is not my first language!
-
Is this against Tos in any way? As i fly along in SL I seen this parcel (see picture) is for sale. Main parcel has 'FOR SALE! Route 7. Protected Road' in title. Parcel also set at low L$ for a roadside ie 1.0 L$/m2 but the small roadside ones are at 50 L$/m2. All are owned by same owner. I see many like this and most are from the same agent. Others could be alts or similar tactics. need ot know if from a LL perspective this is in any violations or the ToS or CS. It is a sort of trickery and buyer be ware.
-
If anyone's looking for a way to llSleep() their script, but don't want to prevent event queues from mounting up during this time-period, I made a function that you can just plop into your code and use in the same way as llSleep() and it'll get rid of the nastiest part of that function. It'll also work over midnight time crossings, so you can use it at any time, anywhere, and it'll function exactly as expected, to a very accurate measurement (less than 0.00000001 seconds inaccuracy). llWait(float wait_time) { float start_time = llGetGMTclock(); while(TRUE) { float current_time = llGetGMTclock(); if(current_time >= start_time) { if(current_time - start_time >= wait_time) return; } else { if( (86400.0 - start_time) + current_time >= wait_time ) return; } } }