User Guide
Quick Reference
Modding
Development
User Guide
Quick Reference
Modding
Development
This is a tutorial for making a custom Windows shortcut for Doomsday, courtesy of code120
D:\Doomsday\bin\Doomsday.exe -basedir... (paste here the joined command line)
var WindowStyle_Hidden = 0
var objShell = WScript.CreateObject("WScript.Shell") var result = objShell.Run("cmd.exe /c filename.bat", WindowStyle_Hidden)
This will suffice, you'll maybe want to create a shortcut to the .js file and have a custom icon.
You can actually skip the js passage, but when you launch the .bat file directly a command prompt window will stay on the background, the js will make it hide.