"The AI handles judgment. The script handles consistency."
CSMS is a mechanics and character system for AI Dungeon. Ordinances, dice, inventory, combat, and progression — all in one script.
For full documentation, guides, and examples — visit the website.
- Copy library.js contents into your scenario's Library tab
- Add to Input tab:
CSMS("input");
const modifier = (text) => { return { text } };
modifier(text)- Add to Context tab:
CSMS("context");
const modifier = (text) => { return { text, stop } };
modifier(text)- Add to Output tab:
CSMS("output");
const modifier = (text) => { return { text } };
modifier(text)CC0-1.0 — free to use, modify, and share. Credit appreciated but not required.
