Jump to content
LaunchBox Community Forums

DARIUSBURST CS Anyway to skip Launcher?


dov_EL

Recommended Posts

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.

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

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 !

Link to comment
Share on other sites

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 ?

Link to comment
Share on other sites

  • 2 weeks later...
  • 9 months later...
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/

 

Link to comment
Share on other sites

  • 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...