3D Rad - Free 3D game maker - Forum

This forum is now archived!

This forum is locked, and is a read-only version. A new community-ran forum can be found at classdev.net

News:

The 3DRad community can be found at classdev.net.

Pages: [1] 2

Author Topic: Inno setup  (Read 2498 times)

« on: February 29, 2012, 12:52:14 PM »
When I compiled my inno setup script, it said: Line 14: [ISSP] File not found "addon_installer_donotmodify.iss" When I removed that line, it said, Line 14:                                   Directive "Source: CD RadDRad_resaddonsFed Ex Express_xi.3dr";DestDir: {app}DRad_resaddons";Attribs:readonly; Flags: ignoreversion touch" has no value. I followed the instructions on the 3D Rad website and only put the files for the addon that were not included in 3D Rad. Please reply!
« Last Edit: March 02, 2012, 03:26:25 AM by dogsofknowledge »
« Reply #1 on: March 04, 2012, 07:01:52 AM »
Why is no one replying?
« Reply #2 on: March 04, 2012, 07:10:11 AM »
Because I know completely nothing about Inno setup.
Good enough for ya?
Rocket Rumble, a 3D Rad puzzle game:
http://www.3drad.com/forum/index.php?topic=9896.0
« Reply #3 on: March 17, 2012, 03:41:42 AM »
Is there anyone else that knows about Inno Setup?

secondry2

« Reply #4 on: April 12, 2012, 07:32:51 PM »
if you dont know, dont use it! use something else, cant think of any off the top of my head, but there will be plenty out there.
« Reply #5 on: April 13, 2012, 01:10:47 AM »
I've never heard of any program for making installers except Inno Setup. I will try and look around, but I might need another example to make it do anything.

secondry2

« Reply #6 on: April 13, 2012, 08:26:38 PM »
install creator pro :-\
« Reply #7 on: April 14, 2012, 01:21:37 AM »
Pro? Does that mean it costs money? That would be fancier then Inno setup, but I need something that's free.
« Reply #8 on: April 14, 2012, 08:08:12 AM »
Pro? Does that mean it costs money? That would be fancier then Inno setup, but I need something that's free.

You could use google... you know... to see if it costs money.
« Reply #9 on: April 14, 2012, 09:48:56 PM »
have you tried innoIDE (comes with inno setup)? it has a wizard and is very easy to use. I don't have time to do a tutorial or anything but it's easy enough to figure out useing the wizard.

but below are some flag setting i use (this from a script generated by the wizard but i modify the flags for usage in deployment which might be helpfull to you, i added [Dirs] section to allow writting inside the folder of the deployed app):

Code: [Select]
[Files]
Source: "C:\Users\davester\Desktop\OddityEngine_Final\*"; DestDir: "{app}"; Flags: replacesameversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"

[Dirs]
Name: "{app}\"; Permissions: authusers-modify

[Uninstall]
DestDir: "{app}"; Flags: replacesameversion
using 3Drad 7.22

system specs:
Windows 7 Home Premium 64-bit
Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (4 CPUs), ~3.2Ghz
8 gig ram
Geforce GTX 650 1024 MB GDDR5
DirectX 11
« Reply #10 on: April 14, 2012, 11:04:18 PM »
actually I had 5 mins so threw this tutorial together.

first i compiled my rad (in this case the aircraft demo) project as you would normally wher it was outputted to
C:\3D Rad\3DRad_res\compiledProject\Aircraft_Demo\

now step 1 launch innoIDE:


now start the wizard...


hit next...


type in some basic data for the project...


hit next...


first param browse to your exe...


now we add folder which will be full of the content we want to deploy...


hit yes then next...


select appropriate params...


add any text files that contain relevant information such as minimum operating setting,hardware or license info...other wise leave blank.


select languages...


first param select output where you want the installer created i just set to the desktop as easy to find once compiled...


check and hit next...


hit finish...


now we will have our generated script and we can set further information such as installer version info like...


then fill it out like (with your data) and press ok...


now we are back to our script as generated by the wizard, now scroll down to the bottom...


change/add circled data/flags as in this pic (and previous post to this one)...


save the project once you are happy with it...


now hit compile...


compiling...


finnished compiling hit close...


and now you should have your installer on the desktop somewhere...


hope that helps someone...:)
using 3Drad 7.22

system specs:
Windows 7 Home Premium 64-bit
Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (4 CPUs), ~3.2Ghz
8 gig ram
Geforce GTX 650 1024 MB GDDR5
DirectX 11
« Reply #11 on: April 15, 2012, 02:59:32 AM »
Pro? Does that mean it costs money? That would be fancier then Inno setup, but I need something that's free.

You could use google... you know... to see if it costs money.
Yep, it costs money.
To genetransfer now, thanks for the tutorial.
« Reply #12 on: April 15, 2012, 03:36:59 PM »
no problem, sorry i didn't read what section this was in :P I didn't realize you where doing an addon. it's should still be possible to follow the tutorial with some changes such as not needing the exe. though I've not made an installer for an addon. well at least it would help with a normal compiled project for anyone not familiar with inno setup.
using 3Drad 7.22

system specs:
Windows 7 Home Premium 64-bit
Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (4 CPUs), ~3.2Ghz
8 gig ram
Geforce GTX 650 1024 MB GDDR5
DirectX 11
« Reply #13 on: April 16, 2012, 08:54:21 AM »
nice tut GT...

Inno can be a pain sometimes...  :D

--Mike

secondry2

« Reply #14 on: April 19, 2012, 10:44:19 PM »
i just dont use it. i pay for the easier way in this case. cant be stuffed really. done enough work with the game, and not stuffing around with installers.
Pages: [1] 2