It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Anyone know how to do this on the Android tablet device? I'm using an LG one BTW.
avatar
Toshi: Yes, but if you want to use the enhancements via the dosboxULTIMA7.conf file you're going to need to a type a bunch more line commands. This isn't practical every time you play. Exult handles all that for you, plus the cheat menu is built into the app.
avatar
theranmafan: I downloaded the latest version (on 17 Sep 2016) and am encountering the crash error. I edited dosboxULTIMA7.conf to disable the memory managers etc. but it's still crashing on Journey Onwards. Anyone else have any ideas? I do dearly love my QOL hacks. :P

Edit: I figured out how to run Black Gate with cheats on the GOG wrapper! The key element is to basically run the final 'ultima7.com ABCD ' line by hand. Here's how I did mine (back up all conf files of course!):

1) Edit the desktop shortcut. Remove all arguments outside the quotes (so it doesn't close the window after executing). It should look something like

C:\Games\Ultima7\DOSBOX\DOSBox.exe -conf "..\dosboxULTIMA7.conf" -conf "..\dosboxULTIMA7_single.conf"

2) Edit dosboxULTIMA7_single.conf (in notepad)
2a) Strip it down to:
[autoexec]
mount C: [your ultima 7 installation destination. I recommend not using spaces when installing.]
C:
@echo Run Ultima 7 by hand for cheats!

Then I just type in command with the cheat argument and it works!
This worked! I had to make some tweaks to get it to run. I was able to copy the desktop shortcut so I have a shortcut for vanilla U7, and cheatified U7. I made a copy of the file dosboxULTIMA7_single.conf and named it dosboxULTIMA7_single_cheats.conf . I had the new shortcut point to it:

"C:\GOG\Ultima7\DOSBOX\DOSBox.exe -conf "..\dosboxULTIMA7.conf" -conf "..\dosboxULTIMA7_single_cheats.conf"

As per step 2a above, my dosboxULTIMA7_single_cheats.conf looks like this:

[autoexec]
mount C C:\GOG\Ultima7\
C:
@echo Run Ultima 7 with cheats with ULTIMA7 ABCDalt255

Thanks for the tip, and I hope this helps others
Another thing you could try if you're having trouble typing that character:

1. Create the shortcut (or batch file), but use a different character instead of the one you can't type. (For example, you could use "u7.exe ABCDE".)

2. Open the shortcut (or batch file) in a hex editor.

3. Change the replacement character (in my example an "E", or 65 hex) with hex FF.

This should work.
There's no need to butcher your .conf file and manually type in ultima7.com ABCDalt255. Edit the .conf with Windows Notepad and copy and paste ABCDÿ after ultima7.com (like this ultima7.com ABCDÿ). The ÿ is hex FF.
Post edited April 14, 2018 by zzsignup
avatar
theranmafan: Edit: I figured out how to run Black Gate with cheats on the GOG wrapper! The key element is to basically run the final 'ultima7.com ABCD ' line by hand. Here's how I did mine (back up all conf files of course!):

1) Edit the desktop shortcut. Remove all arguments outside the quotes (so it doesn't close the window after executing). It should look something like

C:\Games\Ultima7\DOSBOX\DOSBox.exe -conf "..\dosboxULTIMA7.conf" -conf "..\dosboxULTIMA7_single.conf"

2) Edit dosboxULTIMA7_single.conf (in notepad)
2a) Strip it down to:
[autoexec]
mount C: [your ultima 7 installation destination. I recommend not using spaces when installing.]
C:
@echo Run Ultima 7 by hand for cheats!

Then I just type in command with the cheat argument and it works!
THANX! I had the problem inside cube generator, when crossing first bridge cashes the game. Only solution was to get the debugmode and "teleport" Avatar to final platform. Adding lines to dosbox config or making a batch file didn't work and finally your metod was an answer :D
Post edited April 21, 2019 by NewPyk
No matter what i do, DOS box still crashes

I go into the doxboxUntima7single file, add D: D:\GOG Galaxy\Games\Ultima 7
the at the .com ABCD <--alt 255 and still crashes
Wait, are you including the actual characters "<--", etc.?

If so, then that may be your problem: the actual parameter is, I believe, "ABCD" followed by the character that's produced via an alt-code with the value 255. That is, there should be a total of five characters in the parameter that you add after the executable.

(If you're not familiar with alt-codes, see here: https://en.wikipedia.org/wiki/Alt_code )
Post edited January 12, 2022 by Thaumaturge
That ALT code can be fiddly for some, but as stated on the first page, you can as well use the y-umlaut character to achive the same result:
ultima7.com ABCDÿ
Here's another approach, if you know how to use a hex editor:

* Put in the file the line
ultima7.com ABCDE
* Open the file with a hex editor
* In the file, you should see the hex string "41 42 43 44 45" (this is "ABCDE" in hexadecimal ASCII).
* Change the "45" to "FF", then save the file.

This approach avoids having to use an ALT code or having to type a character that is not found on a US keyboard.

(In actual DOS, you could use the DEBUG.COM program to do this hex edit.)