{"id":19282321,"url":"https://github.com/mrmkroll/mkw-codes-python","last_synced_at":"2026-06-21T01:32:49.169Z","repository":{"id":187023376,"uuid":"465332535","full_name":"Mrmkroll/mkw-codes-python","owner":"Mrmkroll","description":"PythonとDMEを使用したWiiソフト用チートプログラムのテンプレート","archived":false,"fork":false,"pushed_at":"2022-03-02T14:10:40.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-21T01:32:46.155Z","etag":null,"topics":["dolphin","dolphin-emu","mkw","nintendo-hacking","wii"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mrmkroll.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-02T14:10:04.000Z","updated_at":"2022-05-24T16:47:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"fde010f0-25a4-4b51-8b71-81e60bc54e2f","html_url":"https://github.com/Mrmkroll/mkw-codes-python","commit_stats":null,"previous_names":["mrmkroll/mkw-codes-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mrmkroll/mkw-codes-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mrmkroll%2Fmkw-codes-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mrmkroll%2Fmkw-codes-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mrmkroll%2Fmkw-codes-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mrmkroll%2Fmkw-codes-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mrmkroll","download_url":"https://codeload.github.com/Mrmkroll/mkw-codes-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mrmkroll%2Fmkw-codes-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34591166,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dolphin","dolphin-emu","mkw","nintendo-hacking","wii"],"created_at":"2024-11-09T21:26:25.802Z","updated_at":"2026-06-21T01:32:49.153Z","avatar_url":"https://github.com/Mrmkroll.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch2 align=\"center\"\u003eMario Kart Wii Codes for Python (Dolphin only)\u003c/h2\u003e\n\n## 〈Overview〉\nPythonを使ったMKWのチートプログラムを作るためのテンプレートと、その簡単な例のセットです。\u003cbr\u003e\n自動でゲーム・リージョンの判別を行ってくれるため、アドレスさえ追加すれば、リージョンごとに分岐を作る必要はありません。\u003cbr\u003e\n\u003cbr\u003e\n※プログラム自体はPythonだけで作れますが、値の読み書きにはPowerPCの知識が必要になります。\u003cbr\u003e\n※Pythonプログラムであるため、実機での使用はできません。\n\n## 〈Download〉\nCodeと書かれた緑のボタンから、Download ZIPを押してZIPファイルをダウンロードするか、\u003cbr\u003e\n以下のコマンドを実行してリポジトリをクローンしてください。\n```bash\ngit clone https://github.com/Mrmkroll/mkw-codes-python.git\n```\n\n## 〈Requirements〉\n- \u003ca href=\"https://www.python.jp/\"\u003ePython 3.X\u003c/a\u003e\n- \u003ca href=\"https://github.com/dolphin-emu/dolphin\"\u003eDolphine Emulator\u003c/a\u003e\n- \u003ca href=\"https://github.com/aldelaro5/Dolphin-memory-engine\"\u003eDolphin Memory Engine\u003c/a\u003e\n- \u003ca href=\"https://github.com/henriquegemignani/py-dolphin-memory-engine\"\u003ePython Dolphin Memory Engine\u003c/a\u003e\n- PowerPC, Pythonの知識\n\n## 〈Usage〉\n1. DolphinでMKWを起動\n2. DMEを起動、HookされていなければHookをクリック\n3. 使用したいPythonプログラムを起動\n\n\u003cbr\u003e\nプログラムの初めには必ず以下の内容を書き込んでください。\n\n```python\nfrom lib import fun as fn\nfrom lib import ppc\n\nfn.hook()\n```\n\n### ppc.py\nPowerPCにあるニーモニックを模した関数が定義されており、既存のニーモニックと同様の感覚で操作することができます。\u003cbr\u003e\n### fun.py\n既存のPowerPCにはないオリジナルのニーモニック風関数と、いくつかの補助的関数が定義されています。\u003cbr\u003e\n\u003cbr\u003e\n*※fn.hook()内のプログラムとsymbolフォルダ内のアドレスを書き換えることで、MKW以外のWiiソフト用プログラムを作ることができます。*\n\n## 〈Developer〉\n- Mrmk\n- sow","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmkroll%2Fmkw-codes-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmkroll%2Fmkw-codes-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmkroll%2Fmkw-codes-python/lists"}