aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-27Mantis#1615. Thank you, Matth for a patch that:Charles Krinke1-5/+5
causes deprecated LSL functions to throw the deprecated exception rather than not-implemented.
2008-06-27* Remove responsibilty for signalling scene object change from ↵Justin Clarke Casey1-2/+28
SceneObjectPart.SendFullUpdate() * This means that we will no longer pointlessly repersist all the prims in the scene when OpenSim first starts up * This also means that force-update on the console will not trigger repersistence. * Also, in other places persistence is no longer done where it wasn't actually necessary * I think I changed the code for all instances correctly, but it's not possible that I missed some and some things which did persist properly have stopped * Please patch or mantis if this is the case
2008-06-27Mantis#1612. Thank you, kindly, Matth for a patch that:Charles Krinke1-2/+43
Adds the beginnints of llRemoteLoadScriptPin() and llSetRemoteScriptAccessPin().
2008-06-26Mantis#1610. Thank you, Melanie for a patch that:Charles Krinke1-1/+6
Implements the beginning of llInventoryDrop. Doesn't cover the actual dropping yet, just the permissions for it.
2008-06-26Mantis#1594. Thank you, Melanie for a patch that:Charles Krinke1-1/+36
Fixes: - Wearable icon and name sreset to default on copy/paste - Cache is not updated when renaming/moving folders - Partial refactor to make inventory less dependen on AssetBase having a "Name" field - Add llGiveInventoryList() function
2008-06-25Minor formatting cleanup.Jeff Ames1-31/+31
2008-06-25Mantis#1590. Thank you kindly, Melanie for a patch that:Charles Krinke1-3/+1
Makes items appear in the item type folder, rather than in the root
2008-06-24Mantis#1587. Thank you kindly, Melanie for a patch that:Charles Krinke1-1/+1
Add permissions magling to llGiveInventoryItem, correct some corner case functionality
2008-06-24Mantis#5189. Thank you kindly, Matth for your patchCharles Krinke1-1/+38
to add the beginnings of llGiveInventory().
2008-06-23* Remove all use of asset.InvType, as outlined in mailing list discussionJustin Clarke Casey1-1/+1
* This is stage 1, the field will be removed from AssetType and the assets table if this change doesn't prove problematic
2008-06-20Mantis#1573. Thank you kindly, Mikem for a patch to ourCharles Krinke1-1/+1
LSL subroutine implementation to solve an infinite loop in llParseString2List() under certain circumstances.
2008-06-18Minor formatting cleanup.Jeff Ames1-2/+1
2008-06-13* minor: Remove LINK_SET debug Console WritelineJustin Clarke Casey1-2/+0
* only appeared in DotNetEngine's LSL_BuildIn_Commands.cs * Nice spot Ewe Loon (http://opensimulator.org/mantis/view.php?id=1548)
2008-06-13A little minor cleanup and harmonizing between LSL_BuiltIn_Commands.csCharles Krinke1-11/+9
and its copy LSL_ScriptCommands.cs
2008-06-08* Fixed it so you can do a lot more llDetected* methods in many additional ↵Teravus Ovares1-2/+62
situations and have it work. * script Collision reporting works now in DotNetEngine
2008-06-08* Fixes llDetectedKey. Teravus Ovares1-53/+2
2008-06-06* llSetPrimitiveParams PRIM_FLEXIBLE is now supported.Teravus Ovares1-0/+1
2008-06-06* Added Light control from script in LLSetPrimitiveParams.Teravus Ovares1-2/+57
2008-06-06* Added a configuration option for allowing god script lsl methods.. such ↵Teravus Ovares1-19/+29
as llSetObjectPermMask. By default it's off.
2008-06-06* Adds semi broken PRIM_FLEXIBLE support for prim. It's semi-broken ↵Teravus Ovares1-5/+46
because it won't do the setting of the prim flexi from not-flexi, however, it'll tweak the parameters of an already existing flexi prim.
2008-06-05* This sends collision events to the script engine. Teravus Ovares1-2/+53
* Unfortunately, there's some kludges with the Async manager and the llDetected functions that I have yet to decipher... so llDetected functions don't work with collision events at the moment....
2008-06-04Mantis#1447. Thank you kindly, Kinoc for a patch that:Charles Krinke1-3/+4
llKey2Name fix to show avatar name instead of "Basic Entity" One line fix. Replaces "presence.Name" => "presence.ControllingClient.Name" to return avatar's name.
2008-06-04Formatting cleanup, minor refactoring, svn properties.Jeff Ames1-1/+1
2008-05-30Mantis#1422. Thank you kindly, Xantor for your llLoopSound()Charles Krinke1-0/+6
patch and I apologize for my confusion with the interim patch earlier.
2008-05-30Mantis#1422. Thank you kindly, Xantor for a patch that :Charles Krinke1-44/+32
- volume doesn't change with a new llLoopSound(same sound, new volume); - SendFullUpdateToClients sends 0's in all sound related fields when there's no sound on the prim, thereby improving the amount of data being sent out on these prims (fixes zeropack) - Removed some code duplication between llStartSound, llLoopSound and llParticleSystem() calls
2008-05-30Update svn properties. Formatting cleanup.Jeff Ames1-9/+9
2008-05-30thanks krtaylor for a Dr Scofield1-17/+18
Patch to cleanup some incorrect parsing, boundry conditions and error checking in the llGetNotecardLine and llGetNumberOfNotecardLines functions.
2008-05-29Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke1-2/+46
that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
2008-05-28From: Kurt Taylor <krtaylor@us.ibm.com>Sean Dague1-5/+84
Attached is an initial implementation of llGetNotecardLine and llGetNumberOfNotecardLines. I decided to go ahead an send these out for comment while I continue to work on the second part of the proper implementation. These functions work and return the values requested, as initially defined in the code, but should be properly implemented to return the requested information via a dataserver event. This event will be added and these functions fixed and included in a second patch shortly.
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke1-2/+54
llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
2008-05-28Formatting cleanup.Jeff Ames1-1/+1
2008-05-28Thank you, Grumly57 kindly for:Charles Krinke1-1/+1
This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
2008-05-26disabling m_log again.Dr Scofield1-1/+1
2008-05-26This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield1-12/+10
llOwnerSay() via the newly created Scene.SimBroadcast() call.
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-4/+9
2008-05-25* A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares1-4/+4
however you can use it to help find out what scripts are causing your simulator to cry. * Access it from the Estate tools/Debug tab.
2008-05-24* Refactor: Collapse some multiple remove object pathsJustin Clarke Casey1-1/+1
* Push some delete functionality into InnerScene to match what's already there for adding objects
2008-05-16Formatting cleanup.Jeff Ames1-145/+145
2008-05-15Committing Xantor's LLEuler3Rot still broken fix patch. Mantis 001235. ↵Teravus Ovares1-97/+44
Thanks Xantor!
2008-05-14From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey1-1/+1
* small patch that fixes a compiler warning (struct comparison against null again, my favourites) in LSL_BuiltIn_Commands. LSL_Types.key has a Boolean operator that can be used here.
2008-05-14From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey1-40/+2
More scipt engine cleanup - removed not needed or improper use of NotImplemented and Console.WriteLine
2008-05-14Applied Patch mantis 1220. Implements llGetStartParameter. Thanks!Teravus Ovares1-2/+2
2008-05-14Formatting cleanup.Jeff Ames1-40/+46
2008-05-14* Removed 19 warningsTeravus Ovares1-1/+1
2008-05-13* Refactor: Stop exposing the inner scene's ScenePresence dictionary ↵Justin Clarke Casey1-17/+24
directly to the world
2008-05-12Formatting cleanup.Jeff Ames1-54/+29
2008-05-110001199: [PATCH] Add support for default animations Teravus Ovares1-8/+11
From Melanie... Thanks Melanie! .
2008-05-09* Resolve mantis 1182. Doesn't actually implement llGiveInventoryList - ↵Justin Clarke Casey1-1/+1
merely corrects the signature so that "not implemented" message is displayed rather than a script compile failure
2008-05-09Thank you, Melanie for a patch that:Charles Krinke1-43/+43
Patch fixes the pesky "Cannot implicitly convert to bool" issue for function returns
2008-05-08*Added all the permission checks to the sceneexternalchecks and modified ↵mingchen1-3/+3
permission module to follow this. *This makes permission checking much more modular; allows restrictive and granting module to be made without modifying the existing permission module