First Person Shooter Mod for Minetest
Go to file
2014-06-29 21:30:54 +01:00
sounds Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00
textures Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00
.gitignore Initial commit 2013-11-26 21:22:21 +00:00
depends.txt Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00
init.lua Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00
LICENSE.txt Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00
README.txt Bump version to 0.4.1 2014-06-29 21:30:54 +01:00
shooter.conf.example Improve particle effect positioning and make optional 2014-06-25 20:32:55 +01:00
shooter.lua Add a simple ammo system and fix misspelling of rifle 2014-06-29 21:28:09 +01:00

Minetest Mod - Simple Shooter [shooter]
=======================================

Mod Version: 0.4.1

Minetest Version: 0.4.9

An experimental first person shooter mod that uses simple vector mathematics
to produce an accurate and server-firendly method of hit detection.

By default this mod is configured to work only against other players in
multiplayer mode and against Simple Mobs [mobs] in singleplayer mode.

Default configuration can be customised by adding a shooter.conf file to
the mod's main directory, see shooter.conf.example for more details.

This is still very much a work in progress which I eventually plan to use
as the base for a 'Spades' style FPS game using the minetest engine.

Crafting
========

S = Steel Ingot  [default:steel_ingot]
B = Bronze Ingot [default:bronze_ingot]
M = Mese Crystal [default:mese_crysytal]

Pistol: [shooter:pistol]

+---+---+
| S | S |
+---+---+
|   | M |
+---+---+

Rifle: [shooter:rifle]

+---+---+---+
| S |   |   |
+---+---+---+
|   | B |   |
+---+---+---+
|   | M | B |
+---+---+---+

Shotgun: [shooter:shotgun]

+---+---+---+
| S |   |   |
+---+---+---+
|   | S |   |
+---+---+---+
|   | M | B |
+---+---+---+

Sub Machine Gun: [shooter:machine_gun]

+---+---+---+
| S | S | S |
+---+---+---+
|   | B | M |
+---+---+---+
|   | B |   |
+---+---+---+