ID:873556
 
(See the best response by Tom.)
Ive been trying to create a stand alone installer for a while not but no luck. The instructions in the read me file are kinda complicating to me.

Current Files:
bin/
byondcore.dll
byondext.dll
byondcore.dll
byondwin.dll
dreamseeker
fmodex.dll
mydream

cfg/
byond.js
hub.css
hub.html
hubstub.html
jquery.js

rsc/
Dead World.rsc

skin/


byondexe.ini
key = [my hub key here]
byond = setup/bin
include = setup/cfg, setup/skin, setup/rsc
exe = Dead World.exe

#out = MyGame
#update = game_update.zip
#install = game_install.exe
#icon = setup/myicon.ico

company = My Company
product = MyGame Beta
version = 1.0.0.1 beta


Its creates the [game].EXE but what about the installer? I also downloaded and installed NSIS and tryed to drag the install.nsh that was included into the NSIS but it aborts.

This is all new to me so if someone could help me out i would be greatful.
Best response
Just set the "install" var in the ini file and it will create an installer if you have NSIS installed. This should be in the README.
#out = Dead World
#update = game_update.zip
#install = dead_world_install.exe
#icon = setup/myicon.ico


like that?
You have to uncomment out the 'install' arg, so
#install -> install
Ah well theres the problem lol thanks for the help, should probably make that clear for noobs like me to not include '#'.
Thanks a bunch.