remove readme format test

master
Kilarin 2014-06-10 21:41:17 -05:00
parent ad7868ccd9
commit 305ef64a00
1 changed files with 0 additions and 80 deletions

View File

@ -1,80 +0,0 @@
Bridge Tool Version 2.1 Author Kilarin (Donald Hines)
This mod adds a new "bridge tool" that makes placing stone (or glass, earth, or any material) while building a bridge in no-fly mode easy.
The bridge tool has 3 modes that can be switched by left clicking with the tool.<p>
And you can switch the WIDTH of the path built by holding down the SNEAK key and left clicking.<p>
![alt text](http://i61.tinypic.com/2uqf6f8.png "image")<p>
The inventory image changes with the mode indicates exactly how the bridge tool builds in that mode. For width of 2 and 3 you will note either 2 or 3 little blue squares appear below the main image to let you know what the width is.
On a right click, the bridge tool will attempt to use whatever material is in the inventory slot directly to the right of the bridge tool to build in the direction indicated by the mode
In **mode 1** it will build **FORWARD** in a straight line:<p>
![alt text](http://i58.tinypic.com/f42t0.png "image")<p>
This saves you a lot of time pressing the sneak button and leaning over the edge so you can click on the outward face of the node. Please note that the bridge tool can build out in any of the 4 directions depending on what way you are facing when you right click.
In **mode 2** the bridge tool builds **DOWN** diagonally:<p>
![alt text](http://i57.tinypic.com/296kizk.png "image")<p>
This is perhaps the most important function of the bridge tool because what seems like it should be simple, building down from a bridge you are standing on, is virtually impossible without this tool.
In **mode 3** the bridge tool builds **UP** diagonally:<p>
![alt text](http://i58.tinypic.com/28l4duq.png "image")<p>
This is not hard to do without the tool, but using the tool saves you several steps.
And when you select a **width** of 2 or 3 by holding down the sneak button and left clicking the tool will build a path of that width:<p>
![alt text](http://i57.tinypic.com/s2wv3p.png "image")<p>
![alt text](http://i58.tinypic.com/mwpn5w.png "image")
If the bridge tool can not build where you asked it to, or if it runs out of material in the stack to the right of the tool, it will notify you of the problem via chat message.
The bridge tool is crafted using 3 steel ingots in a v shape, and one mese crystal:<p>
```<p>
steel ingot, ,steel ingot<p>
, steel ingot ,<p>
,mese crystal fragment,```<p>
![alt text](http://i57.tinypic.com/1zgay6f.png "image")<p>
The inventory image will switch from the tool itself to the mode image the first time you left click with the tool.
The bridge tool automatically orients **stairs** in the proper direction. When building a 3 node wide stair, the tool will ensure that all stairs point the correct direction. And when building forward, the tool will orient the stair downward.
And the bridge tool is now configured to wear out. If you wish to implement this feature edit the init.lua and change the value of WEAR_PER_USE from 0 to whatever you wish. (Max wear is 65535 and wear will be applied for each node of width of the path you are building)
**Video:**<p>
Excalibur Zero created a video demonstrating this mod:<p>
[https://www.youtube.com/watch?v=j2E9ojtyitc](https://www.youtube.com/watch?v=j2E9ojtyitc)
**Credits:**<p>
My son helped me with some ideas for this mod. I got a lot of code examples from the screwdriver mod in minetest_game by RealBadAngel, Maciej Kasatkin. I also copied and modified the screwdriver's mode number images for use in the bridge tool inventory images.<p>
Topywo suggested adding wear, correcting down stair orientation, and using not_in_creative_inventory. Sokomine suggested adding width so that you could build 2 or 3 wide.
**Dependencies:**<p>
default
**Incompatibilities:**<p>
Problems have been reported when using this mod with inventory tweak
**License:**<p>
code CC0, textures CC BY-SA 3.0
**github source:**<p>
[https://github.com/Kilarin/minetest-mod-bridgetool](https://github.com/Kilarin/minetest-mod-bridgetool)
**Download:**<p>
[https://github.com/Kilarin/minetest-mod-bridgetool/archive/master.zip](https://github.com/Kilarin/minetest-mod-bridgetool/archive/master.zip)
**To install:**<p>
Simply unzip the file into your mods folder, then rename the resulting folder from minetest-mod-bridgetool-master to bridgetool
**Changelog**<p>
--Version 2.1<p>
Corrected fact that 3 wide stairs would sometimes orient the 3rd stair the wrong way<p>
Modified stair orientation when using mode 1(forward) so that the stair will face down (since the only reason you would use the "forward" option with this tool and a staircase is to begin a down stair.)
---Version 2.0<p>
Added width of 2 or 3<p>
corrected down stair orientation<p>
added not_in_creative_inventory=1 to all of the "mode" versions of the tool<p>
added wear option
---Version 1.0<p>
Initial release