dll 로드 시 위 스크린샷 또는 loadFromRemoteSources 관련 에러가 뜨는 분들을 위한 팁.

각자 ACT 설치 폴더로 가시면...

32비트: ACTx86.exe.config
64비트: Advanced Combat Tracker.exe.config

파일이 있을 겁니다.

각자 컴퓨터 환경에 맞는 파일을 메모장으로 열어서 <runtime></runtime>안에 <loadFromRemoteSources enabled="true"/> 한 줄을 추가해줍니다

예시)
<?xml version="1.0"?>
<configuration>
    <runtime>
        <loadFromRemoteSources enabled="true"/>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="Advanced Combat Tracker" publicKeyToken="a946b61e93d97868" culture="neutral"/>
                <bindingRedirect oldVersion="2.5.0.0-3.65535.65535.65535" newVersion="3.2.0.250"/>
            </dependentAssembly>
        </assemblyBinding>
    </runtime>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
    </startup>
</configuration>

끝.