Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Eeketh

Pages: [1]
1
7th Heaven / Re: Sadness colouring limit bar red
« on: 2016-01-12 15:55:00 »
Ooh, it's part of the menu overhaul?
I noticed it too, didn't think it was very good :D yellow = standard, orange = fast, red = opposite of fast... doesn't make much sense to make the extremes so similar to each other ^_^

2
FF7 Tools / Re: [FF7PC] Mod manager - 7thHeaven (v1.51)
« on: 2016-01-10 15:56:36 »
I work as a C# developer, but have no experience with WPF I'm afraid.
At work, we use WinForms for the desktop client, and outside of work I tend to play with Unity or Java, so never touched it...

3
FF7 Tools / Re: [FF7PC] Mod manager - 7thHeaven (v1.51)
« on: 2016-01-10 15:05:22 »
Howdy,

I'm looking for a new programming project to do in my spare time, and EQ2Alyza directed me here :)
Is there anything I can do to help out?

4
7th Heaven / Re: FF7_GameConverter_7H.bat errors
« on: 2016-01-09 11:15:48 »
FYI, if you don't want *everyone* to be able to see your code, bitbucket.org allows you to have private git repositories for free.
I dislike using github in early stages of development, as it can be embarrassing to allow everyone to see the inefficient code in the first version :D

5
7th Heaven / Re: Break 9999 crash
« on: 2016-01-09 11:03:47 »
I created a new profile to test - I get the same issue when I only activate the reunion mod, enabling beacause and break 9999

6
7th Heaven / Re: FF7_GameConverter_7H.bat errors
« on: 2016-01-09 10:56:51 »
No problem :)
I am a developer, regularly have to deal with people reporting vague issues without reliable replication steps... so whenever I get an error I try to investigate as much as possible so I don't annoy other developers ;)

7
7th Heaven / FF7_GameConverter_7H.bat errors
« on: 2016-01-09 09:47:17 »
I noticed a couple of errors when I ran the game converter...
"The syntax of the command is incorrect" and "The filename, directory name, or volume label syntax is incorrect"

The first error is from renaming the opengl config file - the 2nd parameter has to be just the new filename, not the entire path (lines 1010-1015)
Code: [Select]
IF EXIST "%DestinationPath%\ff7_opengl.cfg" REN "%DestinationPath%\ff7_opengl.cfg" "_ff7_opengl.cfg"
XCOPY "Sprinkles\FF7_OpenGL-0.8.1b" "%DestinationPath%"  /E /I /Q /H /R /Y >NUL
IF EXIST "%DestinationPath%\_ff7_opengl.cfg" (
DEL "%DestinationPath%\ff7_opengl.cfg" >NUL
REN "%DestinationPath%\_ff7_opengl.cfg" "ff7_opengl.cfg"
)

The 2nd error was a mix of things related to moving files from music_ogg.
Firstly, my system (windows 10) shows an error when using a tab between parameters, rather than spaces - it joined them as one path and complained it couldn't find it. secondly, when trying to move files from an empty folder (because I'm re-running using the overwrite option) it raises the same issue.
I've amended my local copy to check if the folder has any contents first, replacing line 1021 with:
Code: [Select]
FOR /F %%i IN ('DIR /b "%DestinationPath%\data\music_ogg\*.*"') DO (
   MOVE /Y "%DestinationPath%\data\music_ogg\*.*" "%DestinationPath%\music\vgmstream\" >NUL
   GOTO :1st_Icon
)
I had to do it using a loop, as EXIST doesn't work - presumably because it includes . and .. in its check or something. Could have just redirected stderr to &1, but thought it may be more helpful to allow it to show errors if there's a permission error or something.

8
7th Heaven / Re: Issues getting set up
« on: 2016-01-03 14:04:05 »
Have got it working now.
Lines 339, 342, 345, and 347 must be updated to have quotes around %DestinationPath%.

9
7th Heaven / Re: Issues getting set up
« on: 2016-01-03 13:14:59 »
Yup, the game converter isn't working - that file doesn't exist either.

It closes immediately after I press enter, because it found the correct path - I assume there's an error and it's crashing? But dunno how to find the error :s

EDIT:

Found the bat file in my temp folder...
It seems to be failing due to spaces in my folder structure

10
7th Heaven / [SOLVED] Issues getting set up
« on: 2016-01-03 12:46:06 »
Following Tifa's tutorial, I ran the game converter, started 7th Heaven, and configured the settings...
However, I run into a few issues:

The /mods/Textures folder doesn't exist
The /music folder doesn't exist
The Texture Memory and Music Plugin options are greyed out and don't save
There's no vgmstream.fgp in the plugins folder (been searching on here for a solution, have seen people's .cfg showing they're configured to use this file)

Have I done something wrong? Is the tutorial out of date?

Pages: [1]