ate47 / atian-cod-tools

My set of tools

Home Page:https://ate47.github.io/atian-cod-tools/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Atian Call of Duty Tools

My set of tools for Call of Duty.

Supported games

  • Call of Duty: Black Ops 4 (T8)

Dependencies

This tool is using and providing

Downloads

You can download the latest release here:

Tools

Mods

Mods implemented in my tool, run acts mod for the list.

  • acts mod t8cee - enable EEs in Custom mutations, offline or casual (Black Ops 4).
  • acts mod t8dll - Inject bo4 tool dll (Project BO4 or equivalent)

Dump tools

Tools to dump from the game memory, most of these files can be seen in the t8-atian-menu repo in my notes.

  • dump api functions acts dfunc [output=func.csv] (need the game started)
  • dump cli functions acts dcfunc [output=cfunc.csv] (need the game started)
  • dump linked events acts devents [output=events.csv] (need the game started)
  • dump pooled scripts acts dps [output=pool.csv] (need the game started)
  • dump linked scripts acts dls [output=linked.csv] (need the game started)
  • dump linked/pooled scripts on disk acts wps [output=scriptparsetree] (need the game started)

Decompiler/Disassembler

Tools to decompile or disassemble the GSC scripts, a bo4 script decompilation is available in the bo4-source repo.

  • gsc disassembler, made in 3 days with a lot of alcohol so don't use it. acts gscinfo -a -o "output" [input=scriptparsetree]
  • gsc decompiler, same as the disassembler, but 10 days after, not any better. acts gscinfo -g -o "output" [input=scriptparsetree]

GSC Development

Tools to help with the GSC development.

  • gsc vm debugger, dump the function stack when the vm has a crash, acts dbg
    • can dump the var stack -s local var -v
    • can look inside structures with the depth for array -A [depth] and structs -S [depth] (need the game started)

Lookup

To have a lookup over the extracted hashes, you can use a file named strings.txt when using the process, it will be loaded automatically, one string per line.

Hash resolver tool

The hash resolver tool is to test hash64 values, to use it, you need to create a config file, one config per line.

configs:

  • hashes [file] - open a file with hashes, one hash per line, example:
  • add [hash] - add a hash in the list, example: add 138f012bb30beb55
  • dict [list] - set the dictionary, example: dict abcdefghijklmnopqrstuvwxyz0123456789_/
  • pattern [pattern] - set the pattern, a ??? should be put to tell where to put the search, example: pattern scripts/zm_common/zm_???.gsc
  • output [file] - set the output file, example: output brute.txt

Credits

  • Serious's t8-compiler for some opcodes, it fasted up the process of understanding the internal game functions. Also for the childthread operator syntax.

About

My set of tools

https://ate47.github.io/atian-cod-tools/

License:Other


Languages

Language:C++ 97.1%Language:GSC 1.9%Language:Lua 0.5%Language:ANTLR 0.2%Language:PowerShell 0.2%