DOL-Ckit

From Pikmin Technical Knowledge Base
Revision as of 17:13, 8 March 2024 by GameCubing8619 (talk | contribs) (Created page with "__TOC__ ==The Project.py== So in ckit it allows you to hook into addresses and append c code to the dol of a game whice is done though building c sources and hooking branchli...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Project.py

So in ckit it allows you to hook into addresses and append c code to the dol of a game whice is done though building c sources and hooking branchlinks through the project.py. like for example lets say you want to hook the file main.c you would have to hook it like this

hooking a file
p.add_c_file("main.c")
p.hook_branchlink(0x8041a4b0, "widescreen1")
p.hook_branchlink(0x803bb8a8, "widescreen2")
p.hook_branchlink(0x8041ae14, "widescreen3")
p.hook_branchlink(0x8043502c, "widescreen4")


Credits: GameCubing8619