diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-11 17:11:22 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-11 17:11:22 +0100 |
commit | 0c9e7466e84b514cbe65ee9b6617af7828c37522 (patch) | |
tree | 0403a6e80354f23cee38667c9cf3635d2091fb51 /builtin/client/cheats/init.lua | |
parent | a1e61e561fdc6f37e1b7547203796a9b4ac4f8e1 (diff) | |
download | dragonfireclient-0c9e7466e84b514cbe65ee9b6617af7828c37522.tar.xz |
New Cheat Philosophy
Diffstat (limited to 'builtin/client/cheats/init.lua')
-rw-r--r-- | builtin/client/cheats/init.lua | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/builtin/client/cheats/init.lua b/builtin/client/cheats/init.lua deleted file mode 100644 index 3dc849079..000000000 --- a/builtin/client/cheats/init.lua +++ /dev/null @@ -1,100 +0,0 @@ -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", - ["AutoForward"] = "continuous_forward", - ["PitchMove"] = "pitch_move", - ["AutoJump"] = "autojump", - ["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", - ["Fullbright"] = "fullbright", - ["HUDBypass"] = "hud_flags_bypass", - ["NoHurtCam"] = "no_hurt_cam", - ["BrightNight"] = "no_night", - ["Coords"] = "coords", - ["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", - ["FastPlace"] = "fastplace", - ["AutoDig"] = "autodig", - ["AutoPlace"] = "autoplace", - ["InstantBreak"] = "instant_break", - ["Scaffold"] = "scaffold", - ["ScaffoldPlus"] = "scaffold_plus", - ["BlockWater"] = "block_water", - ["BlockLava"] = "block_lava", - ["PlaceOnTop"] = "autotnt", - ["Replace"] = "replace", - ["Nuke"] = "nuke", - }, - ["Exploit"] = { - ["EntitySpeed"] = "entity_speed", - ["ParticleExploit"] = "log_particles", - }, - ["Player"] = { - ["NoFallDamage"] = "prevent_natural_damage", - ["NoForceRotate"] = "no_force_rotate", - ["IncreasedRange"] = "increase_tool_range", - ["UnlimitedRange"] = "increase_tool_range_plus", - ["PointLiquids"] = "point_liquids", - ["PrivBypass"] = "priv_bypass", - ["AutoRespawn"] = "autorespawn", - }, - ["Chat"] = { - ["IgnoreStatus"] = "ignore_status_messages", - ["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, - ["Strip"] = "strip", - ["AutoRefill"] = "autorefill", - } -} - -function core.register_cheat(cheatname, category, func) - core.cheats[category] = core.cheats[category] or {} - core.cheats[category][cheatname] = func -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") -dofile(cheatpath .. "render.lua") -dofile(cheatpath .. "world.lua") |