]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/client/cheats/init.lua
Lua API: Particle callbacks; Add NoWeather
[dragonfireclient.git] / builtin / client / cheats / init.lua
index 9eb2594a0502004d4828041108ac913fa0239e2b..30c3fe2085c77b8e0f50ead62d721af0a290efa4 100644 (file)
@@ -1,9 +1,14 @@
 core.cheats = {
        ["Combat"] = {
                ["Killaura"] = "killaura",
+               ["Forcefield"] = "forcefield",
                ["AntiKnockback"] = "antiknockback",
                ["FastHit"] = "spamclick",
                ["AttachmentFloat"] = "float_above_parent",
+               ["CrystalPvP"] = "crystal_pvp",
+               ["AutoTotem"] = "autototem",
+               ["ThroughWalls"] = "dont_point_nodes",
+               ["AutoHit"] = "autohit",
        },
        ["Movement"] = {
                ["Freecam"] = "freecam",
@@ -13,6 +18,12 @@ core.cheats = {
                ["Jesus"] = "jesus",
                ["NoSlow"] = "no_slow",
                ["AutoSneak"] = "autosneak",
+               ["AutoSprint"] = "autosprint",
+               ["SpeedOverride"] = "override_speed",
+               ["JumpOverride"] = "override_jump",
+               ["GravityOverride"] = "override_gravity",
+               ["JetPack"] = "jetpack",
+               ["AntiSlip"] = "antislip",
        },
        ["Render"] = {
                ["Xray"] = "xray",
@@ -21,8 +32,14 @@ core.cheats = {
                ["NoHurtCam"] = "no_hurt_cam",
                ["BrightNight"] = "no_night",
                ["Coords"] = "coords",
-               ["Tracers"] = "enable_tracers",
-               ["ESP"] = "enable_esp",
+               ["CheatHUD"] = "cheat_hud",
+               ["EntityESP"] = "enable_entity_esp",
+               ["EntityTracers"] = "enable_entity_tracers",
+               ["PlayerESP"] = "enable_player_esp",
+               ["PlayerTracers"] = "enable_player_tracers",
+               ["NodeESP"] = "enable_node_esp",
+               ["NodeTracers"] = "enable_node_tracers",
+               ["NoWeather"] = "noweather",
        },
        ["World"] = {
                ["FastDig"] = "fastdig",
@@ -34,7 +51,8 @@ core.cheats = {
                ["ScaffoldPlus"] = "scaffold_plus",
                ["BlockWater"] = "block_water",
                ["PlaceOnTop"] = "autotnt",
-               ["Replace"] = "replace"
+               ["Replace"] = "replace",
+               ["Nuke"] = "nuke",
        },
        ["Exploit"] = {
                ["EntitySpeed"] = "entity_speed",
@@ -51,14 +69,17 @@ core.cheats = {
        },
        ["Chat"] = {
                ["IgnoreStatus"] = "ignore_status_messages",
-               ["Deathmessages"] = "mark_deathmessages"
+               ["Deathmessages"] = "mark_deathmessages",
+               ["ColoredChat"] = "use_chat_color",
+               ["ReversedChat"] = "chat_reverse",
        },
        ["Inventory"] = {
                ["AutoEject"] = "autoeject",
                ["AutoTool"] = "autotool",
                ["Enderchest"] = function() core.open_enderchest() end,
                ["HandSlot"] = function() core.open_handslot() end,
-               ["NextItem"] = "next_item",
+               ["Strip"] = "strip",
+               ["AutoRefill"] = "autorefill",
        }
 }
 
@@ -70,6 +91,7 @@ end
 local cheatpath = core.get_builtin_path() .. "client" .. DIR_DELIM .. "cheats" .. DIR_DELIM
 
 dofile(cheatpath .. "chat.lua")
+dofile(cheatpath .. "combat.lua")
 dofile(cheatpath .. "inventory.lua")
 dofile(cheatpath .. "movement.lua")
 dofile(cheatpath .. "player.lua")