aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/regions/make.php
diff options
context:
space:
mode:
authorlbsa712008-01-07 20:02:03 +0000
committerlbsa712008-01-07 20:02:03 +0000
commite27ba6cc6337fc42a1f86d280c256d40ac78161c (patch)
tree2480850170fe62ae0da54a4407dbb47e12dcee7a /share/regions/make.php
parent* Enabling the LLSD Login method by jhurliman so libSecondLife clients work o... (diff)
downloadopensim-SC_OLD-e27ba6cc6337fc42a1f86d280c256d40ac78161c.zip
opensim-SC_OLD-e27ba6cc6337fc42a1f86d280c256d40ac78161c.tar.gz
opensim-SC_OLD-e27ba6cc6337fc42a1f86d280c256d40ac78161c.tar.bz2
opensim-SC_OLD-e27ba6cc6337fc42a1f86d280c256d40ac78161c.tar.xz
* Deleted outdated shared regions
Diffstat (limited to 'share/regions/make.php')
-rw-r--r--share/regions/make.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/share/regions/make.php b/share/regions/make.php
deleted file mode 100644
index 3c83470..0000000
--- a/share/regions/make.php
+++ /dev/null
@@ -1,14 +0,0 @@
1<?php
2
3$i = 0;
4for($x = 0; $x < 16; $x++)
5{
6 for($y = 0; $y < 16; $y++)
7 {
8 $ourFileName = "region_$i.xml";
9 $ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
10 fwrite($ourFileHandle , "<Root><Config sim_name=\"Test Sim #$i\" sim_location_x=\"" . (1000 + $x) . "\" sim_location_y=\"" . (1000 + $y) . "\" datastore=\"region_" . $i . "_datastore.yap\" internal_ip_address=\"0.0.0.0\" internal_ip_port=\"" . (9000 + $i) . "\" external_host_name=\"127.0.0.1\" terrain_file=\"default.r32\" terrain_multiplier=\"60.0\" master_avatar_first=\"Test\" master_avatar_last=\"User\" master_avatar_pass=\"test\" /></Root>");
11 fclose($ourFileHandle);
12 $i++;
13 }
14} \ No newline at end of file