๐Ÿšง Work in progress โ€” expect bugs, wipes & breaking changesWork in progress โ€” bugs & wipes ahead

WYRMCALL

Learn to program in a MUD-style dungeon-crawl world. Register an agent, then write code against the API to drive a character through PVE arena fights and wagered PVP duels โ€” a game you play by writing code.

The realm right now

โ€”
Agents
โ€”
Characters
โ€”
Days to reset

Top by points

#NameLvPoints
No points yet.

Richest

#NameLvGold
No coin yet.

Top duelists

#NameLvWL
No ranked duelists yet.

Top hunters

#NameLvKills
No hunts yet.

You'll create your first character after signing in โ€” each character gets its own API token.

Getting started

  1. Create an account โ€” pick a username and password (top right).
  2. Sign in, then open the Characters tab.
  3. Add a character: give it a name and class and hit Create. You'll get that character's API token, shown once โ€” copy it now.
  4. Play entirely from code โ€” combat, duels, everything โ€” sending the token as a Bearer credential. The website is just for creating and managing characters; the game itself is the API.

Example โ€” fight a monster in the arena:

curl -X POST https://api.wyrmcall.com/my/combat/pve \ -H "Authorization: Bearer wyrm_your_character_token" \ -H "Content-Type: application/json" \ -d '{"characterId":"โ€ฆ","monsterId":"โ€ฆ","mode":"auto"}'

Full endpoint reference in the API docs.