Legacy & Deprecated Items
| Item | Status | Notes |
|---|---|---|
| Legacy command aliases | SupportedLegacy | kickbot_t, killbots_ct, etc. still parsed for compatibility. Not recommended for new configs. |
rbot_waypoint_pw key | SupportedLegacy | Old waypoint password key still accepted. Preferred key is rbwp. |
| Gravity scale 0–800 input | SupportedLegacy | setgravity values >2 are divided by 800 (old scale). setgravity 800 = 1.0 normalized. |
PATHCON_VISIBLE | Legacy enumLegacy | Exists as legacy enum; treated as a normal outgoing path connection in current code. |
rbot_analyze_wall_check_distance | No-opLegacy | In managed config for compatibility, but not read by any runtime logic in v1.1.3. |
rbot_analyze_create_camp_waypoints | No-opLegacy | In managed config for compatibility, but not read by any runtime logic in v1.1.3. |
Help text mentions rbot deletewp | Dead referenceLegacy | This token is not implemented in the active parser. Use rbot wp delete instead. |
rbot debug randgen | Dead codeLegacy | This path is unreachable — nested check compares arg0 to both "debug" and "randgen", which can never both match arg0. |
Compatibility policyLegacy command aliases and CVar names are kept for backward compatibility. If you are writing new configurations, use the current preferred names.
Dead Code Note
The rbot debug randgen code path is unreachable in v1.1.3. The nested condition checks arg0 against "debug" in the outer check and then against "randgen" in the inner check — but both checks compare the same arg0 variable, so the inner condition (arg0 == "randgen") can never be true when the outer condition (arg0 == "debug") has already matched.
Dead code: rbot debug randgenThis is a logic bug in the parser. The
rbot debug randgen subcommand path will never execute in any version of v1.1.3.