aboutsummaryrefslogtreecommitdiff
path: root/builtin/client/cheats.lua
blob: efd8c645231431acb48f775b92a76422afd9b45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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,
	}
}