Jump to content

TrickyNick

Supporter
  • Posts

    4
  • Joined

  • Last visited

Everything posted by TrickyNick

  1. Was hoping for something easier than that. I have a lo of mods and I don't remember all their names
  2. First, lets get the required info out of the way Which version of Vortex are you using? (e.g. 1.8.0) I am using version 1.9.10 Which game are you modding and which game store did you purchase it from? (e.g. Skyrim SE from GOG) I am moding Skyrim SE/LE from Steam. Which mods are you trying to use? Several, but the one in question is JContainers SE What steps did you take before you encountered the error? Look all over Vortex to see if I can find where to look for dependencies What is the specific error message you received? (Provide a screenshot if possible) JContainers SE is not compatible with the new version of Skyrim. Because of the recent update, some mods aren't compatible. One such mod is JContainers SE which other mods use. Is there a way to find out which of my mods use JContainers SE so I know if there will be an issue or not? I am speaking about in Vortex. I downloaded a mod that I know requires it, but no errors are coming up saying I don't have it (I purposely uninstalled JContainers).
  3. Fair enough. I'll just keep doing what I have been. Use AutohotKeys to press the V key for me every 1/4 second or so. It works, for the most part but there are times when it pauses for awhile. If someone here is able to read and modify the code better, please do. I took the code from AHK's website and changed it. I understand a little bit of coding so I was able to get it to do what I wanted, but I don't understand everything that it does. Also, when the game doesn't have focus it still presses the V key. So if you can get that to work, it would be awesome. ;=============================================================================== ; AutoHotkey Version: 1.0.48.5 ; Language: English ; Platform: Win9x/NT/XP/Vista/Win7 ;=============================================================================== ;--------------------------------------- ; Script Initialization Stuff (optional) ;--------------------------------------- #SingleInstance force #InstallKeybdHook #NoEnv SendMode Input bActivate := 0 ;--------------------------------------- ; Create a timer to constantly check ; if game is the active process or not ; since we want our remapping to only ; be applied in-game, not outside the ; game. ;--------------------------------------- SetTimer PollForApp return PollForApp: ; Get the process name of the active window (i.e. Notepad.exe) WinGet szProcessName, ProcessName, A if szProcessName = DragonAgeInquisition.exe { Suspend, off } else { Suspend, on } return ;--------------------------------------- ; Setup key binds ;--------------------------------------- v:: bActivate := !bActivate return v up:: while bActivate { sendinput v Sleep 30 } ;sendinput v return ;===============================================================================
  4. Sorry, not exactly sure what the correct wording is and probably why I can't find a mod for it. I'm looking for a mod that will show up on minimap when I'm close, like when I press the V button, but instead of constantly hitting V, i'd like it to auto-search or to just show up when I'm close.
×
×
  • Create New...