Page 1 of 1

How do you make a exe version of your game????

Posted: November 18th, 2010, 5:29 pm
by yossiyossi
Hey Before I start using this program I wanna know if it can make exe versons of the game I create if i can I will start using this please help.

Re: How do you make a exe version of your game????

Posted: November 19th, 2010, 1:35 pm
by owenisred
yea you can make exes - you could also make it identically to saurbraten and have batch files run the game, its down to you (the latter is the easiert)

Re: How do you make a exe version of your game????

Posted: November 19th, 2010, 4:27 pm
by PizzaLover101
Well, it doesn't really matter.
I have a bat to exe converter, so it can run off of exe's

Re: How do you make a exe version of your game????

Posted: December 9th, 2010, 12:46 pm
by Leo_V117
Thats true, Most of the games have an exe to run, and keeping a bat to run it would be a good Idea, although you can create a new one and change it to an EXE. Like so...

Right Click "CLICK_ME_TO_START.bat" and select Edit. You should have this line:

Code: Select all

bin\sandbox_fps.exe -qmy_stuff -r %1 %2 %3 %4 %5
When you run PAS, you should get this: "*userdir*>bin\sandbox_fps.exe -qmystuff -r" For example "D:\PAS 2.6>bin\sandbox_fps.exe -qmystuff -r"... What you want to do is add this above the line.

Code: Select all

@ECHO OFF
then add

Code: Select all

ECHO Running *gamename*
Now save it, Then youre done. Heres what it should look like:

Code: Select all

@ECHO OFF

ECHO Running PAS 2.6

bin\sandbox_fps.exe -qmy_stuff -r %1 %2 %3 %4 %5
Now, you can make the window stay open, or make it blank so you can convert it to EXE. If you want it blank, it should look like this:

Code: Select all

@ECHO OFF

bin\sandbox_fps.exe -qmy_stuff -r %1 %2 %3 %4 %5
Now use the bat to exe converter and set the "visibility" to "invisible" and then convert it.

Hope this Helps.
- Leo