]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/commitdiff
Update readme & version data 1.0.0-beta5
authorIrtimaled <irtimaled@gmail.com>
Wed, 4 Feb 2015 21:37:29 +0000 (21:37 +0000)
committerIrtimaled <irtimaled@gmail.com>
Wed, 4 Feb 2015 21:46:35 +0000 (21:46 +0000)
README.md
java/com/irtimaled/bbor/BoundingBoxOutlineReloaded.java

index 474205a97596e7b5a4ccfb9ec43e9dac94b4b829..8407108e77d101b22aa7d45e28ca440e604d8636 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,16 +26,10 @@ This mod highlights in a variety of colours and styles the different structures
 
 As chunks are loaded the game provides metadata about all the different structures & features in those chunks.  The mod interprets this meta data, caches the results, and renders the bounding boxes to the screen.  In an SMP environment this data is not present on the clients so the mod needs to run on the server where the processing happens and then the relevant metadata is sent to the clients for them to render.
 
-To toggle the rendering of the bounding boxes press B.
-
 # Installing
 
 Make sure you have Forge 1.8 installed then drop the jar file into the mods/1.8 folder.  Remember this will need to be installed on client and server in an SMP scenario.
 
-# Using
-
-Press B, sit back and enjoy the goodness flowing onto your screen.
-
 # Configuring
 
 The keyboard shortcut can be configured in the standard Controls screen.
@@ -78,6 +72,25 @@ Forge provides a UI to edit configuration of mods - this mod provides the abilit
 
 Open the config/BBOutlineReloaded.cfg file with your text editor of choice and change the settings.  Simples!  Minecraft (including servers) will need to be restarted for the settings to take effect.
 
+# Using
+
+Press B, sit back and enjoy the goodness flowing onto your screen.
+
+# Using with vanilla servers
+
+There are two options when you want bounding boxes to show when accessing vanilla servers:-
+
+1. Keep cache - With the "Keep Cache Between Sessions" config setting enabled, Open a copy of the world in single player and move around to capture all the structures you want in the cache. Once you are happy with the structures you have cached, quit the single player game and connect to the server.  You will see all the structures from the cache.
+2. Load dat files - Copy the dat files listed below into config/BBOutlineReloaded/{host},{port} and these will be loaded when you connect to the vanilla server.  {host} will be the name or ip you use to connect to the server; {port} is the port you specify when connecting.  The any/all of following files can be used:-
+  - level.dat; include this for world spawn, spawn and slime chunks to be rendered.
+  - Fortress.dat; include this for Nether Fortresses to be rendered.
+  - Mineshaft.dat; include this for Mineshafts to be rendered.
+  - Monument.dat; include this for Ocean Monuments to be rendered.
+  - Stronghold.dat; include this for Strongholds to be rendered.
+  - Temple.dat; include this for Desert & Jungle Temples and witch huts to be rendered.
+
+It is also possible to include the villages.dat, villages_end.dat & villages_nether.dat files and it will render villages however these files only contain the villages loaded when copied and will not handle the dynamic changes that occur with villages when doors are added/removed or all villagers are removed.
+
 # Links
 - Forge 1.8 - [Download](http://files.minecraftforge.net/minecraftforge/1.8)
 - 4poc's BBOutline mod - [Forum](http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1286555-bounding-box-outline) | [Source](http://www.github.com/4poc/bboutline)
index 74f5f23b5a6b87a7a469082ad44195ea170932cc..b5546b7f6217cea13f26206319b96eaa96385538 100644 (file)
@@ -15,7 +15,7 @@ public class BoundingBoxOutlineReloaded {
 
     public static final String MODID = "bbor";
     public static final String NAME = "Bounding Box Outline Reloaded";
-    public static final String VERSION = "1.0.0-beta4";
+    public static final String VERSION = "1.0.0-beta5";
 
     private ConfigManager configManager;