Search found 356 matches

by Mike Lorrey
Fri Aug 25, 2023 11:27 pm
Forum: General Discussion
Topic: Kitely website needs a makeover
Replies: 11
Views: 24067

Re: Kitely website needs a makeover

I agree with Koshari on this 100%. We also need a page that is more user-centric that is a mix of the login-splash page features, along with offline IMs, a list so you can see who on your friends list is inworld, along with myworlds and user settings and store stuff all in one. Also once again, a BB...
by Mike Lorrey
Thu Apr 06, 2023 12:11 am
Forum: General Discussion
Topic: Classified Event Ads Question..
Replies: 9
Views: 36010

Re: Classified Ads Opinion...

Questions for the Community... Does anyone besides us use Classified Event Ads? Does anyone here ever look at the Classified Event Ads when looking for an Event? I have used picks which are free. It would be nice if the inworld User Profile Classifieds could be used to submit events to the kitely e...
by Mike Lorrey
Thu Apr 06, 2023 12:09 am
Forum: General Discussion
Topic: Classified Event Ads Question..
Replies: 9
Views: 36010

Re: Classified Ads Opinion...

Ilan Tochner wrote:
Tue Apr 04, 2023 2:57 am
Sorry, those aren't part of the analytics system, so they aren't tracked.
If people are paying for it, don't you think it would help sell it to give people data on performance?
by Mike Lorrey
Thu Mar 23, 2023 10:01 am
Forum: Worlds Support
Topic: llSetRot() and llSLPP/llSLPPF(PRIM_ROTATION) not executing
Replies: 13
Views: 27571

Re: llSetRot() and llSLPP/llSLPPF(PRIM_ROTATION) not executing

It returned a mesh chair to the original default orientation which I assumed was the intention. There is a SetRot in state zero that does that. As expected llSLPPF behaves similarly. UPDATE In my hands llSLPPF behaves exactly the same on the OSCC grid which, like Kitely, uses XEngine. It's possible...
by Mike Lorrey
Tue Mar 07, 2023 9:46 pm
Forum: Scripting
Topic: llInstantMessage() throwing threat warning
Replies: 14
Views: 42666

Re: llInstantMessage() throwing threat warning

fwiw SceneGate has the same hovertext and likewise compiles and throws a runtime error. Firestorm behaves exactly the same on OSCC grid. I would guess that both derive syntax support from the viewer file keywords_lsl_default.xml in the app_settings folder so if you know what you're doing (I don't) ...
by Mike Lorrey
Tue Mar 07, 2023 7:18 am
Forum: Scripting
Topic: llInstantMessage() throwing threat warning
Replies: 14
Views: 42666

Re: llInstantMessage() throwing threat warning

I don't know whether code validation in the editor is done viewer-side or server-side but you're passing a call to a function that returns a string as the first parameter and it's possible to encode a UUID as a string. A compiler that uses weak typing wouldn't be able to catch this type of error wi...
by Mike Lorrey
Tue Mar 07, 2023 3:46 am
Forum: Scripting
Topic: llInstantMessage() throwing threat warning
Replies: 14
Views: 42666

Re: llInstantMessage() throwing threat warning

Hi Mike, See: https://wiki.secondlife.com/wiki/LlInstantMessage The first parameter that llInstantMessage expects is the user's UUID, not the user's name. I don't know where Firestorm is getting it's hover info from but I suggest you use the LL functions using their official SL wiki definitions. Is...
by Mike Lorrey
Tue Mar 07, 2023 2:49 am
Forum: Scripting
Topic: llInstantMessage() throwing threat warning
Replies: 14
Views: 42666

llInstantMessage() throwing threat warning

I did a slight modification to a simple teleport script today, to IM the user who touches the object to notify them that the permissions request they are getting is to teleport. Previously the permissions request used the touchers key without issue, but the llInstantMessage() function is throwing a ...
by Mike Lorrey
Tue Feb 21, 2023 9:19 pm
Forum: Events and Activities
Topic: LSL/OSSL Scripting Class
Replies: 0
Views: 12483

LSL/OSSL Scripting Class

Join us in the SPACE FORCE sandbox to learn how to script in the Linden Scripting Language (LSL) and Opensim specific OSSL language. Instructor: Mike Lorrey. Come able to listen on voice and view media on a prim.
Every Tuesday at 4pm Grid Time.
grid.kitely.com:8002/SPACE%20FORCE
by Mike Lorrey
Sat Jan 28, 2023 8:31 pm
Forum: Worlds Support
Topic: llSetRot() and llSLPP/llSLPPF(PRIM_ROTATION) not executing
Replies: 13
Views: 27571

Re: llSetRot() and llSLPP/llSLPPF(PRIM_ROTATION) not executing

I may be missing something but this works for me. default { touch_start(integer n) { llSetLinkPrimitiveParamsFast(LINK_THIS, [PRIM_OMEGA,<1,3,0.5>,TWO_PI,1]); llSetTimerEvent(5.0); } timer() { llSetLinkPrimitiveParamsFast(LINK_THIS, [PRIM_OMEGA,<0,0,0>,0,0]); llSetTimerEvent(0.0); state zero; } } s...