Install
$ agentstack add skill-hlnd2t-cs2-vibesignatures-find-ccsbotmanager-addbot-botnavignore ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
CCSBotManagerAddBotBotNavIgnore Patch Workflow
Overview
Locate the g_pNavMesh null-check at the beginning of CCSBotManager_AddBot and generate a patch that converts the conditional jz (jump-if-zero) into an unconditional jmp past the early-return, so bots can be added even when no navigation mesh is loaded.
The target code pattern in pseudocode:
if ( !g_pNavMesh || !*(_BYTE *)(g_pNavMesh + 264) ) // jmp to loc after the nav check
The jz is a near conditional jump (0F 84 rel32 — 6 bytes). Patching it to jmp rel32 (E9 90 — 5 bytes + 1 NOP) makes it always jump past both the null-pointer check and the g_pNavMesh + 264 byte check, landing at the code that continues bot creation.
The jump target should be the loc_ label that is reached after both nav mesh checks pass (the code right after the second jz that also targets the same early-return).
Prerequisites
CCSBotManager_AddBotmust already be identified. Use SKILL/get-func-from-yamlwithfunc_name=CCSBotManager_AddBotto load its address. If YAML does not exist, run SKILL/find-CCSBotManager_AddBot-AND-g_pCSBotManager-AND-g_pNavMeshfirst.
Location Steps
1. Get CCSBotManager_AddBot Function Address
ALWAYS Use SKILL /get-func-from-yaml with func_name=CCSBotManager_AddBot.
If the skill returns an error, stop and report to user.
2. Decompile and Locate the Nav Mesh Check
Decompile the function:
mcp__ida-pro-mcp__decompile(addr="")
In the decompiled output, search for the nav mesh check pattern at the very beginning of the function body. The key indicators are:
if ( !g_pNavMesh || !*(_BYTE *)(g_pNavMesh + 264) )or equivalent- Immediately followed by
return 0;
Note the address annotation on the if-statement line.
3. Disassemble the Function Prologue
Disassemble the first ~30 instructions of the function to find the exact test rax, rax + jz pair:
mcp__ida-pro-mcp__disasm(addr="", max_instructions=30)
Look for this assembly pattern:
mov rax, cs:g_pNavMesh
...
test rax, rax
jz loc_XXXXXXXX ; early return if g_pNavMesh == NULL
cmp byte ptr [rax+108h], 0
jz loc_XXXXXXXX ; early return if nav mesh not loaded
Record:
- patch_va: Address of the first
jzinstruction (thetest rax, rax/jzpair) - jump_target: The address of the code right AFTER the second
jz— this is where execution continues when both checks pass. This is the label we want to jump to unconditionally.
4. Determine Patch Bytes
Read the original bytes of the jz instruction:
mcp__ida-pro-mcp__get_bytes(regions={"addr": "", "size": 6})
The jz is a near conditional jump: 0F 84 rel32 (6 bytes).
Compute the new unconditional jump to the target (the code after both nav checks):
new_rel32 = jump_target - (patch_va + 5)patch_bytes=E9 90
Where ` is the 4-byte little-endian encoding of new_rel32`.
5. Generate Patch Signature
ALWAYS Use SKILL /generate-signature-for-patch to generate and validate the signature.
Required context for the skill:
func_name:CCSBotManager_AddBotfunc_va: From step 1patch_va: Address of thejzinstruction from step 3original_instruction: e.g.,jz loc_1802A1485patched_instruction: e.g.,jmp loc_1802A104F+nopdescription:Remove g_pNavMesh null-check in CCSBotManager_AddBot - patch conditional jz to unconditional jmp to skip nav mesh validation
6. Write YAML Output
ALWAYS Use SKILL /write-patch-as-yaml to persist the results.
Required parameters:
patch_name:CCSBotManager_AddBot_BotNavIgnorepatch_sig: The validated signature from step 5patch_bytes: The computed patch bytes from step 4patch_sig_disp: From step 5 result (omit if 0)
Output YAML Files
CCSBotManager_AddBot_BotNavIgnore.windows.yamlCCSBotManager_AddBot_BotNavIgnore.linux.yaml
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: HLND2T
- Source: HLND2T/CS2_VibeSignatures
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.