You are here

Portable Age of Empires Gold

13 posts / 0 new
Last post
D4vid
Offline
Last seen: 17 years 3 months ago
Joined: 2006-08-25 17:01
Portable Age of Empires Gold

Hello!

I am trying to make a portable launcher for the wonderful game Age of Empires Gold.
But there is one slight problem that i would need some help with.
Because i get this error message when the launcher tries to start age of empires.

You know shortcuts, when you choose properties on them they have a field called Start in, in the "start in" field there is the path to the directory where the target file is located. The thing is that my age of empires launcher gets the same error message that you would get if you would have messed up the "start in" field in a shortcut to age of empires.
So can you in someway use something similar to "Start in" in NSIS?

Thankyou very much!

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 7 months ago
Joined: 2006-01-06 21:27
Hmm

I don't think so. $EXEDIR is the folder that the installer executable is running in.
----
R McCue
PortaBlog Home and My Website
And before anyone complains about the grammar, I'm so jetlagged that my
hands aren't even in the same time zone...

"If you're not part of the solution, you're part of the precipitate."

D4vid
Offline
Last seen: 17 years 3 months ago
Joined: 2006-08-25 17:01
Solved it!

I solved the problem.
In the launcher PStart you can choose Home directory wich is the same as Start in.
So i just choosed the directory where the original Age of Empires exe wa located and now it works perfectly Smile

Now i need some betatesters. But if you want to be a beta tester you must own age of empires gold edition.

//D4vid

Superstick 1Gb

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 7 months ago
Joined: 2006-01-06 21:27
Release the launcher

Without the Age of Empires files.
----
R McCue
PortaBlog Home and My Website
And before anyone complains about the grammar, I'm so jetlagged that my
hands aren't even in the same time zone...

"If you're not part of the solution, you're part of the precipitate."

D4vid
Offline
Last seen: 17 years 3 months ago
Joined: 2006-08-25 17:01
Yes i will only give you the

Yes i will only give you the launcher.
You have to aquire the Age of empires files yourself.
If you have age of empires you just have to install it and then copy the files to a directory.
Contact me if you're interested.

//D4vid

Superstick 1Gb

cavedeamon
Offline
Last seen: 15 years 11 months ago
Joined: 2006-05-20 21:58
What version

I would like it but i have Age of Empires 2 and 3. what version is it? You can send me it at cavedeamon@gmail.com if it is for 2.

D4vid
Offline
Last seen: 17 years 3 months ago
Joined: 2006-08-25 17:01
I'm sorry but this is for

I'm sorry but this is for the original Age of Empires and its expansion pack.
A age of empires 2 launcher is on my list though.

//D4vid

Superstick 1Gb

cylitch
Offline
Last seen: 17 years 5 months ago
Joined: 2006-08-28 09:46
Sure I will beta test

Hi,

I love all the Age of Empire games and have gold two and three. I would love to beta test your portable launcer for AoE. You can e-mail it to cylitch@gmail.com

James.Hoffman
Offline
Last seen: 17 years 2 months ago
Joined: 2007-02-07 18:39
Can you send it to me too at

Can you send it to me too at james.hoffman7@gmail.com

TaffinFoxcroft
TaffinFoxcroft's picture
Offline
Last seen: 10 years 4 months ago
Developer
Joined: 2006-12-14 17:24
would

you be able to send it to me at taneth111@gmail.com?
I will test it with expansion, without expansion and the demo.

But there’s no sense crying over every mistake,
You just keep on trying till you run out of cake.

Ph4n70m
Ph4n70m's picture
Offline
Last seen: 1 year 11 months ago
Joined: 2007-01-12 19:22
I made a launcher...

Hello...
I really like the idea of make AoE portable... And i made a launcher for this...

First I made a batch file with this content:

run.cmd
------------------------------------------

@echo off
cls
set AOE_DIR=%~dp0\
regedit /s settings\add.reg
reg add "HKLM\Software\Microsoft\DirectPlay\Applications\Age Of Empires" /v Path /d "%AOE_DIR%" /f
reg add "HKLM\Software\Microsoft\DirectPlay\Applications\Age Of Empires" /v CurrentDirectory /d "%AOE_DIR%" /f
reg add "HKLM\Software\Microsoft\Games\Age of Empires\1.00" /v InstallationDirectory /d "%AOE_DIR%" /f
reg add "HKLM\Software\Microsoft\Games\Age of Empires\1.00" /v CDPath /d "%AOE_DIR%" /f

start /wait empires.exe

regedit /s settings\delete.reg

------------------------------------------

And on folder "settings" another 2 files

add.reg
------------------------------------------

REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\DirectPlay\Applications\Age Of Empires]
"Guid"="{3422E982-1A89-11d1-B093-00A024C74776}"
"File"="Empires.Exe"
"CommandLine"="lobby Limit=200"
"Path"=""
"CurrentDirectory"=""

[HKEY_CURRENT_USER\Software\Microsoft\Games\Age of Empires\1.00]
"Music Volume"=dword:00000000
"Sound Volume"=dword:00000000
"Screen Size"=dword:00000320
"Rollover Text"=dword:00000001
"Mouse Style"=dword:00000002
"Game Speed"=dword:00000014
"Difficulty"=dword:00000004
"Scroll Speed"=dword:00000036
"Default Age Of Empires Player Name"="King Phantom"
"Default Age Of Empires Multiplayer Service"="Conexão TCP/IP Internet para o DirectPlay"
"Default Age Of Empires MP Gamename"="_"
"Path Finding"=dword:00000001
"MP Path Finding"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Games\Age of Empires\1.00]
"CDPath"=""
"PID"="55468-442-0831934-14051"
"InstallType"="1"
"InstallationDirectory"=""
"Zone"="http://www.zone.com/asp/aoferedir.asp"
"Launched"="1"
"VersionType"="RetailVersion"
"Custom Mouse"=dword:00000000
"Game File Number"=dword:00000000
"Version"="1.0c"

------------------------------------------

delete.reg
------------------------------------------

REGEDIT4

[-HKEY_LOCAL_MACHINE\Software\Microsoft\DirectPlay\Applications\Age Of Empires]

[-HKEY_CURRENT_USER\Software\Microsoft\Games\Age of Empires]

[-HKEY_LOCAL_MACHINE\Software\Microsoft\Games\Age of Empires]

------------------------------------------

I hope I have helped...

[Moderator RM: Use <pre> not <strong> around code blocks]

Bensawsome
Offline
Last seen: 2 years 2 months ago
Joined: 2006-04-22 19:27
Nice. Can you send a copy of

Nice. Can you send a copy of it to me? bensawsome2(at)gmail(dot).com
Thanks
Bensawsome
AKA BJ

"It's not winning that matters, it's winning in style that matters..."

"Always keep your words soft and sweet, just in case you have to eat them."

 iLike Macs, iPwn, However you put it... Apple is better ^_^ 
"Claiming that your operating system is the best in the world because more people use it is like saying McDonalds makes the best food in the world..."

Ph4n70m
Ph4n70m's picture
Offline
Last seen: 1 year 11 months ago
Joined: 2007-01-12 19:22
Launcher...
Topic locked