| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
|
|
|
|
| |
Patch for new scripting method osParseJSON.
also, a couple of warning bugs killed.
|
| |
|
|
|
|
|
|
|
|
| |
Correct a condition where a prim is linked before it has been persisted
for the first time and is then persisted through it's former SOG with
a bad offset position.
|
| |
|
|
|
|
|
|
|
| |
Correct color handling functions to no longer return the inverse color.
Remove pointless * 256 / 256 legacy constructs.
|
|
|
|
|
|
|
|
| |
XEngine: Change a number of methods to use the new link part method.
Fix ALL_SIDES for llSetColor, llSetTexture, llSetAlpha, llSetPrimitiveParams,
llGetPrimitiveParams(PRIM_TEXTURE, PRIM_COLOR).
|
|
|
|
|
|
|
| |
XEngine: Introduce a common method to determine link parts to work on.
Fix llSetLinkColor method.
|
|
|
|
|
|
| |
to send a full update and do a persistence save.
|
|
|
|
|
|
|
|
|
| |
XEngine fixes: prevent queue overruns, prevent spamming when no key
is down. Release controls when conflicting permissions are requested
or permissions are refused later. Release when prim or script are deleted.
Fixes Scene script instance deletion semantics.
|
|
|
|
|
|
|
| |
* Attached patch implements llRequestAgentData for DotNetEngine. (It already is implemented in XEngine.)
* Thanks Y. Nitta
|
|
|
|
|
|
|
| |
* Fix/implement LSL group-related functions llDetectedGroup, llSameGroup
* Thanks nlin
|
| |
|
|
|
|
|
|
|
| |
* LSL Conformance: llSetPayPrice should accept more than four arguments in list
* Thanks kcozens!
|
|
|
|
|
|
|
| |
* Attached patch implements LSL llGetAgentSize() for DotNetEngine and XEngine.
* Thanks Y. Nitta!
|
|
|
|
|
|
|
| |
* Implementation of LSL llBreakLink and llBreakAllLinks
* Thanks Y. Nitta!
|
|
|
|
|
|
|
| |
* llGround causes Array out of bounds exception in KanEd#11 script
* Thanks Y. Nitta!
|
| |
|
|
|
|
|
|
|
|
| |
OpenSim.example.ini
* Particularly important for max threads since setting this to 2 was causing all events to wait behind the regularly sleeping maintenance event
|
| |
|
|
|
|
|
|
|
| |
Applying DotNetEnine part of this patch. Thank you, nlin!
Corrects ad hoc key list comparison.
|
| |
|
|
|
|
|
|
|
| |
Now each function can be allowed, subject to threat level, disabled,
or restricted to certain UUIDs.
|
| |
|
|
|
|
| |
the last ocmmit
|
| |
|
|
|
|
|
|
| |
in the XEngine section
|
|
|
|
|
|
|
| |
Adds the fix from Mantis #2197 in it's new form.
Stage one of the scripting security changes, more to come.
|
|
|
|
|
| |
adds the new function osTeleportAgent().
|
| |
|
|
|
|
|
|
| |
Prevent illegal color values from being set.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
after using llTakeControls my sim receives about 200 messages per second,
l of which get queued , this could be because there is no lag as the viewer
and sim are on the same computer. The patch I have included checks to see if
the "Changed" param is 0 then searches the EventQueue for Control messages
being sent to the same localid, if it finds a message already in the Queue
and Changed==0 then the new message is only notifing you the key is being held,
since there is already a message the new one isnt needed so it isnt added
to the queue.
|
|
|
|
|
|
| |
Added clamping to 0.0 - 1.0 for R, G, B, and A.
|
| |
|
|
|
|
| |
script.
|
|
|
|
| |
Remove some old dead code.
|
|
|
|
|
|
|
| |
Read animation data from avataranimations.xml to allow default animations
to be started and stopped by name from scripts.
|
|
|
|
|
|
| |
Thank you, tyre, for a patch that fixes the sender UUID in scripted IM
|
|
|
|
|
|
|
|
|
| |
works. Also makes llGetFreeMemory return the constant 16384.
LLGetFreeMemory is useless in SL, as it never goes up, only down.
So, the only thing it is used for, in practice, is to detect an imminent
stack/heap collision, a danger we don't have.
|
|
|
|
|
|
|
| |
This allows cross-api method calls on the implementation and also allows
"Meta APIs" that only provide common functionality to other APIs
|
|
|
|
|
|
|
|
|
| |
Remove some unused osFunctions that were left in the LSL function
file from the separation way back when. Inline the osSetParcelMediaURL
code to get rid of the osFunction. Really need to add a way for one API
to call another.
|
|
|
|
|
|
|
|
|
| |
functions return CLI strings, which, in the case of lists, don't
get wrapped. Therefore, the list had to be able to deal with
that CLI type here. The correct fix would be to change all LSL
function returns to LSL types.
|
|
|
|
|
|
| |
* leaving in the ones to do with ScriptBase since these actually indicate coding bugs that I don't have the time/brainpower to fix at the moment
|
| |
|
|
|
|
| |
means less code in this case)
|
| |
|
|
|
|
|
|
|
| |
does, but it seems every other function here has it, so it is probably
needed.
|
|
|
|
|
|
|
| |
Implement an osParseJSON method useful for handling simple JSON returns
from http requests. This will only work in C# at this point.
|
|
|
|
|
|
|
| |
Allow parsing of hexadecimal int constants from strings.
Also fixes a DBNull value in the touch type field crashing the sim
|
|
|
|
|
| |
Fix unreachable code due to typo in llDetectedGroup.
|