VOGONS


First post, by embernator

User metadata
Rank Newbie
Rank
Newbie

I have the XCOM Apocolypse CD and I downloaded dosbox, but I have no idea how to install XCOM now. I really know nothing about computers or dos, so if anyone could give me some idiot proof directions it would be really nice!

I have looked at another thread about installing XCOM, but it was way over my head. 😵

Thanks!

Reply 1 of 4, by eL_PuSHeR

User metadata
Rank l33t++
Rank
l33t++

It should be somenthing like...

mount c c:\oldgames

(folder 'oldgames' must exist in C: - Create it with Windows Explorer)

mount d f:\ -t cdrom

(assuming F is your cd-rom drive. Change it as needed)

D:
d:\>install

(it might be a different command, do a dir to find out if install doesn't work)

(after installation is completed)

C:
cd xcom (if you installed it in a folder with that name)
C:\XCOM\>xcom

(or whatever is used to launch game. Again, change it if needed. Issue a DIR command to see available executable files)

And that's all.

Intel i7 5960X
Gigabye GA-X99-Gaming 5
8 GB DDR4 (2100)
8 GB GeForce GTX 1070 G1 Gaming (Gigabyte)

Reply 2 of 4, by MiniMax

User metadata
Rank Moderator
Rank
Moderator

What a coincidence. I just bought X-COM Apocalypse today!

I will be back later with instructions.

In the mean time read my 60 Seconds Guide to DOSBox (and don't just read it - follow it too).

If that doesn't help, come back with details on how you mounted your C and D drives, how you did the install, how you configured sound, music etc.

Reading the aptly named README file will be a good idea too.

DOSBox 60 seconds guide | How to ask questions
_________________
Lenovo M58p | Core 2 Quad Q8400 @ 2.66 GHz | Radeon R7 240 | LG HL-DT-ST DVDRAM GH40N | Fedora 32

Reply 4 of 4, by MiniMax

User metadata
Rank Moderator
Rank
Moderator

This is what I ended up with:

# Title:        X-COM Apocalypse version 1.00
# Developer: Mythos Games Ltd
# Publisher: Microprose Ltd
# Year: 1997
# Genre: Strategy
# Status: Commercial
#
# Link: http://en.wikipedia.org/wiki/X-COM:_Apocalypse
# Link: http://www.gamefaqs.com/computer/doswin/game/36014.html
# Link: http://store.steampowered.com/app/7660/
#
# MD5-sum: acb1f2a93c6de9ae0efd6e894abd45b3 *SETUP.EXE
# MD5-sum: 867f7997fae1714313b873f15359c4fb *XCOMAPOC.EXE
#
# Archives:
# Run: C:\XCOMA\XCOMAPoc.Exe
# Setup: C:\XCOMA\Setup.Exe
# Save-games: C:\XCOMA\Savegame\*.*
# Game-configs: C:\XCOMA\XCOM3.Cfg C:\XCOMA\Options.Dat
#
# DOSBox: 0.72 (Windows XP)
# Config-by: MiniMax

[sdl]
# Using an output method like 'overlay' that supports hardware
# scaling to a window twice the resolution (1280x960) works nicely
# for me.

output=overlay
windowresolution=1280x960

[cpu]
# X-COM Apocalypse is a 1997 game and requires a lot of CPU cycles
# for the animations and video sequences to flow. Choosing the fast
# dynamic core and limit cycles to max 80% works nicely for me.
#
# OBS: Unless the installer also gets a cycle-boost it will hang (or
# maybe it is just taking a REALLY long time?) when trying to
# detect the CD-ROM speed. Anyway - the cycle boost also helps
# making the install & copying process run faster (but a full
# install still takes a lot of time!).

core=dynamic
cycles=max 80%

[autoexec]
@ echo off
keyb sv

rem +---------------------------------------------------------------
rem ! Mount the virtual harddisk and the CD-ROM.
rem !
rem ! OBS: A full install of X-COM Apocalypse requires 200 MB of
rem ! hard-disk space. DOSBox defaults to just 110 MB, but
rem ! with -freesize we can ask for more.
rem +---------------------------------------------------------------

mount C "C-drive" -freesize 250
mount D "D:\" -t cdrom
echo.
Show last 40 lines

rem +---------------------------------------------------------------
rem ! Are we ready to run the software, or do we need to install it
rem ! first?
rem +---------------------------------------------------------------

if exist C:\XCOMA\XCOMApoc.Exe goto Ready

:Install

rem +---------------------------------------------------------------
rem ! Install the software from the CD-drive using the supplied
rem ! installer. The installer will also invoke the setup utility.
rem !
rem +---------------------------------------------------------------

D:
cd \
echo Installing X-COM Apocalypse.

Install
if not exist C:\XCOMA\XCOMApoc.Exe goto Done

:Ready

rem +---------------------------------------------------------------
rem ! Switch to the harddisk, and inform the user about which
rem ! command to use for running the software.
rem +---------------------------------------------------------------

C:
cd \XCOMA

echo Type XCOMAPOC to start the game.
echo Type SETUP to reconfigure sound settings.

goto Done

:Done
echo.