{"id":20371964,"url":"https://github.com/andaroth/mmomz-pkd-abs","last_synced_at":"2025-07-26T20:38:36.001Z","repository":{"id":37536459,"uuid":"502038304","full_name":"Andaroth/MMOMZ-PKD-ABS","owner":"Andaroth","description":"Backend support for real-time Action Battle System (MMORPG Maker MZ)","archived":false,"fork":false,"pushed_at":"2023-12-06T21:19:16.000Z","size":94,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T11:47:01.552Z","etag":null,"topics":["mmorpg","mmorpg-engine"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Andaroth.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-06-10T12:39:23.000Z","updated_at":"2024-12-06T01:44:47.000Z","dependencies_parsed_at":"2025-01-15T05:36:48.335Z","dependency_job_id":"491508e8-68bf-4b68-9c66-e5c942234b63","html_url":"https://github.com/Andaroth/MMOMZ-PKD-ABS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Andaroth/MMOMZ-PKD-ABS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andaroth%2FMMOMZ-PKD-ABS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andaroth%2FMMOMZ-PKD-ABS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andaroth%2FMMOMZ-PKD-ABS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andaroth%2FMMOMZ-PKD-ABS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andaroth","download_url":"https://codeload.github.com/Andaroth/MMOMZ-PKD-ABS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andaroth%2FMMOMZ-PKD-ABS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267229171,"owners_count":24056382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"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":["mmorpg","mmorpg-engine"],"created_at":"2024-11-15T01:10:52.153Z","updated_at":"2025-07-26T20:38:35.970Z","avatar_url":"https://github.com/Andaroth.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MMOMZ-PKD-ABS (WIP)\nBackend support for real-time Action Battle System (MMORPG Maker MZ)\n\nPlease consider contributing to this project by submitting your pull requests. \n\n**Join us on Discord : https://discord.gg/GVqyAwp**\n\n## Important\nThis code is currently in testing on [EtheRPG Online/Naire Online](https://etherpg.online/) and is still under development. \n\n:warning: You Have to support PKD patreon (see below) in order to access to the RPG Maker `Alpha ABSZ` plugin \n\u003e I work with the v0.3 of the PKD plugin\n \nAn official RPG Maker MZ licence is also required. \n\n\u003e Community members said that the `MZ core v1.2` is compatible but the *core v1.5 is not*. \n\n## Requirements\n1. [MMORPG Maker MZ](https://github.com/Andaroth/MMORPGMaker-MZ) code from the `master` branch\n2. The whole ABSZ engine \u0026 requirements from [Phoenix Kage Desu's Boosty](https://boosty.to/kagedesu)\n3. The `mathjs` Node module\n\n## Installation\n1. Download `Alpha ABSZ` plugin from Phoenix Kage Desu's patreon and install it in your project\n\n2. In a terminal, in your project's `server` folder, run this command: `npm install mathjs`\n\n3. Copy the files from our `MMOMZ-PKD-ABS/server/core` to your MMORPG Maker MZ project `server/core` folder, override the old ones\n\n4. Edit your MMORPG Maker MZ's `mmo.js` find this line: `gameworld: require(\"./core/gameworld\")` and replace it with: \n```js\n    gameworld: require(\"./core/gameworld\"),\n    wabs: require(\"./core/wabs\")\n```\n\n5. In the same `mmo.js` file, find and replace `MMO_Core.gameworld.initialize();` with: \n```js\nMMO_Core[\"gameworld\"].initialize(() =\u003e MMO_Core[\"wabs\"].initialize());\n```\n\n6. Edit the `Alpha ABSZ` plugin file and add this code after the `//TODO: perform skill` comment: \n```js\nWABS_Sockets.emitAction({ skillId, target: {} });\n```\n\n\u003cimg src=\"https://i.ibb.co/fvHXtZQ/Capture-d-e-cran-2022-06-12-a-13-18-57.png\" width=\"50%\" alt=\"Update the PKD plugin\"/\u003e\n\n\n7. Copy the files from our `MMOMZ-PKD-ABS/js/plugins` to your project `js/plugins` folder (override existing ones) and activate them in the Plugins Manager\n\n8. You can now use MMORPG Maker to create worlds with real-time fights! \n\n## Instructions\n1. A connected GAMEMAP must include `\u003cSync\u003e` inside its note.\n2. To enable real-time fights in a GAMEMAP, you must add `\u003cABS\u003e` in the map's note\n\n\u003cimg src=\"https://i.ibb.co/Jz0LrHk/Capture-d-e-cran-2022-06-12-a-13-13-47.png\" width=\"50%\" alt=\"Configure an online  fight gamemap\"/\u003e\n\n3. A connected NPC must include `\u003cSync\u003e` in a comment in any page\n4. A fight NPC must includes `\u003cABS:ID\u003e` in its note, where `ID` is the enemy ID from your gamedatas\n5. You can use `\u003ccEonStart:ID\u003e` and `\u003ccEonDeath:ID\u003e` in a fight NPC comment in any page, to trigger events (where `ID` is a common event ID in the gamedatas) on fights start/end\n\n\u003cimg src=\"https://i.ibb.co/zNDGWtg/Capture-d-e-cran-2022-06-12-a-13-07-45.png\" width=\"50%\" alt=\"How to create a fight NPV\"/\u003e\n\n*More coming soon. Please read the comments in our code \u0026 the ABS documentation*\n\n---\n\n**Join us on Discord : https://discord.gg/GVqyAwp**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandaroth%2Fmmomz-pkd-abs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandaroth%2Fmmomz-pkd-abs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandaroth%2Fmmomz-pkd-abs/lists"}