]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/client/cheats.lua
17347b8aecc84f2cf91b0c0c7a755def22d9499a
[dragonfireclient.git] / builtin / client / cheats.lua
1 core.cheats = {
2         ["Combat"] = {
3                 ["Killaura"] = "killaura",
4                 ["AntiKnockback"] = "antiknockback",
5                 ["NoFallDamage"] = "prevent_natural_damage",
6                 ["AutoRespawn"] = "autorespawn",
7         },
8         ["Movement"] = {
9                 ["DragonRider"] = "entity_speed",
10                 ["Freecam"] = "freecam",
11                 ["PrivBypass"] = "priv_bypass",
12                 ["AutoForward"] = "continuous_forward",
13                 ["PitchMove"] = "pitch_move",
14                 ["AutoJump"] = "autojump",
15                 ["Jesus"] = "jesus",
16         },
17         ["Render"] = {
18                 ["Xray"] = "xray",
19                 ["Fullbright"] = "fullbright",
20                 ["HUDBypass"] = "hud_flags_bypass",
21                 ["NoHurtCam"] = "no_hurt_cam",
22                 ["BrightNight"] = "no_night",
23                 ["Coords"] = "coords",
24         },
25         ["World"] = {
26                 ["FastDig"] = "fastdig",
27                 ["FastPlace"] = "fastplace",
28                 ["AutoDig"] = "autodig",
29                 ["AutoPlace"] = "autoplace",
30                 ["InstantBreak"] = "instant_break",
31                 ["IncreasedRange"] = "increase_tool_range",
32                 ["UnlimitedRange"] = "increase_tool_range_plus",
33                 ["Scaffold"] = "scaffold",
34                 ["Highway"] = "highway",
35         },
36         ["Misc"] = {
37                 ["Enderchest"] = function()
38                         minetest.open_special_inventory()
39                 end,
40         }
41 }