aboutsummaryrefslogtreecommitdiff
path: root/builtin/client/cheats.lua
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-10-04 10:50:07 +0200
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-10-04 10:50:07 +0200
commitb9f8f0a232d9d00a323084e0e4807b3e3469720d (patch)
tree564679fd09da5cb4ef7da82dde5b7d8d5c2d7aee /builtin/client/cheats.lua
parentaf085acbd32707576ff9e67c3b267ad6cf267288 (diff)
downloaddragonfireclient-b9f8f0a232d9d00a323084e0e4807b3e3469720d.tar.xz
The Robot Update
Diffstat (limited to 'builtin/client/cheats.lua')
-rw-r--r--builtin/client/cheats.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/builtin/client/cheats.lua b/builtin/client/cheats.lua
index 839021ad2..a6aa13dc7 100644
--- a/builtin/client/cheats.lua
+++ b/builtin/client/cheats.lua
@@ -2,10 +2,9 @@ core.cheats = {
["Combat"] = {
["Killaura"] = "killaura",
["AntiKnockback"] = "antiknockback",
- ["NoFallDamage"] = "prevent_natural_damage",
+ ["FastHit"] = "spamclick",
},
["Movement"] = {
- ["GodMode"] = "entity_speed",
["Freecam"] = "freecam",
["PrivBypass"] = "priv_bypass",
["AutoForward"] = "continuous_forward",
@@ -20,7 +19,6 @@ core.cheats = {
["NoHurtCam"] = "no_hurt_cam",
["BrightNight"] = "no_night",
["Coords"] = "coords",
- ["Clouds"] = "enable_clouds",
},
["World"] = {
["FastDig"] = "fastdig",
@@ -32,6 +30,13 @@ core.cheats = {
["UnlimitedRange"] = "increase_tool_range_plus",
["PointLiquids"] = "point_liquids",
},
+ ["Exploit"] = {
+ ["EntitySpeed"] = "entity_speed",
+ ["ParticleExploit"] = "log_particles",
+ },
+ ["Player"] = {
+ ["NoFallDamage"] = "prevent_natural_damage",
+ },
}
function core.register_cheat(cheatname, category, func)