Skip to content
This repository was archived by the owner on May 27, 2026. It is now read-only.

3. Quick Start

Prolix OCs edited this page Aug 14, 2025 · 1 revision

Get up and running with Silly Sim Tracker in minutes!

Creating Your First Tracker Card

1. Write a Message with Tracking Data

In any chat, add a message with a sim codeblock:

{
  "worldData": {
    "current_date": "2025-08-10",
    "current_time": "14:30"
  },
  "characters": [
    {
      "name": "Alice",
      "hp": 75,
      "mp": 50,
      "level": 5
    }
  ]
}

2. Send the Message

When you send the message, a tracker card will automatically appear below it!

3. See It in Action

The card will display:

  • Character name (Alice)
  • Current date and time
  • HP: 75
  • MP: 50
  • Level: 5

Customizing Your Cards

Change the Card Color

In your JSON data, add a background color:

{
  "worldData": {
    "current_date": "2025-08-10",
    "current_time": "14:30"
  },
  "characters": [
    {
      "name": "Alice",
      "hp": 75,
      "mp": 50,
      "bg": "#ff6b6b"  // Coral red color
    }
  ]
}

Try the Built-in Templates

  1. Open Silly Sim Tracker settings
  2. Try different template options
  3. See how your cards change appearance

Next Steps

Clone this wiki locally