mirror of
https://github.com/kcozens/OpenSimSearch.git
synced 2026-08-14 08:52:28 +00:00
Updated README, XMLRPC needs be on the machine as well
+ Added the solution for LandSales (all it needed was a 256 multiplier) git-svn-id: http://forge.opensimulator.org/svn/ossearch/trunk@162 109abde3-1f22-4c10-b5d7-b6b0135cd00c
This commit is contained in:
@@ -621,8 +621,8 @@ namespace OpenSimSearch.Modules.OpenSearch
|
||||
}
|
||||
string[] landingpoint = ParcelLandingPoint[i].Split('/');
|
||||
mapItemReply mapitem = new mapItemReply();
|
||||
mapitem.x = (uint)(locX + Convert.ToDecimal(landingpoint[0]));
|
||||
mapitem.y = (uint)(locY + Convert.ToDecimal(landingpoint[1]));
|
||||
mapitem.x = (uint)((locX * 256 ) + Convert.ToDecimal(landingpoint[0]));
|
||||
mapitem.y = (uint)((locY * 256 ) + Convert.ToDecimal(landingpoint[1]));
|
||||
mapitem.id = landDir.parcelID;
|
||||
mapitem.name = landDir.name;
|
||||
mapitem.Extra = landDir.actualArea;
|
||||
|
||||
@@ -2,8 +2,8 @@ OpenSimSearch add-on module for Open Simulator
|
||||
|
||||
Requirements
|
||||
|
||||
The webserver needs PHP support with support for CURL.
|
||||
NOTE: Not all webservers may have CURL support for PHP.
|
||||
The webserver needs PHP support with support for CURL and XMLRPC.
|
||||
NOTE: Not all webservers may have CURL and XMLRPC support for PHP.
|
||||
|
||||
|
||||
About the files
|
||||
|
||||
Reference in New Issue
Block a user