PDA

View Full Version : Probably in the wrong place for asking this, but need help with inno script i found.


gnarly1014
25-01-2020, 18:27
I have recently come across an .ISS script, i don't know if it was ever posted here.

Its labeled "EXGames version" and after a few quick Google searches, it was created from one of the million "R.G." groups, RG ExGames.

It HALF-works for me, which is surprising, because I kept looking for installers that actually worked for me, and a handful of them that are on this site, some of the BB installers and corepack ones, do not, except they work for everyone else because why not?

Anyway, there are a few problems to this that I can't seem to find or fix.

The .iss was half in Russian, so I had to translate it. I seem to managed to get most of it reset to English, though are there are like a few snippets of text that are still Russian.

It can't seem to create a shortcut (I might be wrong about this)

And lastly, it spits out these error.

https://i.imgur.com/3NKO26G.png

It fully extracts the data.bin I have just fine though. If anyone can help me fix up the errors and this shortcut issue on this i will be glad.

26229

Harsh ojha
25-01-2020, 19:58
Ok I know the problem plz wait for 3-5 hours

BLACKFIRE69
26-01-2020, 03:10
I have recently come across an .ISS script, i don't know if it was ever posted here.

Its labeled "EXGames version" and after a few quick Google searches, it was created from one of the million "R.G." groups, RG ExGames.

It HALF-works for me, which is surprising, because I kept looking for installers that actually worked for me, and a handful of them that are on this site, some of the BB installers and corepack ones, do not, except they work for everyone else because why not?

Anyway, there are a few problems to this that I can't seem to find or fix.

The .iss was half in Russian, so I had to translate it. I seem to managed to get most of it reset to English, though are there are like a few snippets of text that are still Russian.

It can't seem to create a shortcut (I might be wrong about this)

And lastly, it spits out these error.

https://i.imgur.com/3NKO26G.png

It fully extracts the data.bin I have just fine though. If anyone can help me fix up the errors and this shortcut issue on this i will be glad.

26229


Did you compress the game files separately first with 'precomp' then 'Srep' and finally 'FreeArc' ?

.

BLACKFIRE69
26-01-2020, 03:28
Fix :

Copy / replace your files with these.


.

gnarly1014
26-01-2020, 12:20
Fix :

Copy / replace your files with these.


.

This got rid of the errors just fine, and I am happy about that, but it still won't create a desktop shortcut. I don't know what I am doing wrong, i even added a line to make a desktop shortcut from a normal Inno Setup script.

gnarly1014
26-01-2020, 14:49
Bump...
It apparently can create a desktop icon, but its blank and it doesn't run the game.
Please, i need a new fix.

KaktoR
26-01-2020, 19:54
[Icons]
Name: {group}\YOUR APP NAME; Filename: {app}\unins000.exe; WorkingDir: {app}; Check: CheckError
Name: {commondesktop}\YOUR APP NAME; Filename: {app}\APP Exe File; WorkingDir: {app}; Check: CheckError

BLACKFIRE69
26-01-2020, 22:10
This got rid of the errors just fine, and I am happy about that, but it still won't create a desktop shortcut. I don't know what I am doing wrong, i even added a line to make a desktop shortcut from a normal Inno Setup script.

Under the [Icons] section change Filename to Game exe name.

ex: NFSH

... ; Filename: {app}\NeedForSpeedHeat.exe; ....
(both {group} and {commondesktop})