Thread: BlackBox v2
View Single Post
  #3  
Old 06-08-2015, 10:18
toto621 toto621 is offline
Registered User
 
Join Date: Jul 2015
Location: The World
Posts: 71
Thanks: 42
Thanked 47 Times in 23 Posts
toto621 is on a distinguished road
Quote:
Originally Posted by ivanlakersss666 View Post
I should change to select the subfolder game.exe to my desktop shortcut to run me well???


http://s29.postimg.org/hf6omltqf/Sin_t_tulo.jpg
Actually you will have to change two lines of the [Icons] section of the script to make it work.

Let's say the game exe is in the subfolder bin\release\ for example, you will have to modify those lines :
Code:
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError
to
Code:
Name: "{group}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError

Last edited by toto621; 06-08-2015 at 10:46.
Reply With Quote