Lotr Bfme 2 Rotwk Cheat Codes. Bfme 2 Rotwk 01. Battle for middle earth 1 3 bfme 2 rotwk 01 battle for middle earth 1 patch windows 7 bfme 2 rotwk 01 the battle for middle earth ii old s. Ben 10 Protector Of Earth Psp Iso Google Drive. Sea Level Simulator Google Earth. Bbc Bitesize Earth Sun And Moon. The Lord of the Rings Battle for Middle Earth II is an Action game and published by Electronic Arts released on 28 November, 2006 and designed for Microsoft Windows.The Rise of the Witch-king tells the story of evil Witch king’s rise to power, domination of Angmar and invasion of great kingdom of Arnor, home to Aragorns ancestors.The campaign.
Battle for Middle-earth I and II were two excellent RTS titles in which the armies of Tolkien’s iconic fantasy setting vie for supremacy, with the assistance of hero units from the books and films. The two games came out in 2004 and 2006 respectively, so they look pretty drab by modern standards but, thanks to their fans, mods are now available to bring both games into the era of HD graphics.
Sadly, these things aren’t up to me, but if they were, BFME2 would be on our list of the best strategy games on PC.
The mods are essentially model packs, featuring both reworked and all-new unit and hero models. Battle for Middle-earth 1: HD edition was released at the end of last month, while the sequel’s equivalent was first released in December last year, but is still being updated – BFME2 got its patch 2.02 v7 release just yesterday, and also has a version to support the popular Age of the Ring mod.
You can grab Battle for Middle-earth: HD edition here, and Battle for Middle-earth II: HD edition here. Installation looks easy – “simply download the file and run the installer,” the authors write. One catch: the original games aren’t available any more, digitally or otherwise, so you’ll have to dig out your old discs.
Metal gear solid 3 subsistence code breaker game. Original publishers EA were forced to switch off the official servers on New Year’s Eve 2010 due to the expiration of their Lord of the Rings videogame licence, but you can still play multiplayer games of BFME 1, 2, and Rise of the Witch-King via the T3A: Online unofficial server. Best of all, the HD edition mods are intercompatible, meaning you can use them online even if your opponent doesn’t have them installed.
REQUIRES WINDOWS 10An install wrapper for Lord of the Rings: Battle for Middle-Earth 2 .iso files, it'll mount the .iso files, run the installer for you and apply the no cd crack so that you don't need to re-mount the .iso files everytime you run the game.
Contents
Disclaimer
This project does not include any game files or serial keys.You'll need to provide those yourself to use this.
Overview
This is an install wrapper for the .iso files of Lord of the Rings: Battle for Middle-Earth 2 and it's expansion. It's written in C, except for the PowerShell scripts that to mount the .iso files (natively, which is the part that requires win10) and then runs the game installer on the disk.I've also included a script that applies to no cd crack so that the .iso doesn't need to be mounted everytime you want to play.
I know the entire project seems a little unecessary, but I made it for some friends of mine that aren't tech-savvy enough to figure out how to mount .iso files, etc.
It would make more sense to have written the C portion of this in something like Python. If I ever need to re-purpose this for any other .iso files then I might rewrite it in Python and make it less usecase specific.
Requirements
For information on the game's system requirements, see docs/requirements.txt
Windows 10I insisted on using the native mounting feature added in Windows 10 because I like to try and stay minimal (I also thought it was pretty cool that I was able to do this in PowerShell).Obviously it also needs to be Windows because the .iso files have windows executable installers on and install windows versions of the game. I don't think Linux versions exist, but if you want to play it on Linux then this is useless because you'll need to do something with the game files (like run it in WINE or something).
Usage
For information on the game's system requirements, see docs/instructions.txt
- Add the Battle for Middle-Earth 2 .iso to
game_files/bfme2/
- Add the Rise of the Witch-King .iso to
game_files/rotwk/
- Run
bfme2-installer.exe
as an Administrator
What bfme2-installer does:
- Install
- Mounts the respective .iso (using Windows 10's native mounting feature)
- Runs the installer on the disc
- Dismounts the respective .iso file
- Apply crack
- Checks if the game is installed via the Registry (HKLM:SOFTWAREWOW6432NodeElectronic Arts*) and data files directory ($env:APPDATA+'*')
- Copies the crack file (no-cd crack) to the install directory
- Sets the options.ini file (found in the data files directory); this stops the game crashing on startup and sets the default resolution to 1920x1080.
Compiling
Compiling is really simple, so I didn't bother with a Makefile or anything.
gcc srcbfme2-installer.c srclibs* -o bfme2-installer.exe
- Done!
If you want to set an icon for the executable (as I have for the current release):
windres srcbfme2-installer.rc -o srcbfme2-installer.o
gcc srcbfme2-installer.c srclibs* srcbfme2-installer.o -o bfme2-installer.exe
- Done!