First Person Shooter Mod for Minetest
Go to file
2015-04-26 13:00:29 +01:00
models Add coloured arrows 2015-01-25 17:28:00 +00:00
sounds Version 0.5.0 - Lots of new stuff 2014-07-26 21:18:10 +01:00
textures Preparation for coloured arrows 2015-01-24 20:07:45 +00:00
.gitignore Add crosshair.png to .gitignore, resolves #8 2015-04-26 13:00:29 +01:00
crossbow.lua Stop arrows when striking other entities 2015-03-14 19:55:46 +00:00
depends.txt Add coloured arrows 2015-01-25 17:28:00 +00:00
flaregun.lua Version 0.5.0 - Lots of new stuff 2014-07-26 21:18:10 +01:00
grapple.lua Use moveto rather than setpos for the grappling hook. This makes the movement while using the grappling hook look more realistic to other players. 2014-07-26 23:52:59 +02:00
grenade.lua Add basic protection support 2014-10-01 20:43:33 +01:00
guns.lua Version 0.5.0 - Lots of new stuff 2014-07-26 21:18:10 +01:00
init.lua Add crossbow and arrows 2014-10-24 20:53:18 +01:00
LICENSE.txt Add additional credits to LICENSE.txt 2014-07-27 21:51:55 +01:00
README.txt Bump version to 0.5.3 2015-01-25 18:45:36 +00:00
rocket.lua Add basic protection support 2014-10-01 20:43:33 +01:00
shooter.conf.example Admin has super weapons 2015-01-25 18:23:25 +00:00
shooter.lua Allow per world mod configuration 2015-02-19 19:37:51 +00:00
turret.lua Add basic protection support 2014-10-01 20:43:33 +01:00

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

Mod Version: 0.5.3

Minetest Version: 0.4.9, 0.4.10, 0.4.11

Depends: default, dye, tnt, wool

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
========

<color> = grey, black, red, yellow, green, cyan, blue, magenta

A = Arrow        [shooter:arrow_white]
C = Color Dye    [dye:<color>]
W = Wooden Stick [default:stick]
P = Paper        [default:paper]
S = Steel Ingot  [default:steel_ingot]
B = Bronze Ingot [default:bronze_ingot]
M = Mese Crystal [default:mese_crysytal]
D = Diamond      [default:diamond]
R = Red Wool     [wool:red]
G = Gun Powder   [tnt:gunpowder]

Crossbow: [shooter:crossbow]

+---+---+---+
| W | W | W |
+---+---+---+
| W | W |   |
+---+---+---+
| W |   | B |
+---+---+---+

White Arrow: [shooter:arrow_white]

+---+---+---+
| S |   |   |
+---+---+---+
|   | W | P |
+---+---+---+
|   | P | W |
+---+---+---+

Coloured Arrow: [shooter:arrow_<color>]

+---+---+
| C | A |
+---+---+

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 |   |
+---+---+---+

Ammo Pack: [shooter:ammo]

+---+---+
| G | B |
+---+---+

Grappling Hook: [shooter:grapple_hook]

+---+---+---+
| S | S | D |
+---+---+---+
| S | S |   |
+---+---+---+
| D |   | S |
+---+---+---+

Grappling Hook Gun: [shooter:grapple_gun]

+---+---+
| S | S |
+---+---+
|   | D |
+---+---+

Flare: [shooter:flare]

+---+---+
| G | R |
+---+---+

Flare Gun: [shooter:flaregun]

+---+---+---+
| R | R | R |
+---+---+---+
|   |   | S |
+---+---+---+

Grenade: [shooter:grenade]

+---+---+
| G | S |
+---+---+

Flare Gun: [shooter:rocket_gun]

+---+---+---+
| B | S | S |
+---+---+---+
|   |   | D |
+---+---+---+

Rocket: [shooter:rocket]

+---+---+---+
| B | G | B |
+---+---+---+

Turret: [shooter:turret]

+---+---+---+
| B | B | S |
+---+---+---+
|   | B | S |
+---+---+---+
|   | D |   |
+---+---+---+