Economy
From OpenSimulator
(→Buying and selling land) |
(→Buying and selling land) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Quicklinks}} | + | {{Quicklinks|Economy}} |
=Introduction= | =Introduction= | ||
Line 25: | Line 25: | ||
There is a very minimal version of this (with installation instructions) at https://github.com/justincc/opensimulator-helper. This allows $0 transfers. | There is a very minimal version of this (with installation instructions) at https://github.com/justincc/opensimulator-helper. This allows $0 transfers. | ||
− | A slightly more fleshed out example can be found at | + | For newer php version after 7.x and for newer viewer versions a different version of landtool.php may be required: https://gist.github.com/Tampa/af55bb150f423e78bfa3d144bf98bc85 |
+ | |||
+ | A slightly more fleshed out example can be found at https://download.osgrid.org/helper_tools_opensim_2024.zip. | ||
Both these files ultimately derive from an original implementation at: | Both these files ultimately derive from an original implementation at: | ||
Line 32: | Line 34: | ||
https://sourceforge.net/projects/opensimwiredux/ | https://sourceforge.net/projects/opensimwiredux/ | ||
− | |||
− | |||
=References= | =References= | ||
* http://opensim-users.2152040.n2.nabble.com/Buying-and-Selling-Land-What-module-is-needed-td7578626.html - A mailing list thread on getting landtool.php working. | * http://opensim-users.2152040.n2.nabble.com/Buying-and-Selling-Land-What-module-is-needed-td7578626.html - A mailing list thread on getting landtool.php working. |
Latest revision as of 21:34, 26 October 2024
Languages: |
English Deutsch |
Contents |
[edit] Introduction
Note: this page is in development. Additions welcome.
Two major aspects relating to currency are buying and selling money units (i.e. by clicking the currency display in the top-right hand corner of most viewers) and buying and selling land.
These involve calls to a pair of external PHP scripts. The names of these scripts (currency.php and landtool.php) are actually hard-coded (!) in the viewer source. However, third-party viewers will allow the path to be changed if we specify it in the economy parameter of the [GridInfo] section of Robust.ini (or Robust.HG.ini, config-include/StandaloneCommon.ini).
[edit] Buying and selling money
OpenSimulator does not come with a working currency implementation, though there is a very limited sample money module that works in standalone mode only.
You can find third party currency implementations on the Related Software page. The OpenSimulator project cannot supply any support for these modules.
Clicking the currency display in a viewer generates a request to currency.php following whatever path has been set up in the economy [GridInfo] section of Robust.ini.
[edit] Buying and selling land
Buying and selling land also requires the grid to have a landtool.php page that services a preflightBuyLandPrep XMLRPC call.
For an OpenSimulator standalone installation, the SampleMoneyModule will supply the required minimal functionality (TODO: properly document this.).
Unfortunately, this is not available in ROBUST at this time. A grid installation will need to supply an external implementation of the preflightBuyLandPrep XMLRPC function.
There is a very minimal version of this (with installation instructions) at https://github.com/justincc/opensimulator-helper. This allows $0 transfers.
For newer php version after 7.x and for newer viewer versions a different version of landtool.php may be required: https://gist.github.com/Tampa/af55bb150f423e78bfa3d144bf98bc85
A slightly more fleshed out example can be found at https://download.osgrid.org/helper_tools_opensim_2024.zip.
Both these files ultimately derive from an original implementation at:
https://sourceforge.net/projects/opensimwi/
https://sourceforge.net/projects/opensimwiredux/
[edit] References
- http://opensim-users.2152040.n2.nabble.com/Buying-and-Selling-Land-What-module-is-needed-td7578626.html - A mailing list thread on getting landtool.php working.