isamudiason Posted January 17, 2021 Share Posted January 17, 2021 Hello, I'm trying to set up the support extension for Setting up Final Fantasy XIV Online (steam version) I followed the forum for setting up a new extension but its not appearing. Dose any one know when the extension for FF14 online will be added or can someone look at the below entry to see what I'm missing //Import some assets from Vortex we'll need. const path = require('F:\Steam\steamapps\common\FINAL FANTASY XIV Online\game'); const { fs, log, util } = require('vortex-api'); function main(context) { context.registerGame({ id: GAME_ID, name: 'FINAL FANTASY XIV Online', mergeMods: true, queryPath: findGame, supportedTools: [], queryModPath: () => 'FINALFANTASYXIVOnline/Content/Paks/~mods', logo: 'gameart.jpg', executable: () => 'ffxiv.exe', requiredFiles: [ 'ffxiv.exe', ], setup: prepareForModding, environment: { SteamAPPId: STEAMAPP_ID, }, details: { steamAppId: STEAMAPP_ID, }, }); return true } module.exports = { default: main, }; // Nexus Mods domain for the game. e.g. nexusmods.com/FINAL FANTASY XIV const GAME_ID = 'FINAL FANTASY XIV'; //Steam Application ID, you can get this from https://steamdb.info/apps/ const STEAMAPP_ID = '39210'; Link to comment Share on other sites More sharing options...
Pickysaurus Posted January 18, 2021 Share Posted January 18, 2021 I would suggest putting the GAME_ID and STEAMAPP_ID above the main function. Not sure if that'll make a difference but it's more organised. Did you go to Vortex -> Extensions and look for your extension in that list to see if has any load errors (you may need to double click it)? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.