diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | init.lua | 29 | ||||
-rw-r--r-- | mod.conf | 3 | ||||
-rw-r--r-- | settingtypes.txt | 3 |
4 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,2 @@ +# killaura +A dragonfire CSM that add Killaura and ForceField diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..a63c59b --- /dev/null +++ b/init.lua @@ -0,0 +1,29 @@ +minetest.register_globalstep(function(dtime) + local player = minetest.localplayer + if not player then return end + local control = player:get_control() + if minetest.settings:get_bool("killaura") or minetest.settings:get_bool("forcefield") and control.dig then + local friendlist = minetest.settings:get("friendlist"):split(",") + for _, obj in ipairs(minetest.get_objects_inside_radius(player:get_pos(), 5)) do + local do_attack = true + if obj:is_local_player() then + do_attack = false + else + for _, friend in ipairs(friendlist) do + if obj:get_name() == friend or obj:get_nametag() == friend then + do_attack = false + break + end + end + end + if do_attack then + obj:punch() + end + end + end +end) + +minetest.register_list_command("friend", "Configure Friend List (friends dont get attacked by Killaura or Forcefield)", "friendlist") + +minetest.register_cheat("Killaura", "Combat", "killaura") +minetest.register_cheat("ForceField", "Combat", "forcefield") diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..4d182b2 --- /dev/null +++ b/mod.conf @@ -0,0 +1,3 @@ +name = killaura +author = Fleckenstein +description = A dragonfire CSM that add Killaura and ForceField diff --git a/settingtypes.txt b/settingtypes.txt new file mode 100644 index 0000000..18d9a13 --- /dev/null +++ b/settingtypes.txt @@ -0,0 +1,3 @@ +killaura (Killaura) bool false +forcefield (ForceField) bool false +friendlist (Friend List) string |