Jump to content
LaunchBox Community Forums

Recommended Posts

Posted (edited)

 

Darius is amazing in my Bartop (mini PC Beelink AP34 ) but have a bad launcher




Is possible skip Launcher with command ? 

IMG_20180205_084416988_HDR.jpg

2018-02-05 08_43_22-DBCS_PC_Quick_guide.pdf.png

Edited by dovella
Posted

Did you look in the install folder for another executable ?

If there isn't one you can probably setup an AHK script to press the Enter key on your keyboard since it looks like that would press the "Launch" button

Posted

First in Chinese 
2 is in English 

In fact normally launcher launches another executable that often is in different folders (maybe 32 or 64 bit) unfortunately this seems the only case where the launcher is built in the executable of the game itself.

Posted

I hope to find an ideal solution, the game is AMAZING in my bartop and it works perfectly.
It would be a pity to have to delete it only for the launcher :)

Posted

Yeah it's a great game, I have played it at a buddies and I have it on my Steam wishlist waiting for it to go on sale for a reasonable price, 55$ just feels a bit high for a shmup to me when I got Darius Gaiden which I love so much.

Posted

I use a ahk script and compile to an .exe and put in the  "Additional App" > check "Automatically run before main application"

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


#SingleInstance force
Loop
while WinExist("DARIUSBURST CS Launcher")
{
Send, {Enter}
ExitApp
}

 

  • Like 2
  • Thanks 1
Posted (edited)

It's part of the installer. https://autohotkey.com/download/

Allows you to right click desktop "New" > "AutoHotKey Script" to create the script

Then right click the AHK script you just created and "Compile Script" will compile to an .exe  (you can also just run the script in ahk format from that menu to if you wanted to test it) 

Edited by Sithel
  • Like 2
Posted
13 hours ago, Sithel said:

I use a ahk script and compile to an .exe and put in the  "Additional App" > check "Automatically run before main application"


#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


#SingleInstance force
Loop
while WinExist("DARIUSBURST CS Launcher")
{
Send, {Enter}
ExitApp
}

 

GREAT !!! Thank You !

Posted
13 hours ago, Sithel said:

I use a ahk script and compile to an .exe and put in the  "Additional App" > check "Automatically run before main application"


#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


#SingleInstance force
Loop
while WinExist("DARIUSBURST CS Launcher")
{
Send, {Enter}
ExitApp
}

 

work only .exe ? .bat not work ?

  • 2 weeks later...
  • 9 months later...
Posted
On 2/5/2018 at 8:41 PM, Sithel said:

I use a ahk script and compile to an .exe and put in the  "Additional App" > check "Automatically run before main application"


#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


#SingleInstance force
Loop
while WinExist("DARIUSBURST CS Launcher")
{
Send, {Enter}
ExitApp
}

 

https://forums.launchbox-app.com/topic/48012-battleprincessmadelyn-ahk-skip-launcher/

 

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...