Jump to content

Recommended Posts

Posted
8 hours ago, jonsky7 said:

So I've started solely using the DCS.exe in the bin folder. *

Yep, I deleted the bin-mt folder some time ago.

Intel i7 12700K · MSI Gaming X Trio RTX 4090 · ASUS ROG STRIX Z690-A Wi-Fi · MSI 32" MPG321UR QD · Samsung 970 500Gb M.2 NVMe · 2 x Samsung 850 Evo 1Tb · 2Tb HDD · 32Gb Corsair Vengance 3000MHz DDR4 · Windows 11 · Thrustmaster TPR Pedals · Tobii Eye Tracker 5 · Thrustmaster F/A-18 Hornet Grip · Virpil MongoosT-50CM3 Base · Virpil Throttle MT-50 CM3 · Virpil Alpha Prime Grip · Virpil Control Panel 2 · Thrustmaster F-16 MFDs · HTC Vive Pro 2 · Total Controls Multifunction Button Box

Posted

A question to @SkateZilla. Is there a possibility to create a shortcut icon to run DCS and launch various necessary programs? (vaicom, openkneeboard, etc). I normally do it by clicking on "DCS LAUNCHER" but I would like to do it from an icon on the desktop.

Posted

I just updated DCS to the latest version yesterday.  Since then your updater program doesn't work.  I am unable to scan for my build.  I'm not computer savvy so I know I'm doing something wrong but can't figure it out.  Any advise would be much appreciated.  What should the set sim path be? I've saved dcs to my d drive and have been using the path to the bin - mt file.  and the set user profile path to the saved games open beta folder on my c drive.  Nothing sems to work.

Squatting Bear

null

dcs.png

image.png

Posted

right click on the sim build slot #01 and select Set Sim Path #01 > Browse for path 

  • Like 1

SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero
SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO

YOUTUBE CHANNEL: @speed-of-heat

1569924735_WildcardsBadgerFAASig.jpg.dbb8c2a337e37c2bfb12855f86d70fd5.jpg

Posted
21 hours ago, Vector1 said:

Bit off track with what I asked,anyone know when new version that corrects all the bugs with this version is going to be released .

 

If you start reading a few pages back you'll find that SkateZilla has other priorities at the moment.

Win11 Pro 64-bit, Ryzen 5800X3D, Corsair H115i, Gigabyte X570S UD, EVGA 3080Ti XC3 Ultra 12GB, 64 GB DDR4 G.Skill 3600. Monitors: LG 27GL850-B27 2560x1440 + Samsung SyncMaster 2443 1920x1200, HOTAS: Warthog with Virpil WarBRD base, MFG Crosswind pedals, TrackIR4, Rift-S, Elgato Streamdeck XL.

Personal Wish List: A6 Intruder, Vietnam theater, decent ATC module, better VR performance!

Posted

sorry I misread your message.  I click on the sim build slot 1 and then the set sim path browsed for the bin-mt folder on my d drive but it doesn't like that.  I can launch dcs with the dcs icon and It launches fine.

Posted

you-love-me-you-really-love-me.gif

  • Like 3

Windows 10 Pro, Ryzen 2700X @ 4.6Ghz, 32GB DDR4-3200 GSkill (F4-3200C16D-16GTZR x2),

ASRock X470 Taichi Ultimate, XFX RX6800XT Merc 310 (RX-68XTALFD9)

3x ASUS VS248HP + Oculus HMD, Thrustmaster Warthog HOTAS + MFDs

Posted (edited)
On 11/24/2024 at 12:36 AM, Silver_ said:

A question to @SkateZilla. Is there a possibility to create a shortcut icon to run DCS and launch various necessary programs? (vaicom, openkneeboard, etc). I normally do it by clicking on "DCS LAUNCHER" but I would like to do it from an icon on the desktop.

You could create a batch file!

A batch file contains a set of instructions, which among other things can include launching programs directly, or running desktop shortcuts.

i.e. My batch file code below
I store this batch file in a folder and made a shortcut on my desktop for it (so you can change the icon), you would obviously have to change the file paths and shortcut names to suit you.

To make a batch file, just put this in a text editor like Notepad, then save as a .bat file instead of .txt file.

 

Quote

@echo off

:: Launch auxiliary programs
start "" /b "F:\desktop\TARGET DCS.lnk"
start "" /b "F:\desktop\VoiceAttack.lnk"
start "" /b "F:\desktop\Ikarus.lnk"
start "" /b "F:\desktop\SRS.lnk"
start "" /b "F:\desktop\Discord.lnk"

:: Clean up temporary files if they exist
if exist "C:\Users\jonsk\AppData\Local\Temp\DCS" rd /s /q "C:\Users\jonsk\AppData\Local\Temp\DCS"
if exist "G:\Saved Games\DCS\Tracks\Multiplayer" rd /s /q "G:\Saved Games\DCS\Tracks\Multiplayer"

:: Wait for 5 seconds
TIMEOUT /T 5 /NOBREAK

:: Launch DCS World
start "" G:\"DCS World"\bin\DCS.exe

:: Wait for DCS to load (adjust timing as needed)
TIMEOUT /T 90 /NOBREAK

:: Launch The Way
start "" /b "F:\desktop\TheWay-V2.lnk"

exit

Description

@echo off   -- just stops certain things being shown in the window 

Launch auxiliary programs - this runs the shortcuts I have have for all my add-on programs

Clean up - just deletes temp files and multiplayer mission tracks (they were getting out of hand)

Wait 5 seconds, NOBREAK just means you don't have to "PRESS ANY KEY" to continue, 5 Seconds just to give everything else a chance to start before DCS runs, especially the Target Script.

Launch DCS world, runs the actual exe, and not a shortcut.

another pause before launching "TheWay", so DCS is running before it starts up. 

 

Edited by jonsky7
  • Like 2
Posted
11 hours ago, jonsky7 said:

You could create a batch file!

A batch file contains a set of instructions, which among other things can include launching programs directly, or running desktop shortcuts.

i.e. My batch file code below
I store this batch file in a folder and made a shortcut on my desktop for it (so you can change the icon), you would obviously have to change the file paths and shortcut names to suit you.

To make a batch file, just put this in a text editor like Notepad, then save as a .bat file instead of .txt file.

 

Description

@echo off   -- just stops certain things being shown in the window 

Launch auxiliary programs - this runs the shortcuts I have have for all my add-on programs

Clean up - just deletes temp files and multiplayer mission tracks (they were getting out of hand)

Wait 5 seconds, NOBREAK just means you don't have to "PRESS ANY KEY" to continue, 5 Seconds just to give everything else a chance to start before DCS runs, especially the Target Script.

Launch DCS world, runs the actual exe, and not a shortcut.

another pause before launching "TheWay", so DCS is running before it starts up. 

 

this is what i do too, but i let DCS Updater load dcs and  some programs i have wait until DCS's loaded e.g. 

:VoiceAttack
    REM Wait for DCS to load
    tasklist | find /i "DCS.exe" >nul
    REM echo !%DCScount%!
    set /a DCScount+=1
    if %DCScount% GEQ 200 goto :StartVoiceAttack
    if errorlevel 1 goto :VoiceAttack

    :StartVoiceAttack
    set EXE=VoiceAttack.exe
    tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
    if errorlevel 1 (
        echo %EXE% is not running so Starting it.
        C:\Windows\System32\schtasks.exe /run /tn "VoiceAttack" 
        goto :END
    ) else (
        REM if it is running kill the EXE and relanuch 
        echo %EXE% running. Killing the task...
        C:\Windows\System32\schtasks.exe /run /tn "KillVoiceAttack"
        timeout 10 > nul
        :waitloopVoiceAttack
        REM wait until EXE is definately killed then 
            tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
            if errorlevel 1 (
                echo The program %EXE% has been killed and restarting it.
                C:\Windows\System32\schtasks.exe /run /tn "VoiceAttack" 
                goto :END
            ) else (
                goto :waitloopVoiceAttack
            )
    )

 

SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero
SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO

YOUTUBE CHANNEL: @speed-of-heat

1569924735_WildcardsBadgerFAASig.jpg.dbb8c2a337e37c2bfb12855f86d70fd5.jpg

Posted

@speed-of-heat do you mind sharing the complete script? I have a similar solution where I start DCS updater, Voice attack when I power my g2 through event log monitoring.

But I am keen into starting VA only with DCS launch and kill afterwards.

Posted
15 minutes ago, tomeye said:

@speed-of-heat do you mind sharing the complete script? I have a similar solution where I start DCS updater, Voice attack when I power my g2 through event log monitoring.

But I am keen into starting VA only with DCS launch and kill afterwards.

sure i can, full disclosure, i use a thirdparty command called nircmd to do some things:

@echo off
:: NAME:	DCSUpdater.bat
:: DATE:	01-JUL-2023
:: AUTHOR:	STUART ASTON
:: VERSION:	4.0
:: SOURCE:	https://stackoverflow.com/questions/162291/how-to-check-if-a-process-is-running-via-a-batch-script
:: 
::Change the name of "notepad.exe" to the process .exe that you're trying to track
::Process names are CASE SENSITIVE, so notepad.exe works but Notepad.exe does NOT
::Do not change IMAGENAME
::You can Copy and Paste this into an empty batch file and change the name of
::notepad.exe to the process you'd like to track
::Also, some large programs take a while to no longer show as not running, so
::give this batch a few seconds timer to avoid a false result!!

REM Start Optical Adjustment
REM :VarjoAdjustment
REM     echo Applying Optical Adjustment for Red shift
REM    timeout /T 5 > nul
REM   START cmd /c "D:\Games\VarjoOpticalAdjustment\EnableOpticalAdjustment.bat"

:SetDefaultsforAudio
    set EXE=VarjoBase.exe
    tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
    if errorlevel 1 (
        echo %EXE% is not running. Leaving Sound settings as they are.
        SET VRFLAG=0
        goto :KillVoiceAttackifRunningatStart
    ) else (
        echo %EXE% is running. Forcing VarjoHeadset as Default Sound and Microphone
        SET VRFLAG=1
        nircmd setdefaultsounddevice "Varjo Headset Speakers" 0
        nircmd setdefaultsounddevice "Varjo Headset Speakers" 1
        nircmd setdefaultsounddevice "Varjo Headset Speakers" 2
        nircmd setdefaultsounddevice "Varjo Headset Microphone" 0
        nircmd setdefaultsounddevice "Varjo Headset Microphone" 1
        nircmd setdefaultsounddevice "Varjo Headset Microphone" 2
    )
        
:KillVoiceAttackifRunningatStart
    set EXE=VoiceAttack.exe
    tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
    if errorlevel 1 (
        echo %EXE% is not running.
        goto :XRNeckSafer
    ) else (
        REM if it is running kill the EXE and relanuch 
        echo %EXE% running. Killing the task...
        C:\Windows\System32\schtasks.exe /run /tn "KillVoiceAttack"
        timeout 10 > nul
        :waitloopVoiceAttackstart
        REM wait until EXE is definately killed then 
            tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
            if errorlevel 1 (
                echo The program %EXE% has been killed
                goto :XRNeckSafer
            ) else (
                goto :waitloopVoiceAttackstart
            )
    )
 
:XRNecksafer
    set EXE=XRNeckSaferApp.exe
    tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
    if errorlevel 1 (
        echo %EXE% is not running so Starting it.
        START  "" /d "C:\Program Files\XRNeckSafer\" %EXE%
        goto :WaitforDCS
    ) else (
        REM if it is running kill the EXE and relanuch 
        echo %EXE% running. Killing the task...
        taskkill /f /im %EXE%
        :waitloopXRNecksafer
        REM wait until EXE is definately killed then 
            tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
            if errorlevel 1 (
                echo The program %EXE% has been killed and restarting it.
                START  "" /d "C:\Program Files\XRNeckSafer\" %EXE%
                goto :WaitforDCS
            ) else (
                goto :waitloopXRNecksafer
            )
    )

:WaitforDCS
    ECHO Waiting for DCS to Load
    set /a DCScount=0 
    goto :VoiceAttack

:VoiceAttack
    REM Wait for DCS to load
    tasklist | find /i "DCS.exe" >nul
    REM echo !%DCScount%!
    set /a DCScount+=1
    if %DCScount% GEQ 200 goto :StartVoiceAttack
    if errorlevel 1 goto :VoiceAttack

    :StartVoiceAttack
    set EXE=VoiceAttack.exe
    tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
    if errorlevel 1 (
        echo %EXE% is not running so Starting it.
        C:\Windows\System32\schtasks.exe /run /tn "VoiceAttack" 
        goto :END
    ) else (
        REM if it is running kill the EXE and relanuch 
        echo %EXE% running. Killing the task...
        C:\Windows\System32\schtasks.exe /run /tn "KillVoiceAttack"
        timeout 10 > nul
        :waitloopVoiceAttack
        REM wait until EXE is definately killed then 
            tasklist /fi "imagename eq %EXE%" | find "%EXE%" >nul
            if errorlevel 1 (
                echo The program %EXE% has been killed and restarting it.
                C:\Windows\System32\schtasks.exe /run /tn "VoiceAttack" 
                goto :END
            ) else (
                goto :waitloopVoiceAttack
            )
    )

:END
    REM Minimise Active Windows 
    timeout /T 10 > nul	
    rem nircmd win min stitle "Varjo Base"
	nircmd win min stitle "DCS Updater"
    nircmd win min stitle "OpticalAdjustmentGUI"
    REM nircmd setdefaultsounddevice "your sound device name"
    nircmd setsysvolume 39321 "Varjo Headset Microphone"
    nircmd setsysvolume 32767 "Varjo Headset Speakers"

    echo Finished!
    timeout /T 15 > nul
    exit

 

if you have questions PM me 🙂 

  • Thanks 1

SYSTEM SPECS: Hardware AMD 9800X3D, 64Gb RAM, 4090 FE, Virpil T50CM3 Throttle, WinWIng Orion 2 & F-16EX + MFG Crosswinds V2, Varjo Aero
SOFTWARE: Microsoft Windows 11, VoiceAttack & VAICOM PRO

YOUTUBE CHANNEL: @speed-of-heat

1569924735_WildcardsBadgerFAASig.jpg.dbb8c2a337e37c2bfb12855f86d70fd5.jpg

  • 2 weeks later...
Posted

Hello, I no longer see the DCS Launcher option after the last update, I'm running x.40.

Thanks

[sIGPIC][/sIGPIC]



Phoenix

F-16C

 

i7-8700K, Z370, 32GB DDR4-2400MHz, GTX 1080, FSSB R3L, TM Warthog HOTAS, MFD's, Windows 10 Pro, Oculus Rift S

Posted
1 hour ago, RealPhoenix said:

Hello, I no longer see the DCS Launcher option after the last update, I'm running x.40.

Thanks

Same here but no problem I don't use launcher

  • Like 1

 

 

 

FOX-2 2021_ED_1.PNG

  • 2 weeks later...
Posted

Does anyone know how to fix this. My build constantly says that there is an update available, even though it is fully updated. It's been happening for a couple of weeks now.

 

null

image.png

Posted
2 hours ago, filthymanc said:

Does anyone know how to fix this. My build constantly says that there is an update available, even though it is fully updated. It's been happening for a couple of weeks now.

 

null

image.png

I have the same problem. Maybe the version info file is out of sync on ED side.

SYSTEM: Mainboard MSI MEG X570 | CPU Ryzen 7 5800X @ 4.5 GHz | RAM 64 GB @ 3200 MHz | GPU GIGABYTE RTX 4090 | 1 TB SSD | Win 10 x64

DEVICES: ASUS 27" LCD | TrackIR 5 | LukeClip | Quest 3 | PointCTRL | Virpil HOTAS | MFG Crosswind | TableMount MonsterTech

MODULES: To much to list. But I stopped buying more, because of too much bugs in e.g. A-10C(II). @ED: Fix the bugs and I spend money on modules again. Promised.

PROJECTS: OpenFlightSchool: DE / EN

Posted
On 12/17/2024 at 3:50 PM, kaltokri said:

I have the same problem. Maybe the version info file is out of sync on ED side.

It's because it's assuming / seeing 2.9.10 is 2.9.1, even if I parse the version string into major, minor, sub-versioning values.
It'll be fixed when I get time to work on it add a 2.9.10 parameter like I've done for older versions that get to above x.x.9 and get another build out, lots of under the hood changes, so, it wont be after holidays as I'm still working 5x15 hr days, in remote locations.

  • Like 3
  • Thanks 3

Windows 10 Pro, Ryzen 2700X @ 4.6Ghz, 32GB DDR4-3200 GSkill (F4-3200C16D-16GTZR x2),

ASRock X470 Taichi Ultimate, XFX RX6800XT Merc 310 (RX-68XTALFD9)

3x ASUS VS248HP + Oculus HMD, Thrustmaster Warthog HOTAS + MFDs

Posted (edited)

Well I've been busy for a long time, so we're even.

I'm currently re-writing the version parsing, which will then be integrated into build and module scanning, as well as merging some module scan functions into a single function, which will resolve any version# issues for good, as well as making it less work when adding new modules, since everything would be further unified and condensed into a single function vs multiple.

Everything else that's broken (ie MT Modes etc), have already been fixed internally.

I have a Loooooooooooooooooooooooong change log, but I cannot release the next public build until after I finish the scan re-writes, and a few features that have already been integrated make it to the public DCS Builds.

 

Edited by SkateZilla
  • Like 10

Windows 10 Pro, Ryzen 2700X @ 4.6Ghz, 32GB DDR4-3200 GSkill (F4-3200C16D-16GTZR x2),

ASRock X470 Taichi Ultimate, XFX RX6800XT Merc 310 (RX-68XTALFD9)

3x ASUS VS248HP + Oculus HMD, Thrustmaster Warthog HOTAS + MFDs

Posted (edited)
On 12/22/2024 at 6:58 AM, SkateZilla said:

Well I've been busy for a long time, so we're even.

I'm currently re-writing the version parsing, which will then be integrated into build and module scanning, as well as merging some module scan functions into a single function, which will resolve any version# issues for good, as well as making it less work when adding new modules, since everything would be further unified and condensed into a single function vs multiple.

Everything else that's broken (ie MT Modes etc), have already been fixed internally.

I have a Loooooooooooooooooooooooong change log, but I cannot release the next public build until after I finish the scan re-writes, and a few features that have already been integrated make it to the public DCS Builds.

 

Man, I really wish more people understood that people that do this kind of Dev work are not getting paid enough or even at all to do it. This is a thing they do for fun and to help people. Take your time man, if it's not putting food on the table, and it's not your daytime job you don't owe anyone anything. I, for one, truly appreciate the really hard work that I know has gone into something like this. I'll check back after the holidays to see if you have pushed an update. Until then, the minor bugs that we have right now are not showstoppers. Enjoy your holiday.

Edited by Socialoutcast
  • Like 7
  • Thanks 1
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...