diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-17 11:11:22 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-17 11:11:22 +0200 |
commit | bbcd2495444225fd16f61f8a830185ed5b8cf77f (patch) | |
tree | adbf984c13414abd959b23022ca8b8f5a0916972 /builtin/client/cheats.lua | |
parent | 80f416d51449ffc6907f7e2b6d1ef935abee5611 (diff) | |
download | dragonfireclient-bbcd2495444225fd16f61f8a830185ed5b8cf77f.tar.xz |
New Mod System
Diffstat (limited to 'builtin/client/cheats.lua')
-rw-r--r-- | builtin/client/cheats.lua | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/builtin/client/cheats.lua b/builtin/client/cheats.lua deleted file mode 100644 index 800784597..000000000 --- a/builtin/client/cheats.lua +++ /dev/null @@ -1,51 +0,0 @@ -core.cheats = { - ["Combat"] = { - ["Killaura"] = "killaura", - ["AntiKnockback"] = "antiknockback", - ["FastHit"] = "spamclick", - }, - ["Movement"] = { - ["Freecam"] = "freecam", - ["PrivBypass"] = "priv_bypass", - ["AutoForward"] = "continuous_forward", - ["PitchMove"] = "pitch_move", - ["AutoJump"] = "autojump", - ["Jesus"] = "jesus", - ["NoSlow"] = "no_slow", - - }, - ["Render"] = { - ["Xray"] = "xray", - ["Fullbright"] = "fullbright", - ["HUDBypass"] = "hud_flags_bypass", - ["NoHurtCam"] = "no_hurt_cam", - ["BrightNight"] = "no_night", - ["Coords"] = "coords", - ["Tracers"] = "enable_tracers", - ["ESP"] = "enable_esp", - ["AttachmentFloat"] = "float_above_parent", - }, - ["World"] = { - ["FastDig"] = "fastdig", - ["FastPlace"] = "fastplace", - ["AutoDig"] = "autodig", - ["AutoPlace"] = "autoplace", - ["InstantBreak"] = "instant_break", - ["IncreasedRange"] = "increase_tool_range", - ["UnlimitedRange"] = "increase_tool_range_plus", - ["PointLiquids"] = "point_liquids", - }, - ["Exploit"] = { - ["EntitySpeed"] = "entity_speed", - ["ParticleExploit"] = "log_particles", - }, - ["Player"] = { - ["NoFallDamage"] = "prevent_natural_damage", - ["NoForceRotate"] = "no_force_rotate", - }, -} - -function core.register_cheat(cheatname, category, func) - core.cheats[category] = core.cheats[category] or {} - core.cheats[category][cheatname] = func -end |