Modding Tools
0 of 0

File information

Last updated

Original upload

Created by

Pickysaurus

Uploaded by

Pickysaurus

Virus scan

Safe to use

Tags for this mod

Mod articles

  • Source code

    const { util } = require('vortex-api');
    const path = require('path');

    const GAME_ID = 'dontstarvetogether';
    const STEAMAPP_ID = '322330';

    // const MOD_EXT = 'modinfo.lua';


    function findGame() {
        return util.GameStoreHelper.findByAppId()
            .then(game => game.gamePath);
    }


    function main(context) {
        context.registerGame({
            id: GAME_ID,
            name: 'Don\'t Starve Together',
            mergeMods: true,
            queryPath: findGame,
            queryModPath: () => 'mods',
            logo: 'gameart.jpg',
            executable: () =>...