Jump to content

hylic

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by hylic

  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
     
    isRunning = 0
    walkToggleKey := "["
     
    #IfWinActive Pillars of Eternity ahk_class UnityWndClass
     
    ~LButton::
    { 
        if ((A_TimeSincePriorHotkey < 180) && (A_TimeSincePriorHotkey > 0))
        { 
            Send {%walkToggleKey%}
            isRunning = 1
            Return
        }
     
        if (isRunning == 1)
        {
            Send {%walkToggleKey%}
            isRunning = 0
        }
    
        Return
    }

     

    Ok, now I just have the normal steam version of Pillars of Eternity and IE Mod is giving me a big error (thread in the modding forum). Can someone please tell me how to make this autohotkey script run??

  2. Just got Pillars of Eternity from Steam v3.7.0.1318 and I get this error when trying to start a new game or load a save made without using the mod. I am using the proper version of the IE Mod (5.2.4.0-Bundle) and have installed it to the Managed folder with the correct path to PillarsOfEternity.exe and have run tests and the test ran fine, but as stated I am getting this error whenever I try to do anything with it. Please, can anyone help?

  3. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
     
    isRunning = 0
    walkToggleKey := "["
     
    #IfWinActive Pillars of Eternity ahk_class UnityWndClass
     
    ~LButton::
    { 
        if ((A_TimeSincePriorHotkey < 180) && (A_TimeSincePriorHotkey > 0))
        { 
            Send {%walkToggleKey%}
            isRunning = 1
            Return
        }
     
        if (isRunning == 1)
        {
            Send {%walkToggleKey%}
            isRunning = 0
        }
    
        Return
    }

    So...How the hell do I get this to work? I downloaded Auto Hotkey and made a script file named walk and put this script in it and saved. I've messed around a bit and cant get it to work. What do I do?

     

    I just downloaded Pillars of Eternity Definitive Edition from Epic Games and it's like its own version. its like "Epic Games v1.1.3.007," but apparently the latest version, and that really finicky IE Mod just WILL NOT work with this version at all. There are comments about this Epic Games version on the comment section of Nexus for IE Mod, about how it won't work, and my only bet is to use auto hotkey, but I don't know how to get this to work.

     

    Can someone explain this for me please?

×
×
  • Create New...