diff options
Diffstat (limited to 'builtin/client/cheats.lua')
-rw-r--r-- | builtin/client/cheats.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/builtin/client/cheats.lua b/builtin/client/cheats.lua new file mode 100644 index 000000000..efd8c6452 --- /dev/null +++ b/builtin/client/cheats.lua @@ -0,0 +1,30 @@ +core.cheats = { + ["Combat"] = { + ["Killaura"] = "killaura", + ["AntiKnockback"] = "antiknockback", + ["NoFallDamage"] = "prevent_natural_damage", + ["AutoRespawn"] = "autorespawn", + }, + ["Movement"] = { + ["DragonRider"] = "entity_speed", + ["Freecam"] = "freecam", + ["PrivBypass"] = "priv_bypass", + }, + ["Render"] = { + ["Xray"] = "xray", + ["Fullbright"] = "fullbright", + ["HUDBypass"] = "hud_flags_bypass", + ["NoHurtCam"] = "no_hurt_cam" + }, + ["World"] = { + ["FastDig"] = "fastdig", + ["AutoDig"] = "autodig", + ["IncreasedRange"] = "increase_tool_range", + ["UnlimitedRange"] = "increase_tool_range_plus", + }, + ["Misc"] = { + ["Enderchest"] = function() + minetest.open_special_inventory() + end, + } +} |