Jump to content

Pickysaurus

Admin
  • Posts

    16507
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Pickysaurus

  1. until
    Looking to get into advanced modding but aren't sure how to dig into the data? @kinggath(Sim Settlements) interviews @ElminsterAU the lead developer of xEdit and dataminer @Eckserah on the most popular modding tools and give you a better understanding of the mechanics of Bethesda games. This event is part of C3: Community Creations Con C3 is a virtual conference for charity created by a community collaborative of like-minded and passionate modders dedicated to expanding the worlds and universes of Fallout, Elder Scrolls and Starfield. From Construction Set to Creation Kit in all its forms, we bring together gamers and creators, streamers and modders to celebrate some creations of our own and help others create theirs. During this multi-day Twitch-based event we bring together notable names, teams and some very special guests for a host of unique content to support the charitable cause Make A Wish International: Modder/Mod Team Showcases – a peek behind the curtain at some of some of the most anticipated mods in development as well as small-scale mod projects covering a wide array of categories, from quests to cosmetics. Virtual Learning Classes – Keynote speakers break down the many forms of creation tools available to allow you to reinvent the game you love most, in the universe you love most. Planned and unplanned peer networking – encouraging collaboration across projects, bringing modders everywhere together to learn, to inspire and celebrate our work. Designed to be inclusive, diverse and supportive, C3 is open to all and welcoming to all. Whether you are new to modding, a seasoned pro, or just a passionate downloader who loves our work, we invite you to join us for this community networking event.
  2. I'm not familiar with DSR, sorry. Maybe you can ask on the mod page?
  3. This question is covered here: (See the red text)
  4. Thanks, although that doesn't help beyond knowing which names are available. I assume it's not in the plugins but something in the EXE itself.
  5. That was actually why I didn't get Premium sooner. When I lived with my parents they had awful internet (~1.5MB/s max) and somehow my brother's PC always got the lion's share of the bandwidth so I could barely download stuff as a free user. Once I moved out I got fibreoptic and haven't looked back - even if they fibre providers keep hiking their prices.
  6. Collections are only possible if a game is supported by Vortex. None of the ME games are supported.
  7. As you've fixed it and didn't take a screenshot I can't tell you what happened. Most likely you created an invalid BBCode tag hierarchy. A bit more about this is covered in our recent news post: https://www.nexusmods.com/news/14897
  8. This implies that you (or something on your system) deleted or moved the Vortex data under %appdata%\Vortex - this is Vortex's "brain" and when removed it will forget everything you've input. This cannot possibly happen by using the application alone.
  9. There isn't a way to do what you're asking - that's part of the reason why Collections exist. Some of the mods you previously used may have been archived or deleted, which would prevent you from getting back to the same state anyway.
  10. That icon exclusively appears when Vortex can't "see" any active internet connection on your PC. This means that something on your PC (probably AVG) is preventing Vortex from accessing the internet at all.
  11. Try a browser other than Firefox. If that works, then see the documentation: https://modding.wiki/en/vortex/users/download-from-nexusmods#i-have-the-option-enabled-in-vortex-but-downloads-still-go-to-the-wrong-appdont-start
  12. You are being limited by Cloudflare, there are several other threads on this. This one includes some things to try:
  13. You just have to click on them in the games list. The UI has changed slightly, but Vortex runs the detection for the game when you click on it. Due to a growing number of game extensions being external to the main app, the "scan" feature no longer detected all your games as the logic to find certain games required you to install the extension first. The new method is consistent regardless of having the correct extension.
  14. There's a button to enter the code manually. If it's not working through the normally process that's almost certainly a browser or addons issue
  15. Vortex doesn't currently auto detect the Xbox game pass version of Bannerlord @Aragasis working on an update which includes this feature
  16. You just need to create a page for it. There is already an extension for Ready or Not so it may be worth checking if it works? https://www.nexusmods.com/site/mods/342 Once you've set it up on a page it'll be checked over by @insomniousor @Nagev
  17. Yes, it's rare for a mod included in collections to be removed by a moderator, but it does happen sometimes. At present there isn't a way to know this easily, but you can look at the list of mods and see if any of them have the "- DELETED" suffix added.
  18. If you're trying to copy only the PAK files and disregard any other files or folder structures you could try using "Stop Patterns". This means you'd remove the following parts: function installContent(files) { // The .pak file is expected to always be positioned in the mods directory we're going to disregard anything placed outside the root. const modFile = files.find(file => path.extname(file).toLowerCase() === MOD_FILE_EXT); const idx = modFile.indexOf(path.basename(modFile)); const rootPath = path.dirname(modFile); // Remove directories and anything that isn't in the rootPath. const filtered = files.filter(file => ((file.indexOf(rootPath) !== -1) && (!file.endsWith(path.sep)))); const instructions = filtered.map(file => { return { type: 'copy', source: file, destination: path.join(file.substr(idx)), }; }); return Promise.resolve({ instructions }); } function testSupportedContent(files, gameId) { // Make sure we're able to support this mod. let supported = (gameId === GAME_ID) && (files.find(file => path.extname(file).toLowerCase() === MOD_FILE_EXT)!== undefined); return Promise.resolve({ supported, requiredFiles: [], }); } context.registerInstaller('readyornotkewp', 25, testSupportedContent, installContent); The inside the "details" part of your game registration you'd add. stopPatterns: ['[^|/|\\]*.pak$'],
  19. Thanks for the feedback. We've been able to replicate the changes not taking effect for an unusually log period and are working on a fix for that. Hopefully, that will fix your issue. If not can you provide an example of the tag you blocked and a mod that still appears in your search so I can take that info back to the team?
  20. You can see all the non-game forums here: https://forums.nexusmods.com/
  21. You can start the game via Steam once Vortex has installed the mods if I recall. You can ask for further advice here: https://www.nexusmods.com/site/mods/196
  22. Read the message you've screenshotted. You are starting the game with an outdated version of Skyrim Script Extender. Update it in order to start the game.
  23. The most popular adult collections are created by @canliberk
×
×
  • Create New...