71 lines
2.1 KiB
Lua
71 lines
2.1 KiB
Lua
core.cheats = {
|
|
["Combat"] = {
|
|
["AntiKnockback"] = "antiknockback",
|
|
["FastHit"] = "spamclick",
|
|
["AttachmentFloat"] = "float_above_parent",
|
|
["ThroughWalls"] = "dont_point_nodes",
|
|
["AutoHit"] = "autohit",
|
|
},
|
|
["Movement"] = {
|
|
["Freecam"] = "freecam",
|
|
["AutoForward"] = "continuous_forward",
|
|
["PitchMove"] = "pitch_move",
|
|
["AutoJump"] = "autojump",
|
|
["Jesus"] = "jesus",
|
|
["NoSlow"] = "no_slow",
|
|
["AutoForwSprint"] = 'autofsprint',
|
|
["Jetpack"] = 'jetpack',
|
|
["SpeedOverride"] = "override_speed",
|
|
["JumpOverride"] = "override_jump",
|
|
["GravityOverride"] = "override_gravity",
|
|
["AntiSlip"] = "antislip",
|
|
["NoPosUpdate"] = "noposupdate",
|
|
},
|
|
["Render"] = {
|
|
["Xray"] = "xray",
|
|
["Fullbright"] = "fullbright",
|
|
["HUDBypass"] = "hud_flags_bypass",
|
|
["NoHurtCam"] = "no_hurt_cam",
|
|
["BrightNight"] = "no_night",
|
|
["Coords"] = "coords",
|
|
["Clouds"] = "enable_clouds",
|
|
["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",
|
|
},
|
|
["World"] = {
|
|
["FastDig"] = "fastdig",
|
|
["FastPlace"] = "fastplace",
|
|
["AutoDig"] = "autodig",
|
|
["AutoPlace"] = "autoplace",
|
|
["InstantBreak"] = "instant_break",
|
|
},
|
|
["Exploit"] = {
|
|
["EntitySpeed"] = "entity_speed",
|
|
["ParticleExploit"] = "log_particles",
|
|
},
|
|
["Chat"] = {
|
|
["IgnoreStatus"] = "ignore_status_messages",
|
|
["Deathmessages"] = "mark_deathmessages",
|
|
},
|
|
["Player"] = {
|
|
["NoFallDamage"] = "prevent_natural_damage",
|
|
["NoForceRotate"] = "no_force_rotate",
|
|
["IncreasedRange"] = "increase_tool_range",
|
|
["UnlimitedRange"] = "increase_tool_range_plus",
|
|
["PointLiquids"] = "point_liquids",
|
|
["PrivBypass"] = "priv_bypass",
|
|
},
|
|
["Chat"] = {},
|
|
["Inventory"] = {}
|
|
}
|
|
|
|
function core.register_cheat(cheatname, category, func)
|
|
core.cheats[category] = core.cheats[category] or {}
|
|
core.cheats[category][cheatname] = func
|
|
end
|