mirror of https://github.com/tiyn/wiki
parent
4eb00a7c5e
commit
bba568ef27
@ -0,0 +1,39 @@
|
|||||||
|
# Medieval 2: Total War
|
||||||
|
|
||||||
|
Medieval 2: Total War is a game from the [Total War](https://www.totalwar.com)
|
||||||
|
series.
|
||||||
|
|
||||||
|
## Mods
|
||||||
|
|
||||||
|
### Third Age: Total War - Divide and Conquer
|
||||||
|
|
||||||
|
[Divide and Conquer](https://www.moddb.com/mods/divide-and-conquer) is a submod
|
||||||
|
for the [Third Age Total War](https://www.moddb.com/mods/third-age-total-war)
|
||||||
|
mod.
|
||||||
|
It is a Lord of the Rings themed mod, not only adding a large array of new
|
||||||
|
units, castles and factions, but converting it to a setting based in
|
||||||
|
Middle-earth.
|
||||||
|
|
||||||
|
The installation guide for this mods is based on
|
||||||
|
[Laetus'](http://www.twcenter.net/forums/showthread.php?724777-Third-Age-and-Linux)
|
||||||
|
post in the Total War Center Forum .
|
||||||
|
For installation the latest version needs to be downloaded from
|
||||||
|
[MOD DB](https://www.moddb.com/mods/divide-and-conquer/downloads/).
|
||||||
|
Following this run the executable (`.exe`) file and select not the game but a
|
||||||
|
newly createt folder.
|
||||||
|
If you are on linux use [wine](../linux/wine.md) for this.
|
||||||
|
The executable will create many files in the directory.
|
||||||
|
The important files are located in a subdirectory called `mods`.
|
||||||
|
If you are on linux you need to rename all the files and directories under the
|
||||||
|
`mods` folder to lowercase.
|
||||||
|
This can be done by running
|
||||||
|
`find . -depth -exec perl-rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \;` after
|
||||||
|
changing the working directory to the `mods` folder.
|
||||||
|
This concludes the extra steps for linux systems.
|
||||||
|
Rename the directory below the `mods` folder to `third_age`.
|
||||||
|
`third_age` now has to be moved to the modding folder of Medieval 2: Total War.
|
||||||
|
This folder named `mods` too can be found on the top level of the game
|
||||||
|
directory.
|
||||||
|
Lastly you need to change the launch options in steam.
|
||||||
|
Open `Properties` of Medieval 2: Total War and set the launch options under the
|
||||||
|
general tab to `--features.mod=mods/third_age`
|
@ -0,0 +1,35 @@
|
|||||||
|
# Minecraft
|
||||||
|
|
||||||
|
[Minecraft](https://www.minecraft.net) is a sandbox video game created by "Notch".
|
||||||
|
|
||||||
|
## Server
|
||||||
|
|
||||||
|
A server can be setup via docker with the [linuxserver image](../docker-images/itzg_-_minecraft-server.md).
|
||||||
|
|
||||||
|
## Client
|
||||||
|
|
||||||
|
There are different Minecraft Clients available:
|
||||||
|
|
||||||
|
- The standard (Java) Minecraft Client can be downloaded at the [official website](https://minecraft.net/en-us/get-minecraft)
|
||||||
|
- [MultiMC5](./multimc5.md) is a custom Minecraft launcher that allows multiple
|
||||||
|
installations at once.
|
||||||
|
|
||||||
|
## DNS
|
||||||
|
|
||||||
|
### Link Minecraft to a subdomain
|
||||||
|
|
||||||
|
To link Minecraft to one of your subdomains you need to add a [DNS](../dns.md)
|
||||||
|
SRV-record:
|
||||||
|
|
||||||
|
```txt
|
||||||
|
type: SRV
|
||||||
|
name: mine (or alternative subdomain)
|
||||||
|
service: _minecraft
|
||||||
|
proto: TCP
|
||||||
|
TTL: <configure to your liking>
|
||||||
|
class: IN
|
||||||
|
priority: 0
|
||||||
|
weight: 4
|
||||||
|
port: 25565 (or your minecraft port)
|
||||||
|
target: mine.<domain>.<TLD>
|
||||||
|
```
|
@ -0,0 +1,17 @@
|
|||||||
|
# MultiMC5
|
||||||
|
|
||||||
|
[MultiMC5](https://multimc.org) is a custom launcher that allows multiple Minecraft
|
||||||
|
instances installed at once.
|
||||||
|
|
||||||
|
## Add OptiFine to a Minecraft instance
|
||||||
|
|
||||||
|
[OptiFine](https://www.optifine.net/home) is a Minecraft optimization mod.
|
||||||
|
This guide shows how to add optifine to an instance on windows.
|
||||||
|
|
||||||
|
- If not already done create an instance on MultiMC5
|
||||||
|
- Download the according version of OptiFine from their [website](https://www.optifine.net/downloads)
|
||||||
|
- Open the Minecraft standard (Java) launcher and start the according version at
|
||||||
|
least once
|
||||||
|
- Open the OptiFine jar, click `Extract` and save the extracted OptiFine to a folder
|
||||||
|
- Edit the according instance and select `Version`, then select `Add to Minecraft.jar`
|
||||||
|
and select the extracted OptiFine
|
@ -0,0 +1,26 @@
|
|||||||
|
# Steam
|
||||||
|
|
||||||
|
[Steam](https://store.steampowered.com/) is a software for digital game
|
||||||
|
destribution.
|
||||||
|
|
||||||
|
## Proton
|
||||||
|
|
||||||
|
### Errors with the Wine prefix of a specific game
|
||||||
|
|
||||||
|
The last ressort for fixing problems that are related to the wine prefix of a
|
||||||
|
game is to delete the Wine prefix.
|
||||||
|
For this the id of the steam game first has to be known.
|
||||||
|
This is done by navigating to the steam website or the community page of the
|
||||||
|
specific game.
|
||||||
|
The URLs will have one of the following forms where the game id can be read:
|
||||||
|
|
||||||
|
```
|
||||||
|
http://steamcommunity.com/app/<game id>/
|
||||||
|
http://store.steampowered.com/app/<game id>/
|
||||||
|
```
|
||||||
|
|
||||||
|
After that navigate to the place your steam games are stored.
|
||||||
|
You can remove `<steam location>/steamapps/compatdata/<game id>` to reset the
|
||||||
|
Wine prefix completely.
|
||||||
|
It is recommended to keep a backup of the folder containing the old Wine prefix
|
||||||
|
as it stores game saves and other important data, that can be useful.
|
Loading…
Reference in new issue