RemoteAdmin:admin save heightmap
From OpenSimulator
(Difference between revisions)
(Created page with "'''admin_save_heightmap''' remotely allows to save a hight maps of regions to file. === Enabling admin_save_heightmap === If not all functions are enabled, use admin_save_heigh...") |
|||
Line 1: | Line 1: | ||
− | '''admin_save_heightmap''' remotely allows to save a hight | + | '''admin_save_heightmap''' remotely allows to save a hight map of the regions to file. |
Revision as of 14:14, 9 December 2011
admin_save_heightmap remotely allows to save a hight map of the regions to file.
Contents |
Enabling admin_save_heightmap
If not all functions are enabled, use admin_save_heightmap to enable the function in the [RemoteAdmin] section
enabled_methods = admin_save_heightmap,...
Parameters
Required Parameters
These parameters are required
parameter | Description | Values |
---|---|---|
regionid | region uuid | |
filename | save height map as file name |
Optional Parameters
No optional parameters.
Returned Parameters
Returned Parameters
These parameters are returned by Remote Admin
parameter | Description | Values |
---|---|---|
success | true when successfull | true |
Error messages
When an error occures the following error value are returned
Notes
- accepted is an returned parameter, probably used prior to success
Example
PHP
<?php // Including the RemoteAdmin PHP class. include('RemoteAdmin.php'); // Instantiate the class with parameters identical to the Python example above $myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret'); // Invoke admin_save_heightmap (multiple parameters) $parameters = array('regionid' => '000000-0000-0000-0000-00000000', 'filename' => 'my_terrain.raw'); $myRemoteAdmin->SendCommand('admin_save_heightmap', $parameters); ?>