View Single Post
  #6  
Old 14-05-2024, 00:52
CrownRepack CrownRepack is offline
Registered User
 
Join Date: Apr 2024
Location: In My Home
Posts: 24
Thanks: 30
Thanked 20 Times in 13 Posts
CrownRepack is on a distinguished road
Quote:
Originally Posted by sasli4ok View Post
Hello sorry if I'm dumb but how do I say to the program where is the game file like I it should from start be an archive and after i put it in script folder and
#define Binary "Test.exe" /* Type full path to EXE file */ - is the path to main .exe
or how to do it
I have not understand it at first, but to answer your problem,
the Define Binary is the exe of your game.exe or program.exe,

for example my game im trying to repack is INSIDE, so in the main folder of INSIDE game there is INSIDE.exe (the game exe)

so you only have to put INSIDE.exe, and that's it:

#define Binary "INSIDE.exe" /* Type full path to EXE file */

so when it install/unpack, it will target that exe and create a shortcut for it on desktop if you check the create shortcut checkbox.

Most games have their exe in the main directory of the folder, if your exe is in a subfolder then type

#define Binary "Subfolder/INSIDE.exe" /* Type full path to EXE file */

"Subfolder" is your subfolder name.
Reply With Quote