<aside> 🚨

Special Notes

If your console says “unknown command” or something similar, and your desired command/event is not working/playing, you’re missing your console commands folder. Reinstall SMAPI to fix this.

</aside>

<aside> ‼️

To Use Console Commands:

  1. Make sure you’re on a save in which you’d like to watch the event.
  2. Open the black box/window that pops up when you load in the modded version of Stardew. This is your SMAPI console.
  3. Type your desired console command into the black box.
    1. For all event commands, it will follow the general format of: debug ebi [event key]
    2. For example, if I’d like to watch Sam’s 1.2 heart event, in my SMAPI console I’d type in exactly: debug ebi SamADBreakIn
  4. It will say something along the lines of ‘No Output’; just tab back into the game and it’ll play. </aside>

<aside> ❓

Finding Console Commands

After Dark

AD packs have event keys in their wiki pages.

<aside> ✂️

Here’s some quick links for you:

</aside>

Other Packs

You can find all event keys within other packs. Typically, event code looks like:

{
   "Action": "EditData",
   "Target": "Data/Events/Farm",
   "When": { "After Dark Events": "All Events, No Jealousy Events" },
   "Entries": {
        "SamADBreakIn/f Sam 250/o Sam/e SamADWetDream/t 2000 2400": "continue/-2000 -2000/Shadow 64 15 0 
        farmer -100 -100 0/pause 500/warp farmer -100 -100/pause 200/skippable/viewport 64 15 true/pause 1000
        /faceDirection Shadow 3/pause 100/faceDirection Shadow 0/pause 100/faceDirection Shadow 1/pause 100
        /faceDirection Shadow 0/pause 200/emote Shadow 32/pause 350
        /speak Shadow \\"{{i18n:AD.Sam.Events.BreakIn.1}}\\"/move Shadow 0 -2 0/warp Shadow -100 -100
        /playSound doorClose/pause 200/globalFade/viewport -1000 -1000/pause 400
        /speak Shadow \\"{{i18n:AD.Sam.Events.BreakIn.2{{GeneralPlayerPronoun}}}}\\"/pause 500
        /speak Shadow \\"{{i18n:AD.Sam.Events.BreakIn.3}}\\"/pause 500/playSound clank/pause 400
        /playSound clank/pause 400/playSound clank/pause 400/playSound clank/pause 1500
        /playSound cameraNoise/pause 1500/end"
    }
}

If you look right under the "Entries":{ line, you’ll see the event key of SamADBreakIn. To use the event key, just follow the directions on the left.

</aside>