Skip to content

Browser console automation scripts for Duet Night Abyss game. Auto-fill surveys, unlock divination roles, and more. Educational JavaScript/TypeScript tools.

License

Notifications You must be signed in to change notification settings

getthevoid/dna-automation

Repository files navigation

DNA Automation

Browser console scripts for automating Duet Night Abyss tasks. Copy, paste, run.

Use at your own risk. These scripts are provided as-is for educational purposes.

Scripts

Survey Autofill

File: scripts/survey/autofill.js

Automatically fills out survey forms on wjx.cn with random selections.

How to use:

  1. Go to a survey on wjx.cn

  2. Open console (F12)

  3. Copy and paste this code, then press Enter:

    fetch('https://getthevoid.github.io/dna-automation/scripts/survey/autofill.js')
      .then(r => r.text())
      .then(eval);

Divination Bot

File: scripts/events/divination.js

Unlocks all 17 character roles in the divination event on dna-panstudio.com.

Event URL: https://duetnightabyss.dna-panstudio.com/divination/

How to use:

  1. Go to the divination event page (link above)

  2. Open console (F12)

  3. Copy and paste this code, then press Enter:

    fetch('https://getthevoid.github.io/dna-automation/scripts/events/divination.js')
      .then(r => r.text())
      .then(eval);
  4. Auto-starts after 2 seconds

  5. Stop with globalThis.divinationBot.stop()

Roles unlocked: Berenica, Margie, Randy, Outsider, Daphne, Lady Nifle, Rebecca, Lynn, Sibylle, Tabethe, Lisbell, Rhythm, Hellfire, Truffle and Filbert, Yale and Oliver, Phantasio, Psyche

Metadata

const metadata = {
  name: 'dna-automation',
  version: '1.0.0',
  author: 'pyyupsk',
  license: 'MIT',
  repository: 'github.com/getthevoid/dna-automation'
};

License

MIT License - Copyright (c) 2025 pyyupsk

About

Browser console automation scripts for Duet Night Abyss game. Auto-fill surveys, unlock divination roles, and more. Educational JavaScript/TypeScript tools.

Topics

Resources

License

Stars

Watchers

Forks