aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/BetaGridLikeMoneyModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* replace hard tabs with 4 spaces to be consistant in the source.Sean Dague2008-04-241-261/+261
| | | | | | Please adjust your editors to not use hard tabs.
* * Fixed an annoying pop-up box when crossing borders.Teravus Ovares2008-04-231-2/+10
|
* * Patch from Melanie. Mantis 0001037: Add various internal plumbing to ↵Teravus Ovares2008-04-231-2/+119
| | | | | | | the example economy module, implements llSetPayPrice(), money() and llGiveMoney() in scripts. Thanks Melanie! * Moves module loading before the script engine so the script engine can pick up events from modules registering interfaces with scene.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-9/+8
| | | | (this took a while to run).
* * Re-Fixed caps Teravus Ovares2008-04-171-225/+156
| | | | | * This fixes chi11ken's/OpenViewer's libsl cap issue.
* * Patch from ChrisDown to fix odd results when using landmarks. Thanks ↵Teravus Ovares2008-04-171-2/+2
| | | | | | | Chris! (Tweaked slightly so avatar don't end up underground). * Removed some testing notices I had in there that were obnoxious.
* * Implements 'Set Home to Here' Teravus Ovares2008-04-171-8/+12
| | | | | | | * Implements 'Teleport Home' * User Server has to be updated for it to save your home in grid mode * home position accuracy is in int because the grid comms ExpectUser method tries to convert to Uint and crashes if it gets a float. Added a convert to decimal in ExpectUser but to avoid a breaking change with old revisions, kept the save value in int for now. Eventually it needs to be a float, but lets release another incremental version before doing that.
* * Fixes an issue with the BaseHttpServer in LinuxTeravus Ovares2008-04-151-0/+44
| | | | | | | | * Fixes an estate naming issue * Fixes a land issue with the landobject not reporting the proper parcel prim. * A few other tweaks.
* * Fixed a few warnings.Teravus Ovares2008-04-141-0/+106
| | | | | | | * Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
* * Fix a bug in the friends module that causes a friend not to appear online ↵Teravus Ovares2008-04-131-14/+871
| | | | | | | | when they were. * A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
* * fix bug 935Teravus Ovares2008-04-111-4/+7
|
* * Fix a null reference when there's no [Economy] section in the opensim.iniTeravus Ovares2008-04-101-3/+3
|
* * Updates BetaGridLikeMoneyModuleTeravus Ovares2008-04-101-5/+96
| | | | | | | * Several people have asked for a way to limit uploads, so I've decided to show people how to do this in the BetaGridLikeMoneyModule. * Configure it in OpenSim.ini using the [Economy] header. See the bottom of the OpenSim.ini.example for more information. * This also fleshes out the Economy API a bit more.
* Formatting cleanup.Jeff Ames2008-03-181-39/+27
|
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-031-4/+2
| | | | | | | | | | * Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-051-8/+2
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Refactored the sound calls to SceneObjectPart Teravus Ovares2008-02-051-0/+324
* Fixed a few bugs * Wrote an example module to make certain event systems more mature.