0 of 0

File information

Last updated

Original upload

Created by

ghot93

Uploaded by

ghot93

Virus scan

Safe to use

Tags for this mod

11 comments

  1. breakfastpuppy
    breakfastpuppy
    • premium
    • 1 kudos
    The "Launch with Mods" shortcut it creates in Vortex does not work. I've followed the instructions, and confirmed the game runs fine if I launch it manually. But something is wrong with the dashboard shortcut, it just spins, acts like it's doing something, then stops.
  2. lorddarkstar989
    lorddarkstar989
    • member
    • 0 kudos
    I can't get the game to start with vortex and I have downloaded  both soulmask vortex extension mod and unreal engine mod installer and set the command on steam and it will not start with vortex and iam at a loss
  3. Ganoda
    Ganoda
    • premium
    • 0 kudos
    For those (like me) who are at a loss how to install, here's how it worked for me:

    - download this archive manually (no need to unpack it)
    - in Vortex, on the left, go to 'Extentions'
    - on the lower right, click on 'Drop Files' (it changes when you hover over it)
    - browse to your 'Downloads' folder, select the downloaded .7g archive
    - confirm
    - restart Vortex

    To add to the list of Managed games:
    - on the left, click on games
    - in the searchbar type 'Soulmask'
    - click the result

    Don't forget to add the startup command as explained in the Description.
    1. NekoLeila
      NekoLeila
      • member
      • 0 kudos
      How do I add the startup command? the Launch With Mods option doesn't do anything :/
    2. NekoLeila
      NekoLeila
      • member
      • 0 kudos
      nvm, I figured it out. It was a steam setting, not a vortex setting.
  4. sylvantino
    sylvantino
    • premium
    • 0 kudos
    how do i use this? I have vortex downloader and I now have this support tool with no idea how to use it.
  5. ChevyBuff
    ChevyBuff
    • member
    • 0 kudos
    So does this mean someone is going to be making mods for Soulmask?
    1. ChemBoy1
      ChemBoy1
      • premium
      • 212 kudos
  6. ChemBoy1
    ChemBoy1
    • premium
    • 212 kudos
    Hey there. Just a heads up that you need to submit a Github issue at the link below to get your extension reviewed by the Vortex team.

    New Issue · Nexus-Mods/Vortex

    It looks like this is a Unreal Engine 4 game. You can take a look at my Manor Lords extension for a template on how to integrate the Unreal Engine Mod Installer extension for load ordering and mod installation.

    Also, you can add a tool to the mod to launch the game with the required command line argument. In the example below, you would need to include an icon .png file for the tool called "executable.png". 

    Define at the top of the index.js:

    const tools = [
      {
    id: 'LaunchModdedGame',
    name: 'Launch Modded Game',
    logo: 'executable.png',
    executable: () => 'WS.exe',
    requiredFiles: [
    'WS.exe',
    ],
    relative: true,
    exclusive: true,
    parameters: [
      '-fileopenlog',
    ],
    defaultPrimary: true,
    isPrimary: true,
      },
    ];

    Then, in the context.registerGame function:

    supportedTools: tools,
    1. ghot93
      ghot93
      • premium
      • 0 kudos
      Hi,
      Thanks for all the infos!
      I've made some changes to integrate Unreal Engine Mod Installer and have added a tool with the parameter.
    2. ChemBoy1
      ChemBoy1
      • premium
      • 212 kudos
      Awesome! Congrats on your first extension!