aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into careminster-presence-refactorMelanie2010-12-201-11/+5
|\
| * Fix osTeleportAgent and osTeleportOwner for the case that GridService is ↵Marck2010-12-201-11/+5
| | | | | | | | used with a storage provider other than NullRegionData.
| * Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-132-34/+56
| | | | | | | | | | | | | | Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
* | fix 'system.exception: unknown type in list.size: system.uint32'Mike Rieker2010-12-181-0/+2
| |
* | Fix casts in llSetPayPriceMelanie2010-12-151-5/+5
| |
* | Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-132-34/+56
| | | | | | | | | | | | | | Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
* | Correct Sensor axis for unattached daughter prims.Kitto Flora2010-12-121-1/+2
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-12-123-5/+23
|\ \ | |/
| * More OSSL function name normalization, this time for osParcelSetDetails.Marck2010-12-113-5/+23
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-12-123-20/+103
|\ \ | |/
| * Normalization of OSSL function names.Marck2010-12-103-20/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added the following replacement functions for compliance to the OSSL standards stated on the wiki: osGetTerrainHeight osSetTerrainHeight osGetSunParam osSetSunParam osSetPenColor The functions that do not comply to the standard give a warning when used but work normally otherwise. The graphics primitive drawing command "PenColor" has also been added as well as dynamic texture parameter "bgcolor" as an alternative to "bgcolour". The following two functions have been renamed because they are not enabled yet aynway: osWindParamSet => osSetWindParam osWindParamGet => osGetWindParam
| * Amend GetLinkPrimitiveParams with implementations for PRIM_TEXGEN, ↵Marck2010-11-271-10/+76
| | | | | | | | PRIM_BUMP_SHINY, PRIM_FULLBRIGHT, and PRIM_GLOW
* | Allow floats in the list for llSetPayPrice and silently convert them to int,Melanie2010-12-111-4/+4
| |
* | Revert "Revert "Trigger changed event with CHANGED_TELEPORT when teleporting ↵Melanie2010-12-032-8/+12
| | | | | | | | | | | | to another region."" This reverts commit 6c01ebb87541ecf66d678606bb97d996bee51953.
* | Revert "Trigger changed event with CHANGED_TELEPORT when teleporting to ↵Melanie2010-12-032-12/+8
| | | | | | | | | | | | | | | | another region." This reverts commit 2827deffe822378b6cb35dac6c90a21c3fbc0de7. Pulling out a bad core commit that broke attachment teleporting for us
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-273-8/+36
|\ \ | |/
| * llVecNorm nant testMicheil Merlin2010-11-271-0/+24
| |
| * Trigger changed event with CHANGED_TELEPORT when teleporting to another region.Marck2010-11-262-8/+12
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-251-3/+22
|\ \ | |/
| * Change all restarting to use the restart module. Remove hardcoded behaviorMelanie2010-11-251-3/+22
| |
* | Prevent an overlength button label from producing a debug dump and abortingMelanie2010-11-241-3/+3
| | | | | | | | the script.
* | Prevent a dump in the llGetLinkKey method when using LINK_ROOT in a single primMelanie2010-11-231-0/+3
| |
* | Fix some crashes caused by the addition of the CreatorData columnMelanie2010-11-221-1/+18
| |
* | Make an invalud key string in llTextBox and llDialog non fatal to avoidMelanie2010-11-221-2/+2
| | | | | | | | breakinf sloppily made no-mod scripted items.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-221-2/+4
|\ \ | |/
| * Thank you, thomax, for a patch making changed events CHANGED_REGION_RESTART ↵Marck2010-11-221-2/+4
| | | | | | | | | | | | and CHANGED_REGION work. Fixes Mantix #5214.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-211-4/+4
|\ \ | |/
| * Fix global region coordinates that are delivered by llRequestSimulatorData.Marck2010-11-201-6/+6
| | | | | | | | Also did some source code clean-up by replacing literals with constants.
* | Allow llDialog without any buttons and add the automatic OK button as it isMelanie2010-11-181-2/+1
| | | | | | | | in SL.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-173-2/+30
|\ \ | |/
| * Add osUnixTimeToTimestamp()Justin Clark-Casey (justincc)2010-11-173-2/+30
| | | | | | | | | | This allows an input unix time to be converted to an llGetTimeStamp() format. Thanks Thomax.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-165-3/+57
|\ \ | |/
| * Fix osTeleportAgent for hypergrid destinations.Marck2010-11-161-1/+5
| | | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
| * Add osTeleportOwner.Marck2010-11-163-2/+48
| | | | | | | | | | | | | | This provides the same functionality as osTeleportAgent but without the griefing potential. Region owners need not be concerned about the use of this function because it only allows to do what is already possible with the world map. The intended use is with HUDs. For example, a list of (hypergrid) destinations could be made available for quick access. Signed-off-by: Melanie <melanie@t-data.com>
| * Can't detach an object from within the script thread because it will throw. ↵Melanie2010-11-161-6/+14
| | | | | | | | Use FireAndForget for that.
| * Add PARCEL_DETAILS_ID to LSLBlueWall2010-11-122-0/+4
| |
* | Can't detach an object from within the script thread because it will throw.Melanie2010-11-161-6/+14
| | | | | | | | Use FireAndForget for that.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-033-0/+29
|\ \ | |/
| * Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-033-0/+22
| | | | | | | | from a region and allow normal day cycles to be reestablished
| * When LightShare is enabled, the standard day cycle is bypassed and replaced byMelanie2010-11-031-0/+1
| | | | | | | | | | | | midday defaults when no specific LightShare profile is set. This prevents LightShare info being send out when the region has no LightShare profile, allowing normal day/night cycles to happen.
| * Revert "Preliminary work on appearance layers. No user functionality yet."Melanie2010-10-291-8/+3
| | | | | | | | | | | | This work conflicts with cmickeyb's more extensive, related work This reverts commit 9c829c0410da89fdbb873f706d7ba63cf26b088f.
| * Preliminary work on appearance layers. No user functionality yet.Melanie2010-10-291-3/+8
| |
| * Add PRIM_NAME, PRIM_DESC and PRIM_ROT_LOCALMelanie2010-10-242-0/+30
| |
* | Fix a LSL issue and a prim naming issueMelanie2010-10-291-3/+8
| |
* | Revert "Preliminary work on appearance layers. No user functionality yet."Melanie2010-10-291-8/+3
| | | | | | | | This reverts commit e6a8d2872c3ff4992cd7e9615f69e0c6773e461f.
* | Preliminary work on appearance layers. No user functionality yet.Melanie2010-10-291-3/+8
| |
* | Implement llGetLinkNumberOfSides(), needed for 1-script sculptie foot shoeMelanie2010-10-253-0/+15
| | | | | | | | scripts.
* | Add PRIM_NAME, PRIM_DESC and PRIM_ROT_LOCALMelanie2010-10-242-0/+30
| |
* | Merge branch 'careminster-presence-refactor' of ↵Melanie2010-10-241-2/+11
|\ \ | | | | | | | | | ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
| * | Prevent an exception if a string passed into llXorBase64StringsCorrect is notMelanie2010-10-231-2/+11
| | | | | | | | | | | | a base 64 string. Return the empty string in this case.