Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
After you make a copy of the single config file and renamed one of them to dosboxQG1EGA_single.conf, open dosboxQG1VGA_single.conf with notepad. Once
opened, delete the following line of code starting with "ECHO" to "if errorlevel 1 goto pqvga"
After it is deleted, delete :pvga, cls (the one under :pvga) and then delete the following line of code:
:pqega
cls
cd ega
SCIV.EXE
exit
:exit
exit
From here, you can delete any blank space between "cls" and "scidhuv.exe" to tidy up the code. It should looke something like this:
# ipx: Enable ipx over UDP/IP emulation.
ipx=false
[autoexec]
@echo off
mount C ".."
c:
cls
scidhuv.exe
exit
Once done. Save it and then open up dosboxQG1EGA_single.conf. Similar to editing dosboxQG1VGA_single.con, start deleting the lines from "ECHO" to "if errorlevel 1 goto pqvga."
Nex delete the following lines of code:
:pqvga
cls
scidhuv.exe
exit
:pqega
Once that is deleted, delete the following last two lines of code:
:exit
exit
From here, your code should look like this:
# ipx: Enable ipx over UDP/IP emulation.
ipx=false
[autoexec]
@echo off
mount C ".."
c:
cls
cd ega
SCIV.EXE
exit
Once that is complete, you then edit the launcher to add QG1EGA. Because the EGA version is the first in the series, I put this before the QG1VGA - to make things simple, copy the QG1VGA lines of code and paste before the one you copied from. From here, rename "dosboxQG1VGA_single.conf" in Game1Cmd to "dosboxQG1EGA_single.conf". You can leave "dosboxQG1VGA.conf" alone as it is a global conf - as mentioned before, both games can use the same config. Once that is done. you can rename "Quest for Glory - So You Want To Be A Hero (VGA)" to better reflect the EGA version. I renamed it as "Hero's Quest - So You Want To Be A Hero (EGA)", but any other name that differenates this to the VGA version is fine. You can just rename the title by replacing the "V" with an "E".
Once you have finished editing this, re-number all the lines below QG1EGA and change NumButtons=7 to NumButtons=8 (if you have followed the step in the initial post to add QG2VGA). Otherwise, change NumButtons=6 to NumButtons=7.
Lastly, to change the aspect ratio to 4:3 and to disable EMS, open all the non single conf in the QG collection (you can look at the launcher ini for the specific name of the conf) one by one. Search for aspect by pressing ctrl+F and typing in "aspect." Once located, change the code as follows: aspect=true
After the code has been changed, look for EMS and change the true to false. It should look like this: EMS=false
Disabling the EMS would prevent crashes to QG1VGA and QG3 (thanks, rev.prmiller for the heads up.)
Do this for each game.
aspect=true
EMS=false
True considering that the configuration file (not the single one) is generic per se. I guess Steam has uses separate ones to be organized. Then again, the steam version has a launcher within a launcher for QG1, which is redundent.
I downloaded Visual Basic from the MS site since I want to make a launcher of my own. The "hard" part would be re-learning how to make gui programs and using c++ or c# (which I knew how to).