50 lines
1.2 KiB
Lua
Raw Normal View History

2020-07-28 13:51:32 +02:00
core.cheats = {
["Combat"] = {
["Killaura"] = "killaura",
["AntiKnockback"] = "antiknockback",
2020-10-04 10:50:07 +02:00
["FastHit"] = "spamclick",
2020-07-28 13:51:32 +02:00
},
["Movement"] = {
["Freecam"] = "freecam",
["PrivBypass"] = "priv_bypass",
2020-07-31 19:23:29 +02:00
["AutoForward"] = "continuous_forward",
["PitchMove"] = "pitch_move",
["AutoJump"] = "autojump",
["Jesus"] = "jesus",
["NoSlow"] = "no_slow",
2020-07-28 13:51:32 +02:00
},
["Render"] = {
["Xray"] = "xray",
["Fullbright"] = "fullbright",
["HUDBypass"] = "hud_flags_bypass",
2020-07-31 19:23:29 +02:00
["NoHurtCam"] = "no_hurt_cam",
2020-08-01 11:55:48 +02:00
["BrightNight"] = "no_night",
2020-08-01 14:46:37 +02:00
["Coords"] = "coords",
["Tracers"] = "enable_tracers",
2020-07-28 13:51:32 +02:00
},
["World"] = {
["FastDig"] = "fastdig",
2020-07-31 19:23:29 +02:00
["FastPlace"] = "fastplace",
2020-07-28 13:51:32 +02:00
["AutoDig"] = "autodig",
2020-07-31 19:23:29 +02:00
["AutoPlace"] = "autoplace",
["InstantBreak"] = "instant_break",
2020-07-28 13:51:32 +02:00
["IncreasedRange"] = "increase_tool_range",
["UnlimitedRange"] = "increase_tool_range_plus",
2020-08-14 19:12:14 +02:00
["PointLiquids"] = "point_liquids",
2020-07-28 13:51:32 +02:00
},
2020-10-04 10:50:07 +02:00
["Exploit"] = {
["EntitySpeed"] = "entity_speed",
["ParticleExploit"] = "log_particles",
},
["Player"] = {
["NoFallDamage"] = "prevent_natural_damage",
["NoForceRotate"] = "no_force_rotate",
2020-10-04 10:50:07 +02:00
},
2020-07-28 13:51:32 +02:00
}
2020-08-14 19:12:14 +02:00
function core.register_cheat(cheatname, category, func)
core.cheats[category] = core.cheats[category] or {}
core.cheats[category][cheatname] = func
end