Web-based GUI for interacting with Cosmic/HeavenMS MapleStory v83 server.
- Item
- Search by name or ID.
- List droppers with dropping chances.
- Provide a link to Hidden Street for details.
- Monster
- Search by name or ID.
- List drops with dropping chances.
- Provide a link to Hidden Street for details.
-
Run the database of Cosmic or HeavenMS.
// Under the directory of Cosmic/HeavenMS. docker compose up -d db
-
Create
.envfilemake .env
-
Edit settings in
.envfile if necessary. -
(optional) Place item and monster images named by IDs under the frontend/public/images directory like
images ├── items │ ├── .gitignore │ ├── 1000000.png │ ├── ... │ └── 4310000.png └── monsters ├── .gitignore ├── 100100.png ├── ... ├── 9999999.png └── default.pngThe images can be extracted from Item.wz and Mob.wz using Harepacker.
-
Build images.
make build
-
Start Maprobe.
make up
-
Access Maprobe at localhost:8080.
- The listening port might not be
8080if you have changed theFRONTEND_PORTsetting in.envfile.
- The listening port might not be
-
You can stop Maprobe by
make down
