Update of exercises
|
@ -0,0 +1,37 @@
|
||||||
|
# String in Großbuchstaben umwandeln
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
* Daten von der Kommandozeile lesen.
|
||||||
|
* Einfache String-Operationen.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.grossmacher](../sources/src/main/java/pr2/auffrischung/grossmacher).
|
||||||
|
|
||||||
|
Schreiben Sie bitte ein Programm mit der Hauptklasse `Grossmacher`, das einen Text als Parameter auf der Kommandozeile nimmt, diesen in Großbuchstaben umwandelt und dann, zusammen mit der enthaltenen Anzahl von Zeichen, wieder auf der Konsole ausgibt.
|
||||||
|
|
||||||
|
```console
|
||||||
|
> java Grossmacher "Hallo, dies ist ein Test"
|
||||||
|
Ergebnis: HALLO, DIES IST EIN TEST
|
||||||
|
Zeichen : 24
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Labeled Break
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
Ein labeled break verwenden.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.labeled_break](../sources/src/main/java/pr2/auffrischung/labeled_break).
|
||||||
|
|
||||||
|
Schreiben Sie eine Methode `suche`, die ein zweidimensionales `int`-Array übergeben bekommt und das erste Element sucht, das keine `0` ist. Wenn ein solches gefunden wird, soll die Methode `true` zurückgeben, andernfalls `false`.
|
||||||
|
|
||||||
|
Verwenden Sie bitte ein **labeled break** für Ihre Implementierung.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,37 @@
|
||||||
|
# Passwortbewertung
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
Einfache String-Verarbeitung.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.password](../sources/src/main/java/pr2/auffrischung/password).
|
||||||
|
|
||||||
|
Schreiben Sie eine Klasse `PasswortChecker` mit einer Methode `checkPassword`, die die Qualität von Passwörtern bewertet. Die Methode vergibt Punkte für bestimmte Qualitätskriterien des Passworts. Es gibt jeweils einen Punkt für:
|
||||||
|
|
||||||
|
* Das Passwort ist mindestens 8 Zeichen lang.
|
||||||
|
* Das Passwort enthält Groß- und Kleinbuchstaben.
|
||||||
|
* Das Passwort enthält Buchstaben und Zahlen.
|
||||||
|
* Das Passwort enthält mindestens eines der Sonderzeichen `!"()%`
|
||||||
|
|
||||||
|
Testen Sie die Methode mit verschiedenen Passwörtern.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,32 @@
|
||||||
|
# printf mit Formatstring
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
Formatierung mit Formatstrings.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.printf](../sources/src/main/java/pr2/auffrischung/printf).
|
||||||
|
|
||||||
|
Schauen Sie sich die JavaDoc der Methode `printf` in der Klasse `PrintStream` an.
|
||||||
|
|
||||||
|
Schreiben Sie eine Methode `printDouble`, die eine beliebige double-Zahl mit immer genau drei Nachkommastellen ausgibt. Testen Sie die Methode mit einigen Testzahlen.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Maximum in einem Array suchen
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
Über Arrays iterieren.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.suchemax](../sources/src/main/java/pr2/auffrischung/suchemax).
|
||||||
|
|
||||||
|
Schreiben Sie bitte eine Klasse `GroessteZahl` mit der Methode `sucheMax`, die ein `int`-Array übergeben bekommt und die größte Zahl aus diesem heraussucht und zurückgibt.
|
||||||
|
|
||||||
|
Testen Sie die Methode mit einigen Testzahlen.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Taschenrechner
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
`case` verwenden.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.taschenrechner](../sources/src/main/java/pr2/auffrischung/taschenrechner).
|
||||||
|
|
||||||
|
Schreiben Sie eine Klasse `Taschenrechner`, die genau eine Methode namens `rechne` hat. Die Methode nimmt zwei `double`-Werte, die die Operanden darstellen und ein `char`, das den Operator symbolisiert. Die Methode soll Addition (`+`), Subtraktion (`-`), Multiplikation (`*`), Division (`/`) und Potenzieren (`^`) unterstützen. Geben Sie das Ergebnis der Rechnung als `double`-Wert zurück und behandeln Sie den Fall, dass ein ungültiger Operator übergeben wird, indem Sie `NaN` (Not a Number) zurückgeben.
|
||||||
|
|
||||||
|
Testen Sie Ihre Klasse und Methode mit einigen einfachen Rechnungen.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Quine
|
||||||
|
|
||||||
|
📆 **Fällig: 14.03.2023** 📆
|
||||||
|
|
||||||
|
## Lernziel
|
||||||
|
|
||||||
|
Escape-Sequenzen und String-Verarbeitung.
|
||||||
|
|
||||||
|
## Aufgabe
|
||||||
|
|
||||||
|
Gehen Sie in das Paket [pr2.auffrischung.quine](../sources/src/main/java/pr2/auffrischung/quine).
|
||||||
|
|
||||||
|
Schreiben Sie ein Programm, das sich selbst auf der Console ausgibt. Das Programm soll nicht seinen Quelltext lesen und ausgeben, sondern seinen eigenen Quellcode enthalten.
|
||||||
|
|
||||||
|
Hinweis: Die Lösung wird deutlich einfacher, wenn Sie `printf` und `String.replace` verwenden. Diese Aufgabe ist relativ komplex, vergeuden Sie also nicht zu viel Zeit und geben Sie auf, wenn Sie die Lösung nicht finden.
|
||||||
|
|
||||||
|
|
||||||
|
## Abgabe (optional)
|
||||||
|
|
||||||
|
__Sie müssen keine Lösung für diese Aufgabe einreichen, können es aber, wenn Sie wollen.__
|
||||||
|
|
||||||
|
Wenn Sie die Aufgabe abgeben wollen, folgen Sie der unten stehenden Anleitung.
|
||||||
|
|
||||||
|
Alle Abgaben für die Vorlesung erfolgen über `git`.
|
||||||
|
|
||||||
|
Hierzu gehen Sie wie folgt vor:
|
||||||
|
|
||||||
|
1. Öffnen Sie eine Kommandozeile (Terminal).
|
||||||
|
2. Gehen Sie in Ihr Working Directory.
|
||||||
|
3. Rufen Sie mit `bin/submit.sh` das Skript auf, das die Lösungen testet und kompiliert. Wenn Maven eine Fehlermeldung zeigt, beheben Sie diese zuerst, bevor Sie mit dem nächsten Schritt fortfahren.
|
||||||
|
4. Wenn Sie Meldung "✅ Projekt gebaut" bekommen, checken (comitten) Sie Ihre Änderungen in `git` ein.
|
||||||
|
5. Rufen Sie mit `bin/submit.sh` erneut das Skript auf. Wenn alles klappt, bekommen Sie die Anzeige "✅ Aktuelle Lösungen eingereicht" und Ihre Lösung ist im System angekommen.
|
|
@ -0,0 +1,57 @@
|
||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
# Fail on first error
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "***************************************************************"
|
||||||
|
echo "Abgabe einreichen"
|
||||||
|
echo "***************************************************************"
|
||||||
|
echo ""
|
||||||
|
cd sources
|
||||||
|
|
||||||
|
# Test, if project builds
|
||||||
|
echo "------------------------------------------------------------------"
|
||||||
|
echo "Build..."
|
||||||
|
echo ""
|
||||||
|
if ! mvn; then
|
||||||
|
echo -e "\e[31m"
|
||||||
|
echo "💣 Projekt baut nicht und kann deswegen nicht abgegeben werden."
|
||||||
|
echo "💣 Bitte beheben Sie alle gemeldeten Fehler und versuchen Sie "
|
||||||
|
echo "💣 es dann erneut "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo -e "\e[32m"
|
||||||
|
echo "✅ Projekt gebaut "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Test, if all changes are committed
|
||||||
|
echo "------------------------------------------------------------------"
|
||||||
|
echo "Teste git-Staus..."
|
||||||
|
if ! git status | grep -q "nothing to commit, working tree clean"; then
|
||||||
|
echo -e "\e[31m"
|
||||||
|
echo "💣 Bitte checken Sie alle Änderungen per git ein. "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo -e "\e[32m"
|
||||||
|
echo "✅ Alle Dateien eingecheckt "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Submit
|
||||||
|
echo "------------------------------------------------------------------"
|
||||||
|
echo "Sende Lösung..."
|
||||||
|
if ! git push origin master; then
|
||||||
|
echo -e "\e[31m"
|
||||||
|
echo "💣 Push nicht erfolgreich. Bitte beheben Sie den Fehler und "
|
||||||
|
echo "💣 starten Sie das Skript erneut. "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo -e "\e[32m"
|
||||||
|
echo "✅ Aktuelle Lösungen eingereicht "
|
||||||
|
echo -e "\e[0m"
|
||||||
|
fi
|
|
@ -0,0 +1,32 @@
|
||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
# Fail on first error
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Clone repo if not already present
|
||||||
|
if [ ! -d ".assignments" ]; then
|
||||||
|
git clone gitea@gitty.informatik.hs-mannheim.de:pr2-lecture/assignments.git .assignments
|
||||||
|
mkdir -p sources/src/main/java
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Sync exercises with local directory
|
||||||
|
echo "---------------------------------------------------------------"
|
||||||
|
echo "Hole neue Aufgaben und Quelltexte "
|
||||||
|
echo "---------------------------------------------------------------"
|
||||||
|
(cd .assignments && git pull origin master)
|
||||||
|
rsync --ignore-existing -raz .assignments/sources/ sources/
|
||||||
|
|
||||||
|
for dir in .assignments/Assignment_*; do
|
||||||
|
rsync --ignore-existing -raz "$dir" ./
|
||||||
|
done
|
||||||
|
|
||||||
|
# Assignment files
|
||||||
|
rsync --ignore-existing -raz --include='Assignment_*' --exclude='*' .assignments/* ./
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
rsync -raz .assignments/sources/lib/ ./sources/lib
|
||||||
|
|
||||||
|
cp .assignments/readme.md README.md
|
||||||
|
|
||||||
|
# Update the scripts
|
||||||
|
cp -R .assignments/bin ./
|
|
@ -0,0 +1,9 @@
|
||||||
|
## Softwareausstattung
|
||||||
|
|
||||||
|
* **Ubuntu Linux** als Installation oder VM
|
||||||
|
* **Java JDK 18**<br>`sudo apt install openjdk-18-jdk openjdk-18-source openjdk-18-doc`
|
||||||
|
* **Git** und Git-Frontends<br>`sudo apt install git meld git-cola`
|
||||||
|
* **Maven 3.6 oder neuer**<br>`sudo apt install maven`
|
||||||
|
* **Eclipse**<br>Von der [Webseite](https://www.eclipse.org/downloads/) herunterladen und installieren. Bitte verwenden Sie die Version **Eclipse IDE for Java Developers**
|
||||||
|
|
||||||
|
Eine Anleitung zur Installation von Ubuntu Linux finden Sie [hier](https://github.com/informatik-mannheim/linux-hsma/blob/master/doc/readme.md). Diese Anleitung bezieht sich auf Ubuntu 21.04, funktioniert so aber auch mit einer neueren Version.
|
|
@ -0,0 +1,59 @@
|
||||||
|
# Programmieren 2 (Sommersemester 2023)
|
||||||
|
|
||||||
|
## Aufbau der Veranstaltung
|
||||||
|
|
||||||
|
Die folgende Tabelle zeigt Ihnen die Themen der Woche und welche Kapitel Sie bis wann vorbereitet haben müssen. Da die Veranstaltung als **Inverted Classroom** durchgeführt wird, ist es **Ihre Aufgabe** das entsprechende **Kapitel** im Skript **bis zum genannten Termin** durchgearbeitet zu haben.
|
||||||
|
|
||||||
|
| # | 📢 Motto | 🎓 Themen | 📚 Kapitel | 📆 bis |
|
||||||
|
|----|--------------------------------------------|-------------------------------------------------------|--------------------|----------|
|
||||||
|
| 1 | Auffrischen, einchecken und loslegen | Auffrischung | [1][1] | ¹ |
|
||||||
|
| 2 | Wie Julius Caesar programmieren | JUnit, JavaDoc, Programmierstil, Pakete, Module, JARs | [2][2], [3][3] | **19.3** |
|
||||||
|
| 3 | Erben und vererben | Vererbung, Überladen, Verdecken, Konstruktoren | [4][4] | **26.3** |
|
||||||
|
| 4 | Verhaltenstherapie für Klassen | Überschreiben, Polymorphie, static, final | [4][4] | **02.4** |
|
||||||
|
| 5 | Mit Interfaces geht es noch abstrakter | Interfaces, abstrakte Klassen, SOLID, STUPID | [5][5] | **10.4** |
|
||||||
|
| 6 | Wer sortiert, muss trotzdem suchen | Suchen, Sortieren, Regex | [6][6] | **16.4** |
|
||||||
|
| 7 | Geschenkverpackungen und andere Feinheiten | Object, Wrapper, Optional, Enums, Records | [7][7], [8][8] | **23.4** |
|
||||||
|
| 8 | Wenn es mal schief geht, Ausnahmen | Exceptions, try, catch | [9][9] | **01.5** |
|
||||||
|
| 9 | Rein oder raus, die Daten müssen fließen | Input/Output mit Streams und Reader/Writer | [10][10] | **07.5** |
|
||||||
|
| 10 | One size fits all, mit generischen Typen | Generische Typen, Wildcards | [11][11] | **14.5** |
|
||||||
|
| 11 | Matroschka-Klassen | Geschachtelte Klassen, Lambdas | [12][12] | **21.5** |
|
||||||
|
| 12 | Daten brauchen Struktur | Abstrakte Datentypen | [13][13] | **04.6** |
|
||||||
|
| 13 | Objekte sammeln | Collections und Streams | [14][14], [15][15] | **11.6** |
|
||||||
|
| 14 | Parallel läuft es schneller | Threads, Probleme der Thread-Programmierung | [16][16] | **18.6** |
|
||||||
|
|
||||||
|
¹ = Wird als aus PR1 bekannt vorausgesetzt
|
||||||
|
|
||||||
|
[1]: https://smits-net.de/files/pr2/html/01_auffrischung/
|
||||||
|
[2]: https://smits-net.de/files/pr2/html/02_intro/
|
||||||
|
[3]: https://smits-net.de/files/pr2/html/03_strukturierung/
|
||||||
|
[4]: https://smits-net.de/files/pr2/html/04_vererbung/
|
||||||
|
[5]: https://smits-net.de/files/pr2/html/05_interfaces/
|
||||||
|
[6]: https://smits-net.de/files/pr2/html/06_algorithmen/
|
||||||
|
[7]: https://smits-net.de/files/pr2/html/06_algorithmen/
|
||||||
|
[8]: https://smits-net.de/files/pr2/html/08_enumerationen/
|
||||||
|
[9]: https://smits-net.de/files/pr2/html/09_exceptions/
|
||||||
|
[10]: https://smits-net.de/files/pr2/html/10_io/
|
||||||
|
[11]: https://smits-net.de/files/pr2/html/11_generics/
|
||||||
|
[12]: https://smits-net.de/files/pr2/html/12_geschachtelte_klassen/
|
||||||
|
[13]: https://smits-net.de/files/pr2/html/13_datenstrukturen/
|
||||||
|
[14]: https://smits-net.de/files/pr2/html/14_collections/
|
||||||
|
[15]: https://smits-net.de/files/pr2/html/15_streams/
|
||||||
|
[16]: https://smits-net.de/files/pr2/html/16_threads/
|
||||||
|
|
||||||
|
## Assignments
|
||||||
|
|
||||||
|
Hier finden Sie die Assignments (Aufgaben) für die Vorlesung Programmieren 2 (PR2). Die Assignments sind unten, zusammen mit dem Fälligkeitsdatum, aufgelistet.
|
||||||
|
|
||||||
|
Die Bearbeitung der Aufgaben und das Erreichen einer hinreichend großen Zahl von Punkten sind die Voraussetzung für die Teilnahme an der Klausur.
|
||||||
|
|
||||||
|
Hinweise zur nötigen Softwareausstattung finden Sie [hier](help/softwareausstattung.md).
|
||||||
|
|
||||||
|
| # | Thema | Fällig am 📆 |
|
||||||
|
|----|-----------------------------------------------------------------|----------------|
|
||||||
|
| 1. | [String in Großbuchstaben umwandeln](Assignment_001/readme.md) | **14.03.2023** |
|
||||||
|
| 2. | [Labeled Break](Assignment_002/readme.md) | **14.03.2023** |
|
||||||
|
| 3. | [Passwortbewertung](Assignment_003/readme.md) | **14.03.2023** |
|
||||||
|
| 4. | [printf mit Formatstring](Assignment_004/readme.md) | **14.03.2023** |
|
||||||
|
| 5. | [Maximum in einem Array suchen](Assignment_005/readme.md) | **14.03.2023** |
|
||||||
|
| 6. | [Taschenrechner](Assignment_006/readme.md) | **14.03.2023** |
|
||||||
|
| 7. | [Quine](Assignment_007/readme.md) | **14.03.2023** |
|
|
@ -0,0 +1,203 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Checkstyle configuration that checks the sun coding conventions from:
|
||||||
|
|
||||||
|
- the Java Language Specification at
|
||||||
|
http://java.sun.com/docs/books/jls/second_edition/html/index.html
|
||||||
|
|
||||||
|
- the Sun Code Conventions at http://java.sun.com/docs/codeconv/
|
||||||
|
|
||||||
|
- the Javadoc guidelines at
|
||||||
|
http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
|
||||||
|
|
||||||
|
- the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
|
||||||
|
|
||||||
|
- some best practices
|
||||||
|
|
||||||
|
Checkstyle is very configurable. Be sure to read the documentation at
|
||||||
|
http://checkstyle.sf.net (or in your downloaded distribution).
|
||||||
|
|
||||||
|
Most Checks are configurable, be sure to consult the documentation.
|
||||||
|
|
||||||
|
To completely disable a check, just comment it out or delete it from the file.
|
||||||
|
|
||||||
|
Finally, it is worth reading the documentation.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
<!--
|
||||||
|
If you set the basedir property below, then all reported file
|
||||||
|
names will be relative to the specified directory. See
|
||||||
|
http://checkstyle.sourceforge.net/5.x/config.html#Checker
|
||||||
|
|
||||||
|
<property name="basedir" value="${basedir}"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks whether files end with a new line. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
|
||||||
|
<!-- <module name="NewlineAtEndOfFile"/> -->
|
||||||
|
|
||||||
|
<!-- Checks that property files contain the same keys. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
|
||||||
|
<module name="Translation"/>
|
||||||
|
|
||||||
|
<!-- Checks for Size Violations. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
||||||
|
<module name="FileLength"/>
|
||||||
|
|
||||||
|
<!-- Checks for whitespace -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
||||||
|
<module name="FileTabCharacter"/>
|
||||||
|
|
||||||
|
<!-- Miscellaneous other checks. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
||||||
|
<!--
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<property name="format" value="\s+$"/>
|
||||||
|
<property name="minimum" value="0"/>
|
||||||
|
<property name="maximum" value="0"/>
|
||||||
|
<property name="message" value="Line has trailing spaces."/>
|
||||||
|
</module>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<property name="ignorePattern" value="^.*//#.*|^.* \* @see .*|^import .*"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod"/>
|
||||||
|
<module name="JavadocType"/>
|
||||||
|
<module name="JavadocVariable">
|
||||||
|
<property name="scope" value="public"/>
|
||||||
|
</module>
|
||||||
|
<module name="JavadocStyle"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Naming Conventions. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_naming.html -->
|
||||||
|
<module name="ConstantName"/>
|
||||||
|
<module name="LocalFinalVariableName"/>
|
||||||
|
<module name="LocalVariableName"/>
|
||||||
|
<module name="MemberName"/>
|
||||||
|
<module name="MethodName"/>
|
||||||
|
<module name="PackageName">
|
||||||
|
<property name="format" value="^[a-z][a-z0-9_]+(\.[a-z][a-z0-9_]*)*$"/>
|
||||||
|
</module>
|
||||||
|
<module name="ParameterName"/>
|
||||||
|
<module name="StaticVariableName"/>
|
||||||
|
<module name="TypeName"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Headers -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_header.html -->
|
||||||
|
<!-- <module name="Header"> -->
|
||||||
|
<!-- The follow property value demonstrates the ability -->
|
||||||
|
<!-- to have access to ANT properties. In this case it uses -->
|
||||||
|
<!-- the ${basedir} property to allow Checkstyle to be run -->
|
||||||
|
<!-- from any directory within a project. See property -->
|
||||||
|
<!-- expansion, -->
|
||||||
|
<!-- http://checkstyle.sf.net/config.html#properties -->
|
||||||
|
<!-- <property -->
|
||||||
|
<!-- name="headerFile" -->
|
||||||
|
<!-- value="${basedir}/java.header"/> -->
|
||||||
|
<!-- </module> -->
|
||||||
|
|
||||||
|
<!-- Following interprets the header file as regular expressions. -->
|
||||||
|
<!-- <module name="RegexpHeader"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for imports -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_import.html -->
|
||||||
|
<module name="AvoidStarImport"/>
|
||||||
|
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
|
||||||
|
<module name="RedundantImport"/>
|
||||||
|
<module name="UnusedImports"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Size Violations. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
||||||
|
<module name="MethodLength">
|
||||||
|
<property name="countEmpty" value="false"/>
|
||||||
|
</module>
|
||||||
|
<module name="ParameterNumber"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for whitespace -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
||||||
|
<module name="EmptyForIteratorPad"/>
|
||||||
|
<module name="GenericWhitespace"/>
|
||||||
|
<module name="MethodParamPad"/>
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<property name="tokens" value="AT, INC, DEC, UNARY_MINUS, UNARY_PLUS, BNOT, LNOT, DOT, ARRAY_DECLARATOR, INDEX_OP"/>
|
||||||
|
</module>
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<property name="tokens" value="COMMA, SEMI, POST_INC, POST_DEC, ELLIPSIS, LABELED_STAT"/>
|
||||||
|
</module>
|
||||||
|
<module name="OperatorWrap"/>
|
||||||
|
<module name="ParenPad"/>
|
||||||
|
<module name="TypecastParenPad"/>
|
||||||
|
<module name="WhitespaceAfter"/>
|
||||||
|
<module name="WhitespaceAround"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Modifier Checks -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
|
||||||
|
<module name="ModifierOrder"/>
|
||||||
|
<!-- <module name="RedundantModifier"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for blocks. You know, those {}'s -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_blocks.html -->
|
||||||
|
<module name="AvoidNestedBlocks"/>
|
||||||
|
<module name="EmptyBlock"/>
|
||||||
|
<module name="LeftCurly"/>
|
||||||
|
<module name="NeedBraces"/>
|
||||||
|
<!-- <module name="RightCurly"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for common coding problems -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_coding.html -->
|
||||||
|
<!-- <module name="AvoidInlineConditionals"/> -->
|
||||||
|
<module name="EmptyStatement"/>
|
||||||
|
<module name="EqualsHashCode"/>
|
||||||
|
<module name="HiddenField">
|
||||||
|
<property name="ignoreConstructorParameter" value="true"/>
|
||||||
|
<property name="ignoreSetter" value="true"/>
|
||||||
|
</module>
|
||||||
|
<module name="IllegalInstantiation"/>
|
||||||
|
<module name="InnerAssignment"/>
|
||||||
|
<module name="MissingSwitchDefault"/>
|
||||||
|
<module name="SimplifyBooleanExpression"/>
|
||||||
|
<module name="SimplifyBooleanReturn"/>
|
||||||
|
|
||||||
|
<!-- Checks for class design -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_design.html -->
|
||||||
|
<!-- <module name="DesignForExtension"/> -->
|
||||||
|
<module name="FinalClass"/>
|
||||||
|
<!-- <module name="HideUtilityClassConstructor"/> -->
|
||||||
|
<module name="InterfaceIsType"/>
|
||||||
|
<module name="VisibilityModifier">
|
||||||
|
<property name="protectedAllowed" value="true"/>
|
||||||
|
<property name="packageAllowed" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Miscellaneous other checks. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
||||||
|
<module name="ArrayTypeStyle"/>
|
||||||
|
<!-- <module name="FinalParameters"/> -->
|
||||||
|
<module name="TodoComment"/>
|
||||||
|
<module name="UpperEll"/>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
|
@ -0,0 +1,132 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>de.hs_mannheim.pr2</groupId>
|
||||||
|
<artifactId>solutions</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>PR2 Excercises</name>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
|
<junit.jupiter.version>5.9.1</junit.jupiter.version>
|
||||||
|
<junit.platform.version>1.9.1</junit.platform.version>
|
||||||
|
</properties>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jitpack.io</id>
|
||||||
|
<url>https://jitpack.io</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<build>
|
||||||
|
<defaultGoal>install</defaultGoal>
|
||||||
|
<directory>${basedir}/target</directory>
|
||||||
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.10.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>3.0.0-M7</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
|
<artifactId>checkstyle</artifactId>
|
||||||
|
<version>10.4</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<configuration>
|
||||||
|
<configLocation>checkstyle.xml</configLocation>
|
||||||
|
<consoleOutput>true</consoleOutput>
|
||||||
|
<failsOnError>true</failsOnError>
|
||||||
|
<linkXRef>false</linkXRef>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>validate</id>
|
||||||
|
<phase>validate</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
|
<version>3.19.0</version>
|
||||||
|
<configuration>
|
||||||
|
<rulesets>
|
||||||
|
<ruleset>./pmd.xml</ruleset>
|
||||||
|
</rulesets>
|
||||||
|
<failOnViolation>true</failOnViolation>
|
||||||
|
<printFailingErrors>true</printFailingErrors>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<dependencies>
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.smits_net.games</groupId>
|
||||||
|
<artifactId>game-framework</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.thomsmits</groupId>
|
||||||
|
<artifactId> game-framework</artifactId>
|
||||||
|
<version>v1.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-api</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-params</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite</artifactId>
|
||||||
|
<version>${junit.platform.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.vintage</groupId>
|
||||||
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
|
<version>4.12.0-M4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jfree</groupId>
|
||||||
|
<artifactId>jfreechart</artifactId>
|
||||||
|
<version>1.5.3</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" path="src/main/java"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="lib/game_framework.jar"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||||
|
<classpathentry kind="output" path="target/classes"/>
|
||||||
|
</classpath>
|
|
@ -0,0 +1,203 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Checkstyle configuration that checks the sun coding conventions from:
|
||||||
|
|
||||||
|
- the Java Language Specification at
|
||||||
|
http://java.sun.com/docs/books/jls/second_edition/html/index.html
|
||||||
|
|
||||||
|
- the Sun Code Conventions at http://java.sun.com/docs/codeconv/
|
||||||
|
|
||||||
|
- the Javadoc guidelines at
|
||||||
|
http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
|
||||||
|
|
||||||
|
- the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
|
||||||
|
|
||||||
|
- some best practices
|
||||||
|
|
||||||
|
Checkstyle is very configurable. Be sure to read the documentation at
|
||||||
|
http://checkstyle.sf.net (or in your downloaded distribution).
|
||||||
|
|
||||||
|
Most Checks are configurable, be sure to consult the documentation.
|
||||||
|
|
||||||
|
To completely disable a check, just comment it out or delete it from the file.
|
||||||
|
|
||||||
|
Finally, it is worth reading the documentation.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
<!--
|
||||||
|
If you set the basedir property below, then all reported file
|
||||||
|
names will be relative to the specified directory. See
|
||||||
|
http://checkstyle.sourceforge.net/5.x/config.html#Checker
|
||||||
|
|
||||||
|
<property name="basedir" value="${basedir}"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks whether files end with a new line. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
|
||||||
|
<!-- <module name="NewlineAtEndOfFile"/> -->
|
||||||
|
|
||||||
|
<!-- Checks that property files contain the same keys. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
|
||||||
|
<module name="Translation"/>
|
||||||
|
|
||||||
|
<!-- Checks for Size Violations. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
||||||
|
<module name="FileLength"/>
|
||||||
|
|
||||||
|
<!-- Checks for whitespace -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
||||||
|
<module name="FileTabCharacter"/>
|
||||||
|
|
||||||
|
<!-- Miscellaneous other checks. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
||||||
|
<!--
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<property name="format" value="\s+$"/>
|
||||||
|
<property name="minimum" value="0"/>
|
||||||
|
<property name="maximum" value="0"/>
|
||||||
|
<property name="message" value="Line has trailing spaces."/>
|
||||||
|
</module>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<property name="ignorePattern" value="^.*//#.*|^.* \* @see .*|^import .*"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod"/>
|
||||||
|
<module name="JavadocType"/>
|
||||||
|
<module name="JavadocVariable">
|
||||||
|
<property name="scope" value="public"/>
|
||||||
|
</module>
|
||||||
|
<module name="JavadocStyle"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Naming Conventions. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_naming.html -->
|
||||||
|
<module name="ConstantName"/>
|
||||||
|
<module name="LocalFinalVariableName"/>
|
||||||
|
<module name="LocalVariableName"/>
|
||||||
|
<module name="MemberName"/>
|
||||||
|
<module name="MethodName"/>
|
||||||
|
<module name="PackageName">
|
||||||
|
<property name="format" value="^[a-z][a-z0-9_]+(\.[a-z][a-z0-9_]*)*$"/>
|
||||||
|
</module>
|
||||||
|
<module name="ParameterName"/>
|
||||||
|
<module name="StaticVariableName"/>
|
||||||
|
<module name="TypeName"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Headers -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_header.html -->
|
||||||
|
<!-- <module name="Header"> -->
|
||||||
|
<!-- The follow property value demonstrates the ability -->
|
||||||
|
<!-- to have access to ANT properties. In this case it uses -->
|
||||||
|
<!-- the ${basedir} property to allow Checkstyle to be run -->
|
||||||
|
<!-- from any directory within a project. See property -->
|
||||||
|
<!-- expansion, -->
|
||||||
|
<!-- http://checkstyle.sf.net/config.html#properties -->
|
||||||
|
<!-- <property -->
|
||||||
|
<!-- name="headerFile" -->
|
||||||
|
<!-- value="${basedir}/java.header"/> -->
|
||||||
|
<!-- </module> -->
|
||||||
|
|
||||||
|
<!-- Following interprets the header file as regular expressions. -->
|
||||||
|
<!-- <module name="RegexpHeader"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for imports -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_import.html -->
|
||||||
|
<module name="AvoidStarImport"/>
|
||||||
|
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
|
||||||
|
<module name="RedundantImport"/>
|
||||||
|
<module name="UnusedImports"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for Size Violations. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_sizes.html -->
|
||||||
|
<module name="MethodLength">
|
||||||
|
<property name="countEmpty" value="false"/>
|
||||||
|
</module>
|
||||||
|
<module name="ParameterNumber"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for whitespace -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
|
||||||
|
<module name="EmptyForIteratorPad"/>
|
||||||
|
<module name="GenericWhitespace"/>
|
||||||
|
<module name="MethodParamPad"/>
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<property name="tokens" value="AT, INC, DEC, UNARY_MINUS, UNARY_PLUS, BNOT, LNOT, DOT, ARRAY_DECLARATOR, INDEX_OP"/>
|
||||||
|
</module>
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<property name="tokens" value="COMMA, SEMI, POST_INC, POST_DEC, ELLIPSIS, LABELED_STAT"/>
|
||||||
|
</module>
|
||||||
|
<module name="OperatorWrap"/>
|
||||||
|
<module name="ParenPad"/>
|
||||||
|
<module name="TypecastParenPad"/>
|
||||||
|
<module name="WhitespaceAfter"/>
|
||||||
|
<module name="WhitespaceAround"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Modifier Checks -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
|
||||||
|
<module name="ModifierOrder"/>
|
||||||
|
<!-- <module name="RedundantModifier"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for blocks. You know, those {}'s -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_blocks.html -->
|
||||||
|
<module name="AvoidNestedBlocks"/>
|
||||||
|
<module name="EmptyBlock"/>
|
||||||
|
<module name="LeftCurly"/>
|
||||||
|
<module name="NeedBraces"/>
|
||||||
|
<!-- <module name="RightCurly"/> -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Checks for common coding problems -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_coding.html -->
|
||||||
|
<!-- <module name="AvoidInlineConditionals"/> -->
|
||||||
|
<module name="EmptyStatement"/>
|
||||||
|
<module name="EqualsHashCode"/>
|
||||||
|
<module name="HiddenField">
|
||||||
|
<property name="ignoreConstructorParameter" value="true"/>
|
||||||
|
<property name="ignoreSetter" value="true"/>
|
||||||
|
</module>
|
||||||
|
<module name="IllegalInstantiation"/>
|
||||||
|
<module name="InnerAssignment"/>
|
||||||
|
<module name="MissingSwitchDefault"/>
|
||||||
|
<module name="SimplifyBooleanExpression"/>
|
||||||
|
<module name="SimplifyBooleanReturn"/>
|
||||||
|
|
||||||
|
<!-- Checks for class design -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_design.html -->
|
||||||
|
<!-- <module name="DesignForExtension"/> -->
|
||||||
|
<module name="FinalClass"/>
|
||||||
|
<!-- <module name="HideUtilityClassConstructor"/> -->
|
||||||
|
<module name="InterfaceIsType"/>
|
||||||
|
<module name="VisibilityModifier">
|
||||||
|
<property name="protectedAllowed" value="true"/>
|
||||||
|
<property name="packageAllowed" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Miscellaneous other checks. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_misc.html -->
|
||||||
|
<module name="ArrayTypeStyle"/>
|
||||||
|
<!-- <module name="FinalParameters"/> -->
|
||||||
|
<module name="TodoComment"/>
|
||||||
|
<module name="UpperEll"/>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
|
@ -0,0 +1,132 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>de.hs_mannheim.pr2</groupId>
|
||||||
|
<artifactId>solutions</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>PR2 Excercises</name>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
|
<junit.jupiter.version>5.9.1</junit.jupiter.version>
|
||||||
|
<junit.platform.version>1.9.1</junit.platform.version>
|
||||||
|
</properties>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jitpack.io</id>
|
||||||
|
<url>https://jitpack.io</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<build>
|
||||||
|
<defaultGoal>install</defaultGoal>
|
||||||
|
<directory>${basedir}/target</directory>
|
||||||
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.10.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>3.0.0-M7</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
|
<artifactId>checkstyle</artifactId>
|
||||||
|
<version>10.4</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<configuration>
|
||||||
|
<configLocation>checkstyle.xml</configLocation>
|
||||||
|
<consoleOutput>true</consoleOutput>
|
||||||
|
<failsOnError>true</failsOnError>
|
||||||
|
<linkXRef>false</linkXRef>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>validate</id>
|
||||||
|
<phase>validate</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
|
<version>3.19.0</version>
|
||||||
|
<configuration>
|
||||||
|
<rulesets>
|
||||||
|
<ruleset>./pmd.xml</ruleset>
|
||||||
|
</rulesets>
|
||||||
|
<failOnViolation>true</failOnViolation>
|
||||||
|
<printFailingErrors>true</printFailingErrors>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<dependencies>
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.smits_net.games</groupId>
|
||||||
|
<artifactId>game-framework</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.thomsmits</groupId>
|
||||||
|
<artifactId> game-framework</artifactId>
|
||||||
|
<version>v1.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-api</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-params</artifactId>
|
||||||
|
<version>${junit.jupiter.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite</artifactId>
|
||||||
|
<version>${junit.platform.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.vintage</groupId>
|
||||||
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
|
<version>4.12.0-M4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jfree</groupId>
|
||||||
|
<artifactId>jfreechart</artifactId>
|
||||||
|
<version>1.5.3</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
package pr2.auffrischung.grossmacher;
|
||||||
|
|
||||||
|
public class Grossmacher {
|
||||||
|
|
||||||
|
// TODO: main-Methode implementieren
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
package pr2.auffrischung.labeled_break;
|
||||||
|
|
||||||
|
public class ArraySucher {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sucht das erste Element, dass nicht 0 ist.
|
||||||
|
*
|
||||||
|
* @param array das Array in dem gesucht werden soll
|
||||||
|
* @return {@code true}, wenn ein Element gefunden wird,
|
||||||
|
* andernfalls {@code false}.
|
||||||
|
*/
|
||||||
|
public boolean suche(int[][] array) {
|
||||||
|
boolean found = false;
|
||||||
|
|
||||||
|
// TODO: Methodenrumpf schreiben
|
||||||
|
|
||||||
|
return found;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package pr2.auffrischung.password;
|
||||||
|
|
||||||
|
public class PasswortChecker {
|
||||||
|
|
||||||
|
|
||||||
|
public static int checkPassword(String password) {
|
||||||
|
int points = 0;
|
||||||
|
|
||||||
|
// TODO: Methode implementieren
|
||||||
|
|
||||||
|
return points;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println(checkPassword("mutti"));
|
||||||
|
System.out.println(checkPassword("Mutti"));
|
||||||
|
System.out.println(checkPassword("mutti123"));
|
||||||
|
System.out.println(checkPassword("Mutti123"));
|
||||||
|
System.out.println(checkPassword("Mutti123!%"));
|
||||||
|
System.out.println(checkPassword("1234"));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
package pr2.auffrischung.printf;
|
||||||
|
|
||||||
|
public class DoubleFormatter {
|
||||||
|
|
||||||
|
public static void printDouble(double d) {
|
||||||
|
// TODO: Wert ausgeben
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
printDouble(1.0);
|
||||||
|
printDouble(10.1);
|
||||||
|
printDouble(2.01);
|
||||||
|
printDouble(2.001);
|
||||||
|
printDouble(2.0001);
|
||||||
|
printDouble(2.0004);
|
||||||
|
printDouble(2.0005);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
package pr2.auffrischung.suchemax;
|
||||||
|
|
||||||
|
public class GroessteZahl {
|
||||||
|
|
||||||
|
public int sucheMax(int[] zahlen) {
|
||||||
|
int max = 0;
|
||||||
|
|
||||||
|
// TODO: Methode implementieren
|
||||||
|
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
GroessteZahl g = new GroessteZahl();
|
||||||
|
System.out.println(g.sucheMax(new int[] {1, 5, 8, 2, 0}));
|
||||||
|
System.out.println(g.sucheMax(new int[] {-1, -5, -8, -2, -20}));
|
||||||
|
System.out.println(g.sucheMax(new int[] {10000, -10000, 1, 2, 33}));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
package pr2.auffrischung.taschenrechner;
|
||||||
|
|
||||||
|
public class Taschenrechner {
|
||||||
|
|
||||||
|
public double rechne(double o1, char op, double o2) {
|
||||||
|
// TODO: Implementieren
|
||||||
|
return 0.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Taschenrechner t = new Taschenrechner();
|
||||||
|
System.out.println(t.rechne(1, '+', 2));
|
||||||
|
System.out.println(t.rechne(1, '-', 2));
|
||||||
|
System.out.println(t.rechne(2, '*', 2));
|
||||||
|
System.out.println(t.rechne(4, '/', 2));
|
||||||
|
System.out.println(t.rechne(2, '^', 32));
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,994 @@
|
||||||
|
96;Half-Life 2;9.2;Nov 16, 2004
|
||||||
|
96;Grand Theft Auto V;7.8;Apr 14, 2015
|
||||||
|
96;The Orange Box;9.3;Oct 10, 2007
|
||||||
|
96;Half-Life;9.1;Oct 31, 1998
|
||||||
|
96;BioShock;8.4;Aug 21, 2007
|
||||||
|
95;Baldur's Gate II: Shadows of Amn;9.2;Sep 24, 2000
|
||||||
|
95;Portal 2;8.8;Apr 19, 2011
|
||||||
|
94;The Elder Scrolls V: Skyrim;8.1;Nov 11, 2011
|
||||||
|
94;Mass Effect 2;8.7;Jan 26, 2010
|
||||||
|
94;Grand Theft Auto: Vice City;8.8;May 12, 2003
|
||||||
|
94;Civilization II;9.0;Feb 29, 1996
|
||||||
|
94;Quake;8.8;Jun 22, 1996
|
||||||
|
94;BioShock Infinite;8.5;Mar 26, 2013
|
||||||
|
94;The Elder Scrolls IV: Oblivion;8.0;Mar 20, 2006
|
||||||
|
94;Grim Fandango;9.1;Sep 30, 1998
|
||||||
|
94;Diablo;8.7;Nov 30, 1996
|
||||||
|
94;Sid Meier's Civilization IV;8.2;Oct 25, 2005
|
||||||
|
93;The Witcher 3: Wild Hunt;9.1;May 19, 2015
|
||||||
|
93;Company of Heroes;8.8;Sep 13, 2006
|
||||||
|
93;Unreal Tournament 2004;8.9;Mar 16, 2004
|
||||||
|
93;Starcraft II: Wings of Liberty;8.2;Jul 27, 2010
|
||||||
|
93;Minecraft;7.4;May 10, 2009
|
||||||
|
93;Grand Theft Auto III;8.4;May 20, 2002
|
||||||
|
93;Homeworld;8.9;Aug 31, 1999
|
||||||
|
93;Star Wars: Knights of the Old Republic;9.0;Nov 18, 2003
|
||||||
|
93;World of Warcraft;7.2;Nov 23, 2004
|
||||||
|
93;Grand Theft Auto: San Andreas;8.8;Jun 7, 2005
|
||||||
|
92;Call of Duty 4: Modern Warfare;8.5;Nov 5, 2007
|
||||||
|
92;Warcraft III: Reign of Chaos;9.1;Jul 3, 2002
|
||||||
|
92;The Sims;7.9;Jan 31, 2000
|
||||||
|
92;Sid Meier's Gettysburg!;7.7;Sep 30, 1997
|
||||||
|
92;World Soccer Winning Eleven 7 International;7.9;Apr 9, 2004
|
||||||
|
92;Team Fortress 2;9.2;Apr 8, 2008
|
||||||
|
92;System Shock 2;9.1;Aug 11, 1999
|
||||||
|
92;Tom Clancy's Splinter Cell: Chaos Theory;8.8;Mar 28, 2005
|
||||||
|
92;Undertale;8.2;Sep 15, 2015
|
||||||
|
92;Rome: Total War;9.1;Sep 22, 2004
|
||||||
|
92;Thief: The Dark Project;9.1;Nov 30, 1998
|
||||||
|
92;Age of Empires II: The Age of Kings;9.0;Sep 30, 1999
|
||||||
|
92;Unreal Tournament (1999);9.1;Nov 30, 1999
|
||||||
|
92;Sid Meier's Alpha Centauri;9.1;Feb 12, 1999
|
||||||
|
92;Galactic Civilizations II: Twilight of the Arnor;8.4;Apr 30, 2008
|
||||||
|
92;Tiger Woods PGA Tour 2003;6.0;Oct 31, 2002
|
||||||
|
91;Dishonored;8.4;Oct 9, 2012
|
||||||
|
91;Medal of Honor: Allied Assault;8.6;Jan 20, 2002
|
||||||
|
91;Myth: The Fallen Lords;8.8;Oct 31, 1997
|
||||||
|
91;World of Warcraft: Wrath of the Lich King;7.4;Nov 13, 2008
|
||||||
|
91;F1 Challenge '99-'02;8.3;Jun 24, 2003
|
||||||
|
91;Baldur's Gate;9.0;Nov 30, 1998
|
||||||
|
91;IL-2 Sturmovik;8.7;Nov 18, 2001
|
||||||
|
91;FreeSpace 2;8.8;Sep 30, 1999
|
||||||
|
91;Metal Gear Solid V: The Phantom Pain;7.7;Sep 1, 2015
|
||||||
|
91;Tom Clancy's Splinter Cell;8.6;Feb 19, 2003
|
||||||
|
91;Crysis;8.0;Nov 13, 2007
|
||||||
|
91;World of Warcraft: The Burning Crusade;7.9;Jan 16, 2007
|
||||||
|
91;Tiger Woods PGA Tour 2005;4.6;Sep 20, 2004
|
||||||
|
91;The Longest Journey;8.9;Nov 16, 2000
|
||||||
|
91;Tony Hawk's Pro Skater 2;8.5;Oct 31, 2000
|
||||||
|
91;Star Wars Jedi Knight: Dark Forces II;8.5;Sep 30, 1997
|
||||||
|
91;Batman: Arkham Asylum;8.7;Sep 15, 2009
|
||||||
|
91;Galactic Civilizations II: Dark Avatar;8.2;Feb 14, 2007
|
||||||
|
91;The Operative: No One Lives Forever;8.9;Nov 9, 2000
|
||||||
|
91;Battlefield 2;8.4;Jun 21, 2005
|
||||||
|
91;Street Fighter IV;8.0;Jul 1, 2009
|
||||||
|
91;Fallout 3;7.9;Oct 28, 2008
|
||||||
|
91;Batman: Arkham City;8.6;Nov 22, 2011
|
||||||
|
91;Fez;6.5;May 1, 2013
|
||||||
|
91;Planescape: Torment;9.3;Nov 30, 1999
|
||||||
|
91;Neverwinter Nights;8.1;Jun 16, 2002
|
||||||
|
91;No One Lives Forever 2: A Spy in H.A.R.M.'s Way;8.7;Sep 30, 2002
|
||||||
|
91;Dragon Age: Origins;8.6;Nov 3, 2009
|
||||||
|
91;Mark of the Ninja;8.0;Oct 16, 2012
|
||||||
|
91;Dark Souls II;7.1;Apr 25, 2014
|
||||||
|
91;Call of Duty;8.5;Oct 29, 2003
|
||||||
|
91;Madden NFL 2004;8.2;Aug 12, 2003
|
||||||
|
90;The Sims 2;8.8;Sep 14, 2004
|
||||||
|
90;World of Warcraft: Cataclysm;5.5;Dec 7, 2010
|
||||||
|
90;World of Goo;8.5;Oct 21, 2008
|
||||||
|
90;Spelunky;7.2;Aug 8, 2013
|
||||||
|
90;Black & White;7.6;Mar 26, 2001
|
||||||
|
90;Portal;9.3;Apr 8, 2008
|
||||||
|
90;NHL 2001;6.9;Sep 28, 2000
|
||||||
|
90;Tony Hawk's Pro Skater 3;8.6;Mar 28, 2002
|
||||||
|
90;Deus Ex;9.3;Jun 26, 2000
|
||||||
|
90;Half-Life 2: Episode Two;9.2;Oct 10, 2007
|
||||||
|
90;Braid;8.6;Jan 26, 2010
|
||||||
|
90;The Chronicles of Riddick: Escape From Butcher Bay - Developer's Cut;8.7;Dec 8, 2004
|
||||||
|
90;Sid Meier's Civilization III;8.4;Oct 30, 2001
|
||||||
|
90;Silent Hunter III;7.8;Mar 15, 2005
|
||||||
|
90;Sid Meier's Civilization V;7.8;Sep 21, 2010
|
||||||
|
90;Falcon 4.0: Allied Force;8.6;Jun 28, 2005
|
||||||
|
90;Deus Ex: Human Revolution;8.5;Aug 23, 2011
|
||||||
|
90;Dark Souls III;8.2;Apr 12, 2016
|
||||||
|
90;Flight Simulator 2002;8.4;Oct 19, 2001
|
||||||
|
90;Brothers: A Tale of Two Sons;8.5;Sep 3, 2013
|
||||||
|
90;Dota 2;6.2;Jul 9, 2013
|
||||||
|
90;Guild Wars 2;7.9;Aug 28, 2012
|
||||||
|
90;Freedom Force;8.0;Mar 24, 2002
|
||||||
|
90;GTR 2;8.7;Sep 29, 2006
|
||||||
|
90;Grand Theft Auto IV;6.5;Dec 2, 2008
|
||||||
|
90;Total War: Shogun 2;8.3;Mar 15, 2011
|
||||||
|
90;Empire: Total War;6.9;Mar 3, 2009
|
||||||
|
90;Command & Conquer: Red Alert;8.9;Oct 31, 1996
|
||||||
|
89;Star Wars Jedi Knight II: Jedi Outcast;8.6;Mar 26, 2002
|
||||||
|
89;The Walking Dead: A Telltale Games Series;8.7;Dec 11, 2012
|
||||||
|
89;Age of Mythology;8.9;Nov 1, 2002
|
||||||
|
89;Sacrifice;8.8;Nov 5, 2000
|
||||||
|
89;The Witcher 3: Wild Hunt - Hearts of Stone;8.4;Oct 13, 2015
|
||||||
|
89;Pillars of Eternity;8.3;Mar 26, 2015
|
||||||
|
89;The Elder Scrolls III: Morrowind;9.0;May 1, 2002
|
||||||
|
89;Rocksmith 2014 Edition;7.9;Oct 22, 2013
|
||||||
|
89;Fallout;8.9;Sep 30, 1997
|
||||||
|
89;World Soccer Winning Eleven 9;8.4;Apr 28, 2006
|
||||||
|
89;Worldwide Soccer Manager 2005;8.7;Dec 7, 2004
|
||||||
|
89;Left 4 Dead;9.2;Nov 18, 2008
|
||||||
|
89;Left 4 Dead 2;8.5;Nov 17, 2009
|
||||||
|
89;NASCAR Racing 2002 Season;5.8;Feb 14, 2002
|
||||||
|
89;Mass Effect;8.6;May 28, 2008
|
||||||
|
89;Combat Mission: Barbarossa to Berlin;8.3;Oct 29, 2002
|
||||||
|
89;Homeworld: Cataclysm;8.9;Sep 7, 2000
|
||||||
|
89;The Walking Dead: Episode 5 - No Time Left;8.9;Nov 21, 2012
|
||||||
|
89;Guild Wars;8.4;Apr 26, 2005
|
||||||
|
89;Borderlands 2;8.2;Sep 18, 2012
|
||||||
|
89;Max Payne;9.1;Jul 23, 2001
|
||||||
|
89;Out of the Park Baseball 15;7.2;Apr 21, 2014
|
||||||
|
89;World in Conflict;8.1;Sep 18, 2007
|
||||||
|
89;NASCAR Racing 4;8.2;Feb 6, 2001
|
||||||
|
89;Duke Nukem 3D;8.8;Jan 31, 1996
|
||||||
|
89;Far Cry;8.0;Mar 23, 2004
|
||||||
|
89;FIFA Soccer 12;7.1;Sep 27, 2011
|
||||||
|
89;XCOM: Enemy Unknown;8.2;Oct 9, 2012
|
||||||
|
89;Mass Effect 3;5.4;Mar 6, 2012
|
||||||
|
89;Rise of Nations;9.0;May 20, 2003
|
||||||
|
89;NASCAR Racing 2003 Season;8.6;Feb 14, 2003
|
||||||
|
89;Descent 3;8.3;Jun 14, 2000
|
||||||
|
89;The Curse of Monkey Island;9.1;Oct 31, 1997
|
||||||
|
89;Battlefield 3;7.5;Oct 25, 2011
|
||||||
|
89;Battlefield 1942;8.6;Sep 10, 2002
|
||||||
|
89;Madden NFL 2003;8.4;Aug 12, 2002
|
||||||
|
89;DiRT 2;8.3;Dec 10, 2009
|
||||||
|
89;Stardew Valley;8.5;Feb 26, 2016
|
||||||
|
89;Prince of Persia: The Sands of Time;8.6;Nov 30, 2003
|
||||||
|
89;Railroad Tycoon II;8.4;Oct 31, 1998
|
||||||
|
88;Microsoft Flight Simulator 2004: A Century of Flight;8.2;Jul 29, 2003
|
||||||
|
88;Medieval: Total War;8.8;Aug 19, 2002
|
||||||
|
88;Mafia;9.1;Aug 27, 2002
|
||||||
|
88;LIMBO;8.1;Aug 2, 2011
|
||||||
|
88;Nuclear Throne;7.4;Dec 5, 2015
|
||||||
|
88;Crusader Kings II: The Old Gods;8.8;May 28, 2013
|
||||||
|
88;Assassin's Creed: Brotherhood;8.2;Mar 22, 2011
|
||||||
|
88;Superbike 2001;6.5;Oct 9, 2000
|
||||||
|
88;F.E.A.R.;8.3;Oct 17, 2005
|
||||||
|
88;Kerbal Space Program;8.1;Apr 27, 2015
|
||||||
|
88;Tribes 2;8.5;Mar 28, 2001
|
||||||
|
88;Age of Empires II: The Conquerors Expansion;9.0;Aug 24, 2000
|
||||||
|
88;Tiger Woods PGA Tour 2004;8.8;Sep 22, 2003
|
||||||
|
88;Warcraft III: The Frozen Throne;9.0;Jul 1, 2003
|
||||||
|
88;Starcraft;9.1;Apr 1, 1998
|
||||||
|
88;Far Cry 3;8.2;Dec 4, 2012
|
||||||
|
88;XCOM 2;7.0;Feb 5, 2016
|
||||||
|
88;World Soccer Winning Eleven 8 International;8.5;Feb 16, 2005
|
||||||
|
88;Torchlight II;8.6;Sep 20, 2012
|
||||||
|
88;Myth II: Soulblighter;9.0;Nov 30, 1998
|
||||||
|
88;Return to Castle Wolfenstein;8.7;Nov 19, 2001
|
||||||
|
88;Shogo: Mobile Armor Division;8.9;Sep 30, 1998
|
||||||
|
88;Thirty Flights of Loving;5.0;Aug 20, 2012
|
||||||
|
88;Hearthstone: Heroes of Warcraft;6.3;Mar 11, 2014
|
||||||
|
88;Medieval II: Total War;8.9;Nov 13, 2006
|
||||||
|
88;F1 2002;7.6;Jun 13, 2002
|
||||||
|
88;The Stanley Parable;8.0;Oct 17, 2013
|
||||||
|
88;BioShock 2;8.0;Feb 9, 2010
|
||||||
|
88;Counter-Strike: Source;8.9;Sep 26, 2005
|
||||||
|
88;Starcraft II: Legacy of the Void;8.3;Nov 10, 2015
|
||||||
|
88;Diablo III;4.0;May 15, 2012
|
||||||
|
88;Rise of Nations: Thrones & Patriots;8.8;Apr 27, 2004
|
||||||
|
88;Sid Meier's Pirates!;8.3;Nov 22, 2004
|
||||||
|
88;EVE Online: Special Edition;7.8;Mar 10, 2009
|
||||||
|
88;Guacamelee! Gold Edition;7.3;Aug 8, 2013
|
||||||
|
88;Armadillo Run;8.2;Apr 22, 2006
|
||||||
|
88;Dark Age of Camelot;8.9;Sep 1, 2001
|
||||||
|
88;Baldur's Gate II: Throne of Bhaal;8.9;Jun 21, 2001
|
||||||
|
88;Counter-Strike;9.3;Nov 8, 2000
|
||||||
|
88;Tony Hawk's Pro Skater 4;8.4;Aug 27, 2003
|
||||||
|
88;Ori and the Blind Forest;8.7;Mar 11, 2015
|
||||||
|
88;Diablo II;8.8;Jun 29, 2000
|
||||||
|
88;The Witcher 2: Assassins of Kings;8.5;May 17, 2011
|
||||||
|
87;Plants vs. Zombies;8.9;Aug 18, 2009
|
||||||
|
87;Doom 3;7.5;Aug 3, 2004
|
||||||
|
87;Super Meat Boy;8.3;Apr 5, 2011
|
||||||
|
87;Football Manager 2010;9.1;Nov 3, 2009
|
||||||
|
87;Oddworld: Abe's Oddysee - New 'n' Tasty;7.8;Feb 25, 2015
|
||||||
|
87;Tom Clancy's Splinter Cell: Pandora Tomorrow;8.0;Mar 23, 2004
|
||||||
|
87;Europa Universalis II;8.8;Nov 12, 2001
|
||||||
|
87;Burnout Paradise: The Ultimate Box;7.5;Feb 5, 2009
|
||||||
|
87;Battlefield: Bad Company 2;8.3;Mar 2, 2010
|
||||||
|
87;GRID;7.9;Jun 3, 2008
|
||||||
|
87;Crypt of the NecroDancer;7.7;Apr 23, 2015
|
||||||
|
87;Sins of a Solar Empire;8.2;Feb 4, 2008
|
||||||
|
87;MechWarrior 4: Vengeance;8.2;Nov 23, 2000
|
||||||
|
87;Thief II: The Metal Age;9.1;Feb 29, 2000
|
||||||
|
87;Diablo II: Lord of Destruction;9.1;Jun 27, 2001
|
||||||
|
87;Monkey Island 2 Special Edition: LeChuck's Revenge;9.0;Jul 7, 2010
|
||||||
|
87;Half-Life 2: Episode One;8.6;Jun 1, 2006
|
||||||
|
87;The Swapper;8.7;May 30, 2013
|
||||||
|
87;Hitman 2: Silent Assassin;8.2;Oct 1, 2002
|
||||||
|
87;Year Walk;7.0;Mar 6, 2014
|
||||||
|
87;Max Payne 3;7.6;Jun 1, 2012
|
||||||
|
87;TowerFall Ascension;6.6;Mar 11, 2014
|
||||||
|
87;Battlefield 3: Armored Kill;7.0;Sep 11, 2012
|
||||||
|
87;NHL 2002;8.7;Sep 17, 2001
|
||||||
|
87;Icewind Dale;8.3;Jun 29, 2000
|
||||||
|
87;The Witness;6.6;Jan 26, 2016
|
||||||
|
87;Brothers in Arms: Road to Hill 30;7.1;Mar 15, 2005
|
||||||
|
87;Kohan: Immortal Sovereigns;8.6;Mar 14, 2001
|
||||||
|
87;Day of the Tentacle Remastered;7.9;Mar 21, 2016
|
||||||
|
87;Dead Space 2;8.3;Jan 25, 2011
|
||||||
|
87;Diablo III: Reaper of Souls;6.6;Mar 25, 2014
|
||||||
|
87;Shogun: Total War Warlord Edition;8.7;Aug 13, 2001
|
||||||
|
87;Serious Sam: The First Encounter;8.4;Mar 21, 2001
|
||||||
|
87;Grand Prix 3;8.3;Aug 24, 2000
|
||||||
|
87;Call of Duty: United Offensive;8.3;Sep 14, 2004
|
||||||
|
87;Divinity: Original Sin;8.7;Jan 17, 2014
|
||||||
|
87;Company of Heroes: Opposing Fronts;8.6;Sep 24, 2007
|
||||||
|
87;Psychonauts;8.9;Apr 19, 2005
|
||||||
|
87;Gears of War;7.8;Nov 6, 2007
|
||||||
|
87;Out of the Park Baseball 4;7.8;Feb 28, 2002
|
||||||
|
87;Europa Universalis IV;8.7;Aug 13, 2013
|
||||||
|
87;NHL 2004;8.2;Sep 22, 2003
|
||||||
|
87;Zeus: Master of Olympus;9.0;Oct 22, 2000
|
||||||
|
87;World of Warcraft: Warlords of Draenor;6.0;Nov 13, 2014
|
||||||
|
87;Warhammer 40,000: Dawn of War - Dark Crusade;8.9;Oct 9, 2006
|
||||||
|
87;Commandos 2: Men of Courage;8.8;Sep 20, 2001
|
||||||
|
86;Tales From The Borderlands: Episode 5 - The Vault of the Traveler;8.7;Oct 20, 2015
|
||||||
|
86;Bastion;8.6;Aug 16, 2011
|
||||||
|
86;Gone Home;5.4;Aug 15, 2013
|
||||||
|
86;Pac-Man Championship Edition DX +;7.3;Sep 24, 2013
|
||||||
|
86;Supreme Commander;8.3;Feb 20, 2007
|
||||||
|
86;Total War: Shogun 2 - Fall of the Samurai;8.4;Mar 23, 2012
|
||||||
|
86;Startopia;8.7;Jun 19, 2001
|
||||||
|
86;Enemy Engaged: RAH-66 Comanche Versus Ka-52 Hokum;8.3;Jul 31, 2000
|
||||||
|
86;Fallout 2;9.2;Sep 30, 1998
|
||||||
|
86;Final Fantasy XIV: Heavensward;7.7;Jun 23, 2015
|
||||||
|
86;Football Manager 2013;6.7;Nov 1, 2012
|
||||||
|
86;Out of the Park Baseball 14;8.6;Apr 15, 2013
|
||||||
|
86;The Witcher: Enhanced Edition;8.5;Sep 16, 2008
|
||||||
|
86;Borderlands: The Secret Armory of General Knoxx;7.6;Feb 25, 2010
|
||||||
|
86;Call of Duty 2;8.3;Oct 25, 2005
|
||||||
|
86;Astebreed;7.3;May 30, 2014
|
||||||
|
86;Ground Control;7.8;May 31, 2000
|
||||||
|
86;Rise of the Tomb Raider;8.0;Jan 28, 2016
|
||||||
|
86;Resident Evil 5;7.1;Sep 18, 2009
|
||||||
|
86;Saints Row IV;7.4;Aug 20, 2013
|
||||||
|
86;Black Mesa;9.0;Sep 14, 2012
|
||||||
|
86;EverQuest: Omens of War;7.7;Sep 13, 2004
|
||||||
|
86;Steel Beasts;8.4;Sep 24, 2000
|
||||||
|
86;Total Annihilation;8.9;Sep 30, 1997
|
||||||
|
86;Need for Speed: Hot Pursuit;6.7;Nov 16, 2010
|
||||||
|
86;FIFA Soccer 13;6.6;Sep 25, 2012
|
||||||
|
86;Sid Meier's Civilization IV: Beyond the Sword;8.6;Jul 23, 2007
|
||||||
|
86;The Sims 3;7.6;Jun 2, 2009
|
||||||
|
86;Freedom Force vs The 3rd Reich;7.7;Mar 8, 2005
|
||||||
|
86;The Binding of Isaac: Rebirth;8.3;Nov 4, 2014
|
||||||
|
86;Tribes: Ascend;7.7;Apr 12, 2012
|
||||||
|
86;Titanfall;6.1;Mar 11, 2014
|
||||||
|
86;Rayman Origins;8.4;Mar 29, 2012
|
||||||
|
86;Her Story;5.7;Jun 24, 2015
|
||||||
|
86;Starcraft II: Heart of the Swarm;7.9;Mar 12, 2013
|
||||||
|
86;Mass Effect 2: Lair of the Shadow Broker;8.5;Sep 7, 2010
|
||||||
|
86;LEGO Star Wars II: The Original Trilogy;8.3;Sep 12, 2006
|
||||||
|
86;Dungeon Siege;7.9;Mar 31, 2002
|
||||||
|
86;Crysis 2;6.7;Mar 22, 2011
|
||||||
|
86;Call of Duty: Modern Warfare 2;4.1;Nov 10, 2009
|
||||||
|
86;The Secret of Monkey Island: Special Edition;9.1;Jul 15, 2009
|
||||||
|
86;Max Payne 2: The Fall of Max Payne;9.0;Oct 14, 2003
|
||||||
|
86;Homeworld Remastered Collection;8.2;Feb 25, 2015
|
||||||
|
86;Galactic Civilizations II: Dread Lords;8.0;Feb 21, 2006
|
||||||
|
86;Tomb Raider;8.5;Mar 5, 2013
|
||||||
|
86;Star Trek: Voyager Elite Force;8.2;Sep 20, 2000
|
||||||
|
86;Worldwide Soccer Manager 2008;8.4;Oct 23, 2007
|
||||||
|
86;IL-2 Sturmovik: Forgotten Battles;8.6;Mar 2, 2003
|
||||||
|
86;Hyper Light Drifter;8.1;Mar 31, 2016
|
||||||
|
86;DiRT 3;6.9;May 24, 2011
|
||||||
|
86;Unreal Tournament 2003;8.1;Sep 30, 2002
|
||||||
|
86;Age of Wonders II: The Wizard's Throne;8.4;Jun 12, 2002
|
||||||
|
86;Links 2001;6.8;Oct 24, 2000
|
||||||
|
86;EverQuest: The Ruins of Kunark;8.8;Mar 31, 2000
|
||||||
|
86;Full Throttle;8.8;Apr 30, 1995
|
||||||
|
86;The Lord of the Rings Online: Shadows of Angmar;8.1;Apr 24, 2007
|
||||||
|
86;Pony Island;6.8;Jan 4, 2016
|
||||||
|
86;Warhammer 40,000: Dawn of War;8.8;Sep 20, 2004
|
||||||
|
86;Warhammer Online: Age of Reckoning;7.9;Sep 16, 2008
|
||||||
|
86;Dead Space;8.0;Oct 20, 2008
|
||||||
|
86;Bionic Commando Rearmed;7.0;Aug 13, 2008
|
||||||
|
86;Command & Conquer: Red Alert 2 - Yuri's Revenge;9.0;Oct 10, 2001
|
||||||
|
86;Europa Universalis;8.1;Feb 2, 2001
|
||||||
|
86;Escape from Monkey Island;8.2;Nov 8, 2000
|
||||||
|
86;IL-2 Sturmovik: 1946;8.8;Mar 13, 2007
|
||||||
|
86;XCOM: Enemy Within;7.9;Nov 12, 2013
|
||||||
|
86;Battlefield 3: Back to Karkand;7.2;Dec 13, 2011
|
||||||
|
86;Heroes of the Storm;6.7;Jun 2, 2015
|
||||||
|
86;Civilization III: Conquests;8.4;Nov 4, 2003
|
||||||
|
86;Path of Exile;8.0;Jan 25, 2013
|
||||||
|
86;Battlefield: Bad Company 2 Vietnam;8.1;Dec 18, 2010
|
||||||
|
86;Assassin's Creed II;6.8;Mar 9, 2010
|
||||||
|
86;The Elder Scrolls IV: Shivering Isles;8.4;Mar 26, 2007
|
||||||
|
86;DiRT Rally;8.8;Dec 7, 2015
|
||||||
|
86;Rocket League;8.1;Jul 7, 2015
|
||||||
|
86;Allegiance;8.2;Mar 31, 2000
|
||||||
|
85;The Talos Principle;8.5;Dec 11, 2014
|
||||||
|
85;Cities: Skylines;8.9;Mar 10, 2015
|
||||||
|
85;Falcon 4.0;8.0;Nov 30, 1998
|
||||||
|
85;Tom Clancy's Rainbow Six;8.6;Jul 31, 1998
|
||||||
|
85;Madden NFL 2005;6.4;Sep 14, 2004
|
||||||
|
85;Legend of Grimrock II;8.0;Oct 15, 2014
|
||||||
|
85;Sam & Max Episode 205: What's New, Beelzebub?;8.6;Apr 10, 2008
|
||||||
|
85;Dragon Age: Inquisition;5.8;Nov 18, 2014
|
||||||
|
85;Tales from the Borderlands: A Telltale Game Series;8.7;Apr 26, 2016
|
||||||
|
85;Tom Clancy's Rainbow Six: Vegas;7.7;Dec 12, 2006
|
||||||
|
85;City of Heroes;8.5;Apr 27, 2004
|
||||||
|
85;SWAT 4;8.6;Apr 5, 2005
|
||||||
|
85;Clive Barker's Undying;8.7;Feb 21, 2001
|
||||||
|
85;EverQuest;8.2;Mar 16, 1999
|
||||||
|
85;Warhammer 40,000: Dawn of War II;8.1;Feb 18, 2009
|
||||||
|
85;Command & Conquer 3: Tiberium Wars;8.0;Mar 26, 2007
|
||||||
|
85;Bit.Trip Presents...Runner2: Future Legend of Rhythm Alien;8.2;Feb 26, 2013
|
||||||
|
85;Hotline Miami;8.5;Oct 23, 2012
|
||||||
|
85;Out of the Park Baseball 13;8.2;Apr 9, 2012
|
||||||
|
85;Wizardry 8;8.6;Nov 14, 2001
|
||||||
|
85;Aliens Versus Predator 2;8.7;Oct 31, 2001
|
||||||
|
85;Operation Flashpoint: Cold War Crisis;9.0;Aug 30, 2001
|
||||||
|
85;Tropico;8.4;Apr 5, 2001
|
||||||
|
85;Giants: Citizen Kabuto;8.9;Dec 6, 2000
|
||||||
|
85;NASCAR SimRacing;4.9;Feb 15, 2005
|
||||||
|
85;The Lord of the Rings Online: Mines of Moria;8.3;Nov 17, 2008
|
||||||
|
85;The Binding of Isaac: Afterbirth;8.1;Oct 30, 2015
|
||||||
|
85;Amnesia: The Dark Descent;8.6;Feb 17, 2011
|
||||||
|
85;GTR FIA Racing;8.6;May 3, 2005
|
||||||
|
85;Football Manager 2011;8.4;Nov 23, 2010
|
||||||
|
85;Dust: An Elysian Tail;8.5;May 24, 2013
|
||||||
|
85;South Park: The Stick of Truth;8.6;Mar 4, 2014
|
||||||
|
85;Dark Souls: Prepare to Die Edition;7.4;Aug 24, 2012
|
||||||
|
85;Medieval II: Total War Kingdoms;8.8;Aug 28, 2007
|
||||||
|
85;Shovel Knight;7.9;Jun 26, 2014
|
||||||
|
85;DmC: Devil May Cry;6.7;Jan 24, 2013
|
||||||
|
85;Peggle Deluxe;8.1;Feb 19, 2008
|
||||||
|
85;Monopoly Tycoon;8.0;Sep 24, 2001
|
||||||
|
85;Indigo Prophecy;8.3;Oct 2, 2005
|
||||||
|
85;Prince of Persia: The Two Thrones;8.0;Dec 1, 2005
|
||||||
|
85;Sam & Max Episode 204: Chariots of the Dogs;8.1;Mar 13, 2008
|
||||||
|
85;Assetto Corsa;8.4;Dec 19, 2014
|
||||||
|
85;Machinarium;8.8;Oct 16, 2009
|
||||||
|
85;Frozen Synapse;7.7;May 26, 2011
|
||||||
|
85;Valkyria Chronicles;8.3;Nov 11, 2014
|
||||||
|
85;Freelancer;8.9;Mar 3, 2003
|
||||||
|
85;Zenzizenzic;5.9;Jul 23, 2015
|
||||||
|
85;The Wolf Among Us: Episode 1 - Faith;9.0;Oct 11, 2013
|
||||||
|
85;Mega Man Legacy Collection;7.3;Aug 25, 2015
|
||||||
|
85;Warhammer 40,000: Dawn of War II - Chaos Rising;8.7;Mar 11, 2010
|
||||||
|
85;Far Cry 2;5.8;Oct 21, 2008
|
||||||
|
85;The Walking Dead: Episode 3 - Long Road Ahead;8.4;Aug 29, 2012
|
||||||
|
85;AudioSurf;8.8;Feb 15, 2008
|
||||||
|
85;BattleBlock Theater;8.0;May 15, 2014
|
||||||
|
85;Star Wars: Knights of the Old Republic II - The Sith Lords;8.4;Feb 8, 2005
|
||||||
|
85;MVP Baseball 2005;8.1;Feb 22, 2005
|
||||||
|
85;The Elder Scrolls III: Bloodmoon;8.5;Jun 3, 2003
|
||||||
|
85;Rogue Legacy;7.9;Jun 27, 2013
|
||||||
|
85;Chaos Reborn;8.4;Oct 26, 2015
|
||||||
|
85;Thief: Deadly Shadows;8.4;May 25, 2004
|
||||||
|
85;Football Manager 2014;5.4;Oct 30, 2013
|
||||||
|
85;System Shock: Enhanced Edition;7.9;Sep 22, 2015
|
||||||
|
85;EverQuest: Gates of Discord;6.8;Feb 9, 2004
|
||||||
|
85;FIFA 2001 Major League Soccer;7.3;Oct 30, 2000
|
||||||
|
85;Sid Meier's Civilization V: Brave New World;8.6;Jul 9, 2013
|
||||||
|
85;Final Fantasy XI;7.5;Oct 28, 2003
|
||||||
|
85;Serious Sam: The Second Encounter;8.5;Feb 4, 2002
|
||||||
|
85;The Sims: Hot Date;7.9;Nov 12, 2001
|
||||||
|
85;American McGee's Alice;8.2;Dec 6, 2000
|
||||||
|
85;Trials Evolution: Gold Edition;6.7;Mar 21, 2013
|
||||||
|
85;Warhammer 40,000: Dawn of War - Winter Assault;8.3;Sep 21, 2005
|
||||||
|
85;Tony Hawk's Underground 2;7.9;Oct 4, 2004
|
||||||
|
85;Papers, Please;8.5;Aug 8, 2013
|
||||||
|
85;Star Wars: The Old Republic;5.9;Dec 20, 2011
|
||||||
|
85;Anarchy Online: Shadowlands;8.7;Sep 8, 2003
|
||||||
|
85;Dark Age of Camelot: Shrouded Isles;8.8;Dec 2, 2002
|
||||||
|
85;Obsidian;8.3;Dec 31, 1996
|
||||||
|
84;The Walking Dead: Episode 2 - Starved for Help;8.6;Jun 29, 2012
|
||||||
|
84;Saints Row: The Third;8.1;Nov 15, 2011
|
||||||
|
84;Fallout: New Vegas;8.5;Oct 19, 2010
|
||||||
|
84;The Movies;8.3;Nov 8, 2005
|
||||||
|
84;Neverwinter Nights: Hordes of the Underdark;8.6;Dec 2, 2003
|
||||||
|
84;Command & Conquer: Generals;8.3;Feb 10, 2003
|
||||||
|
84;Sid Meier's SimGolf;8.2;Jan 23, 2002
|
||||||
|
84;Middle-earth: Shadow of Mordor;8.0;Sep 30, 2014
|
||||||
|
84;SpaceChem;8.4;Mar 2, 2011
|
||||||
|
84;Downwell;6.2;Oct 15, 2015
|
||||||
|
84;Pinball FX 2;8.0;Oct 27, 2012
|
||||||
|
84;Devil Daggers;6.7;Feb 18, 2016
|
||||||
|
84;PlanetSide 2;7.0;Nov 20, 2012
|
||||||
|
84;Enter the Gungeon;7.4;Apr 5, 2016
|
||||||
|
84;GT Legends;8.6;Jan 23, 2006
|
||||||
|
84;Hearthstone: Goblins Vs. Gnomes;6.6;Dec 8, 2014
|
||||||
|
84;Space Rangers 2: Rise of the Dominators;9.0;Mar 27, 2006
|
||||||
|
84;Tales From The Borderlands: Episode 1 - Zer0 Sum;8.4;Nov 25, 2014
|
||||||
|
84;Puzzle Quest: Challenge of the Warlords;8.3;Oct 10, 2007
|
||||||
|
84;Heroes of Might and Magic IV;7.6;Mar 29, 2002
|
||||||
|
84;Command & Conquer: Red Alert 2;8.9;Oct 21, 2000
|
||||||
|
84;Shogun: Total War;8.7;Jun 13, 2000
|
||||||
|
84;DiRT;7.2;Jun 19, 2007
|
||||||
|
84;Darkest Dungeon;8.0;Jan 19, 2016
|
||||||
|
84;Super Street Fighter IV: Arcade Edition;7.8;Jul 13, 2011
|
||||||
|
84;Football Manager 2012;8.0;Oct 20, 2011
|
||||||
|
84;Guild Wars Factions;8.5;Apr 28, 2006
|
||||||
|
84;80 Days (2015);6.1;Sep 29, 2015
|
||||||
|
84;Spore;5.2;Sep 7, 2008
|
||||||
|
84;Unity of Command;7.2;Nov 15, 2011
|
||||||
|
84;Hearthstone: The Grand Tournament;4.0;Aug 24, 2015
|
||||||
|
84;Metro Redux;8.0;Aug 26, 2014
|
||||||
|
84;Time Gentlemen, Please!;7.6;Jul 2, 2009
|
||||||
|
84;Europa Universalis IV: Wealth of Nations;8.4;May 29, 2014
|
||||||
|
84;Mass Effect 3: Citadel;7.8;Mar 5, 2013
|
||||||
|
84;Disciples II: Dark Prophecy;8.6;Jan 22, 2002
|
||||||
|
84;Just Cause 2;7.7;Mar 23, 2010
|
||||||
|
84;Crysis Warhead;7.9;Sep 16, 2008
|
||||||
|
84;Assassin's Creed IV: Black Flag;7.7;Nov 19, 2013
|
||||||
|
84;Age of Mythology: The Titans;8.7;Sep 30, 2003
|
||||||
|
84;SimCity 4;8.7;Jan 12, 2003
|
||||||
|
84;Microsoft Train Simulator;8.4;May 31, 2001
|
||||||
|
84;Rise of Nations: Rise of Legends;8.5;May 9, 2006
|
||||||
|
84;TOCA Race Driver 3;7.8;Feb 24, 2006
|
||||||
|
84;FTL: Faster Than Light;8.4;Sep 14, 2012
|
||||||
|
84;SOMA;8.2;Sep 22, 2015
|
||||||
|
84;DEFCON: Everybody Dies;8.3;Mar 26, 2007
|
||||||
|
84;Tron 2.0;8.3;Aug 26, 2003
|
||||||
|
84;Brothers in Arms: Earned in Blood;7.3;Oct 6, 2005
|
||||||
|
84;Grim Fandango Remastered;8.0;Jan 27, 2015
|
||||||
|
84;The Lord of the Rings: The Battle for Middle-Earth II;7.5;Mar 2, 2006
|
||||||
|
84;Battlefield Vietnam;7.4;Mar 16, 2004
|
||||||
|
84;Medieval: Total War - Viking Invasion;8.8;May 7, 2003
|
||||||
|
84;Fallout 4;5.4;Nov 10, 2015
|
||||||
|
84;Guild Wars Nightfall;8.7;Oct 26, 2006
|
||||||
|
84;The Binding of Isaac;8.3;Sep 28, 2011
|
||||||
|
84;Enemy Territory: Quake Wars;8.3;Oct 2, 2007
|
||||||
|
84;Trine 2;8.4;Dec 7, 2011
|
||||||
|
84;Rift;7.3;Mar 1, 2011
|
||||||
|
84;The Wolf Among Us: Episode 5 - Cry Wolf;8.8;Jul 8, 2014
|
||||||
|
84;Shift 2: Unleashed;6.1;Mar 29, 2011
|
||||||
|
84;Sid Meier's Civilization IV: Warlords;8.2;Jul 24, 2006
|
||||||
|
84;Battlefield 1942: The Road to Rome;7.9;Feb 2, 2003
|
||||||
|
84;Poseidon;8.4;Jun 25, 2001
|
||||||
|
84;F1 2010;6.6;Sep 22, 2010
|
||||||
|
84;Shatter;7.4;Mar 15, 2010
|
||||||
|
84;Darwinia;7.9;Jun 12, 2006
|
||||||
|
84;Ultimate General: Gettysburg;8.0;Oct 16, 2014
|
||||||
|
83;Final Fantasy XI: Treasures of Aht Urhgan;7.6;Apr 18, 2006
|
||||||
|
83;MDK2;8.4;May 31, 2000
|
||||||
|
83;Gunpoint;8.4;Jun 3, 2013
|
||||||
|
83;Beyond Good & Evil;8.7;Nov 19, 2003
|
||||||
|
83;Anno 2070;7.0;Nov 17, 2011
|
||||||
|
83;SMITE;8.3;Mar 25, 2014
|
||||||
|
83;Halo: Combat Evolved;7.4;Sep 30, 2003
|
||||||
|
83;Grim Dawn;8.9;Feb 25, 2016
|
||||||
|
83;Silent Storm;8.9;Jan 20, 2004
|
||||||
|
83;Command & Conquer: Generals - Zero Hour;9.0;Sep 22, 2003
|
||||||
|
83;Homeworld 2;8.3;Sep 16, 2003
|
||||||
|
83;Galactic Civilizations;8.1;Mar 26, 2003
|
||||||
|
83;EverQuest: The Shadows of Luclin;7.2;Dec 2, 2001
|
||||||
|
83;Orcs Must Die!;8.1;Oct 11, 2011
|
||||||
|
83;Life is Strange;8.6;Jan 19, 2016
|
||||||
|
83;Fable: The Lost Chapters;8.7;Sep 20, 2005
|
||||||
|
83;Unreal Tournament III;8.0;Nov 19, 2007
|
||||||
|
83;The Blackwell Epiphany;7.6;Apr 24, 2014
|
||||||
|
83;The Lord of the Rings Online: Siege of Mirkwood;7.1;Dec 1, 2009
|
||||||
|
83;Out of the Park Baseball 10;8.3;Jun 2, 2009
|
||||||
|
83;Tomb Raider: Anniversary;8.0;Jun 5, 2007
|
||||||
|
83;Need for Speed: Shift;5.7;Sep 15, 2009
|
||||||
|
83;Hearts of Iron II;8.6;Jan 4, 2005
|
||||||
|
83;FIFA Soccer 11;7.6;Sep 28, 2010
|
||||||
|
83;Project CARS;7.0;May 6, 2015
|
||||||
|
83;FIFA Soccer 2003;6.8;Nov 2, 2002
|
||||||
|
83;Icewind Dale II;8.3;Aug 26, 2002
|
||||||
|
83;Age of Empires;8.8;Sep 30, 1997
|
||||||
|
83;EverQuest II: Echoes of Faydwer;8.4;Nov 13, 2006
|
||||||
|
83;EverQuest II;7.3;Nov 8, 2004
|
||||||
|
83;Terraria;8.5;May 16, 2011
|
||||||
|
83;Final Fantasy XIV Online: A Realm Reborn;6.7;Aug 27, 2013
|
||||||
|
83;Card Hunter (2013);7.9;Sep 12, 2013
|
||||||
|
83;Sam & Max: The Devil's Playhouse - Episode 2: The Tomb of Sammun-Mak;7.9;May 18, 2010
|
||||||
|
83;This War of Mine;8.4;Nov 14, 2014
|
||||||
|
83;Darksiders;7.7;Sep 23, 2010
|
||||||
|
83;Tom Clancy's Rainbow Six 3: Raven Shield;8.9;Mar 19, 2003
|
||||||
|
83;World of Outlaws: Sprint Cars;7.9;Feb 11, 2003
|
||||||
|
83;Colin McRae Rally 2.0;8.4;Feb 14, 2001
|
||||||
|
83;Combat Flight Simulator 2: WWII Pacific Theater;8.1;Oct 13, 2000
|
||||||
|
83;Orcs Must Die! 2;7.9;Jul 30, 2012
|
||||||
|
83;Prey;7.9;Jul 11, 2006
|
||||||
|
83;Metal Gear Rising: Revengeance;7.9;Jan 9, 2014
|
||||||
|
83;Starseed Pilgrim;6.3;Apr 16, 2013
|
||||||
|
83;Age of Conan: Rise of the Godslayer;8.4;May 11, 2010
|
||||||
|
83;Alan Wake;8.0;Feb 16, 2012
|
||||||
|
83;Tiger Woods PGA Tour 2002;5.0;Feb 24, 2002
|
||||||
|
83;Monaco: What's Yours Is Mine;7.7;Apr 24, 2013
|
||||||
|
83;Transistor;8.3;May 20, 2014
|
||||||
|
83;Helldivers;6.9;Dec 7, 2015
|
||||||
|
83;Worldwide Soccer Manager 2009;8.1;Nov 18, 2008
|
||||||
|
83;Call of Duty: World at War;7.5;Nov 10, 2008
|
||||||
|
83;Torchlight;8.0;Jan 5, 2010
|
||||||
|
83;Prison Architect;8.3;Oct 6, 2015
|
||||||
|
83;Valdis Story: Abyssal City;8.1;Oct 30, 2013
|
||||||
|
83;Crimson Skies;8.2;Sep 17, 2000
|
||||||
|
83;RACE 07: Official WTCC Game;9.0;Oct 9, 2007
|
||||||
|
83;SUPERHOT;7.6;Feb 25, 2016
|
||||||
|
83;EverQuest II: Rise of Kunark;7.9;Nov 13, 2007
|
||||||
|
83;Dark Age of Camelot: Catacombs;8.6;Dec 7, 2004
|
||||||
|
83;Spore Creature Creator;8.1;Jun 17, 2008
|
||||||
|
83;Colin McRae Rally 2005;7.0;Oct 28, 2004
|
||||||
|
83;Tom Clancy's Splinter Cell: Conviction;5.2;Apr 27, 2010
|
||||||
|
83;Tribes: Vengeance;7.6;Oct 12, 2004
|
||||||
|
83;L.A. Noire: The Complete Edition;7.9;Nov 8, 2011
|
||||||
|
83;GTR Evolution;8.2;Sep 2, 2008
|
||||||
|
83;Life is Strange: Episode 5 - Polarized;8.4;Oct 20, 2015
|
||||||
|
83;BROFORCE;8.0;Oct 15, 2015
|
||||||
|
83;Independence War 2: Edge of Chaos;8.4;Aug 22, 2001
|
||||||
|
83;Myst III: Exile;8.2;May 8, 2001
|
||||||
|
83;Superbrothers: Sword & Sworcery EP;6.4;Apr 16, 2012
|
||||||
|
83;Sid Meier's Civilization IV: Colonization;6.7;Sep 22, 2008
|
||||||
|
83;Europa Universalis III;8.4;Jan 23, 2007
|
||||||
|
83;F1 2011;7.2;Sep 20, 2011
|
||||||
|
83;Prince of Persia: Warrior Within;8.4;Nov 30, 2004
|
||||||
|
83;Danganronpa: Trigger Happy Havoc;7.6;Feb 18, 2016
|
||||||
|
83;Counter-Strike: Global Offensive;7.8;Aug 21, 2012
|
||||||
|
83;Outland;7.1;Sep 29, 2014
|
||||||
|
83;MechWarrior 4: Mercenaries;8.6;Nov 7, 2002
|
||||||
|
83;Metal Gear Solid;9.0;Sep 24, 2000
|
||||||
|
82;Invisible, Inc.;8.0;May 12, 2015
|
||||||
|
82;Dark Souls II: Crown of the Ivory King;7.8;Sep 29, 2014
|
||||||
|
82;Red Faction: Guerrilla;7.5;Sep 15, 2009
|
||||||
|
82;The Book of Unwritten Tales;8.2;Oct 28, 2011
|
||||||
|
82;Capitalism II;9.0;Dec 16, 2001
|
||||||
|
82;Rally Trophy;8.5;Nov 20, 2001
|
||||||
|
82;Dawn of Discovery;8.8;Jun 17, 2009
|
||||||
|
82;City of Villains;8.1;Oct 31, 2005
|
||||||
|
82;Kentucky Route Zero - Act II;8.0;May 31, 2013
|
||||||
|
82;Tom Clancy's Splinter Cell: Blacklist;7.4;Aug 20, 2013
|
||||||
|
82;Act of War: Direct Action;8.5;Mar 15, 2005
|
||||||
|
82;Sokobond;7.8;Aug 27, 2013
|
||||||
|
82;Sam & Max Episode 105: Reality 2.0;8.4;Mar 29, 2007
|
||||||
|
82;Bejeweled 3;8.0;Dec 7, 2010
|
||||||
|
82;Dangerous Waters;8.8;Feb 22, 2005
|
||||||
|
82;Tomb Raider: Legend;7.8;Apr 11, 2006
|
||||||
|
82;Asheron's Call 2: Fallen Kings;8.8;Nov 20, 2002
|
||||||
|
82;Gemini Rue;8.4;Feb 24, 2011
|
||||||
|
82;Antichamber;8.2;Jan 31, 2013
|
||||||
|
82;Neverwinter Nights 2;6.5;Oct 31, 2006
|
||||||
|
82;Dragon Age: Origins - Awakening;7.7;Mar 16, 2010
|
||||||
|
82;Door Kickers;8.2;Oct 20, 2014
|
||||||
|
82;Hearthstone: Blackrock Mountain;6.4;Apr 2, 2015
|
||||||
|
82;Rome: Total War Barbarian Invasion;8.4;Sep 27, 2005
|
||||||
|
82;Hacknet;7.3;Aug 12, 2015
|
||||||
|
82;Tales of Monkey Island Chapter 3: Lair of the Leviathan;7.8;Sep 29, 2009
|
||||||
|
82;Neverwinter Nights 2: Mask of The Betrayer;8.8;Oct 9, 2007
|
||||||
|
82;Sins of a Solar Empire: Rebellion;7.8;Jun 12, 2012
|
||||||
|
82;Broken Sword: The Sleeping Dragon;7.6;Nov 17, 2003
|
||||||
|
82;Age of Wonders: Shadow Magic;8.5;Jul 25, 2003
|
||||||
|
82;Tom Clancy's Ghost Recon: Desert Siege;8.4;Mar 27, 2002
|
||||||
|
82;Warlords Battlecry II;8.5;Mar 11, 2002
|
||||||
|
82;Football Manager Live;2.9;Jan 23, 2009
|
||||||
|
82;Marvel: Ultimate Alliance;8.3;Oct 24, 2006
|
||||||
|
82;The Talos Principle: Road To Gehenna;7.6;Jul 23, 2015
|
||||||
|
82;Lara Croft and the Guardian of Light;8.2;Sep 28, 2010
|
||||||
|
82;Aquaria;8.3;Dec 7, 2007
|
||||||
|
82;Need for Speed: Underground;8.3;Nov 17, 2003
|
||||||
|
82;TrackMania Sunrise;8.5;May 6, 2005
|
||||||
|
82;King's Quest Chapter 1: A Knight to Remember;7.2;Jul 28, 2015
|
||||||
|
82;Dragon Age II;4.4;Mar 8, 2011
|
||||||
|
82;Endless Legend;7.9;Apr 24, 2014
|
||||||
|
82;Tom Clancy's Ghost Recon: Island Thunder;8.3;Sep 25, 2002
|
||||||
|
82;S.T.A.L.K.E.R.: Shadow of Chernobyl;8.4;Mar 20, 2007
|
||||||
|
82;Kero Blaster;6.9;May 11, 2014
|
||||||
|
82;Monday Night Combat;7.3;Jan 24, 2011
|
||||||
|
82;The Wolf Among Us: Episode 3 - A Crooked Mile;8.6;Apr 8, 2014
|
||||||
|
82;Airborne Assault: Red Devils Over Arnhem;7.4;Jun 17, 2002
|
||||||
|
82;Fallout Tactics: Brotherhood of Steel;7.9;Mar 14, 2001
|
||||||
|
82;Need for Speed: Underground 2;8.5;Nov 9, 2004
|
||||||
|
82;NHL Eastside Hockey Manager 2005;6.6;Oct 5, 2005
|
||||||
|
82;Legend of Grimrock;8.1;Apr 11, 2012
|
||||||
|
82;Dominions 3: The Awakening;8.1;Sep 29, 2006
|
||||||
|
82;Bulletstorm;7.7;Feb 22, 2011
|
||||||
|
82;Borderlands 2: Mr. Torgue's Campaign of Carnage;7.3;Nov 20, 2012
|
||||||
|
82;Desktop Dungeons;8.2;Oct 17, 2010
|
||||||
|
82;Fallout: New Vegas - Old World Blues;7.8;Jul 19, 2011
|
||||||
|
82;Crusader Kings II;8.7;Feb 14, 2012
|
||||||
|
82;MVP Baseball 2004;7.9;Mar 9, 2004
|
||||||
|
82;Europa 1400: The Guild;8.6;Nov 18, 2002
|
||||||
|
82;Battle Realms;8.6;Nov 7, 2001
|
||||||
|
82;Warlords Battlecry;8.2;Jul 9, 2000
|
||||||
|
82;Sam & Max Episode 201: Ice Station Santa;8.6;Nov 8, 2007
|
||||||
|
82;Technobabylon;7.8;May 21, 2015
|
||||||
|
82;World of Warcraft: Mists of Pandaria;4.8;Sep 25, 2012
|
||||||
|
82;FIFA 15;4.2;Sep 23, 2014
|
||||||
|
82;Recettear: An Item Shop's Tale;8.6;Sep 10, 2010
|
||||||
|
82;ETHER One;6.9;Mar 25, 2014
|
||||||
|
82;The Vanishing of Ethan Carter;8.1;Sep 25, 2014
|
||||||
|
82;Flight Simulator X: Acceleration;7.3;Oct 23, 2007
|
||||||
|
82;Blood;9.0;May 31, 1997
|
||||||
|
82;Command & Conquer: Red Alert 3;6.8;Oct 28, 2008
|
||||||
|
82;The Walking Dead: Episode 1 - A New Day;8.4;Apr 24, 2012
|
||||||
|
82;Links 2003;6.8;Sep 16, 2002
|
||||||
|
82;Earth & Beyond;7.1;Sep 2, 2002
|
||||||
|
82;Syberia;8.5;Sep 1, 2002
|
||||||
|
82;Virtual Pool 3;7.3;Nov 14, 2000
|
||||||
|
82;The Sims: Livin' Large;6.6;Aug 27, 2000
|
||||||
|
82;DCS: Black Shark;8.5;Apr 13, 2009
|
||||||
|
82;King's Bounty: Armored Princess;8.7;Sep 10, 2010
|
||||||
|
82;Age of Wonders III - Golden Realms;8.5;Sep 18, 2014
|
||||||
|
82;Strong Bad's Cool Game for Attractive People Episode 5: 8-Bit Is Enough;7.5;Dec 15, 2008
|
||||||
|
82;Prince of Persia;7.2;Dec 2, 2008
|
||||||
|
82;Joint Operations: Typhoon Rising;8.7;Jun 15, 2004
|
||||||
|
82;Xpand Rally;7.4;Apr 20, 2006
|
||||||
|
82;Dark Souls II: Crown of the Sunken King;7.3;Jul 22, 2014
|
||||||
|
82;Resident Evil HD Remaster;8.2;Jan 20, 2015
|
||||||
|
82;Celtic Kings: Rage of War;8.5;Aug 21, 2002
|
||||||
|
82;B-17 Flying Fortress: The Mighty 8th;7.3;Dec 13, 2000
|
||||||
|
82;EverQuest: The Scars of Velious;7.8;Dec 4, 2000
|
||||||
|
82;Metro: Last Light;8.6;May 14, 2013
|
||||||
|
82;Rising Storm;8.5;May 30, 2013
|
||||||
|
82;Lethal League;7.4;Aug 27, 2014
|
||||||
|
82;Botanicula;8.3;Apr 19, 2012
|
||||||
|
82;Pro Evolution Soccer 2015;5.8;Nov 13, 2014
|
||||||
|
82;Bookworm Adventures Deluxe;7.9;Dec 20, 2006
|
||||||
|
82;The Lord of the Rings: The Battle for Middle-Earth;8.6;Dec 6, 2004
|
||||||
|
82;Hitman: Blood Money;8.8;May 30, 2006
|
||||||
|
82;Need for Speed: Most Wanted;8.5;Nov 15, 2005
|
||||||
|
82;OlliOlli2: Welcome to Olliwood;5.2;Aug 11, 2015
|
||||||
|
82;WildStar;7.4;Jun 3, 2014
|
||||||
|
82;Broken Age: Act 1;7.7;Jan 28, 2014
|
||||||
|
82;Divinity II: The Dragon Knight Saga;8.2;Nov 5, 2010
|
||||||
|
82;Out of the Park Baseball 9;7.4;Jun 1, 2008
|
||||||
|
82;The Simpsons: Hit & Run;8.0;Nov 13, 2003
|
||||||
|
82;America's Army;6.1;Aug 28, 2002
|
||||||
|
82;Star Trek Bridge Commander;8.1;Feb 27, 2002
|
||||||
|
82;The Last Express;8.9;Mar 31, 1997
|
||||||
|
81;Quake 4;7.5;Oct 11, 2005
|
||||||
|
81;Nidhogg;7.0;Jan 13, 2014
|
||||||
|
81;Battlefield 4;6.0;Oct 29, 2013
|
||||||
|
81;To the Moon;8.9;Sep 7, 2012
|
||||||
|
81;The Sims 3: World Adventures;8.0;Nov 16, 2009
|
||||||
|
81;Painkiller;8.0;Apr 12, 2004
|
||||||
|
81;Airborne Assault: Highway to the Reich;6.1;Dec 10, 2003
|
||||||
|
81;Nancy Drew: Danger on Deception Island;7.7;Oct 1, 2003
|
||||||
|
81;Shadowrun: Hong Kong;7.7;Aug 20, 2015
|
||||||
|
81;Supreme Commander: Forged Alliance;8.9;Nov 6, 2007
|
||||||
|
81;Sunless Sea;7.4;Jul 1, 2014
|
||||||
|
81;The Walking Dead: Season Two Episode 3 - In Harm's Way;8.3;May 13, 2014
|
||||||
|
81;Marvel Heroes 2015;7.9;Jun 4, 2014
|
||||||
|
81;Football Manager 2016;6.4;Nov 13, 2015
|
||||||
|
81;VVVVVV;8.1;Jan 11, 2010
|
||||||
|
81;Darksiders II;7.9;Aug 14, 2012
|
||||||
|
81;Wolfenstein: The New Order;8.2;May 20, 2014
|
||||||
|
81;Lone Survivor;7.2;Apr 23, 2012
|
||||||
|
81;Alien: Isolation;8.4;Oct 6, 2014
|
||||||
|
81;The Witcher;8.8;Oct 30, 2007
|
||||||
|
81;Kentucky Route Zero - Act I;7.5;Jan 7, 2013
|
||||||
|
81;Jade Empire: Special Edition;8.3;Feb 26, 2007
|
||||||
|
81;SWAT 3: Elite Edition;8.4;Oct 6, 2000
|
||||||
|
81;Asheron's Call;8.8;Oct 31, 1999
|
||||||
|
81;Unravel;8.1;Feb 9, 2016
|
||||||
|
81;Midnight Club II;8.0;Jun 30, 2003
|
||||||
|
81;Chessmaster 10th Edition;7.4;Aug 12, 2004
|
||||||
|
81;Age of Empires III;7.7;Oct 18, 2005
|
||||||
|
81;Tales of Monkey Island Chapter 5: Rise of the Pirate God;8.4;Dec 8, 2009
|
||||||
|
81;Castlevania: Lords of Shadow Ultimate Edition;7.3;Aug 27, 2013
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 2: Strong Badia the Free;8.2;Sep 15, 2008
|
||||||
|
81;The Cat Lady;8.7;Dec 4, 2013
|
||||||
|
81;Vessel;7.9;Mar 1, 2012
|
||||||
|
81;Metro 2033;8.1;Mar 16, 2010
|
||||||
|
81;OutRun 2006: Coast 2 Coast;7.8;Jun 27, 2006
|
||||||
|
81;Blur;7.3;May 25, 2010
|
||||||
|
81;Empires: Dawn of the Modern World;8.2;Oct 21, 2003
|
||||||
|
81;Chessmaster 9000;7.7;Aug 31, 2002
|
||||||
|
81;Gothic;8.6;Nov 23, 2001
|
||||||
|
81;Arcanum: Of Steamworks and Magick Obscura;8.9;Aug 22, 2001
|
||||||
|
81;NASCAR Heat;8.6;Sep 27, 2000
|
||||||
|
81;Company of Heroes 2: Ardennes Assault;6.1;Nov 17, 2014
|
||||||
|
81;PlanetSide;7.3;May 20, 2003
|
||||||
|
81;Tales From The Borderlands: Episode 3 - Catch A Ride;8.4;Jun 23, 2015
|
||||||
|
81;The Walking Dead: Season Two Episode 2 - A House Divided;8.6;Mar 4, 2014
|
||||||
|
81;Kingdoms of Amalur: Reckoning;6.6;Feb 7, 2012
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 1: The Penal Zone;8.5;Apr 15, 2010
|
||||||
|
81;Borderlands;7.8;Oct 26, 2009
|
||||||
|
81;DG2: Defense Grid 2;6.7;Sep 23, 2014
|
||||||
|
81;Napoleon: Total War;7.9;Feb 23, 2010
|
||||||
|
81;Overlord;8.1;Jun 26, 2007
|
||||||
|
81;Firewatch;7.2;Feb 9, 2016
|
||||||
|
81;Victoria II: Heart of Darkness;8.7;Apr 16, 2013
|
||||||
|
81;Waveform;7.6;Jan 25, 2013
|
||||||
|
81;The Elder Scrolls IV: Knights of the Nine;7.5;Nov 21, 2006
|
||||||
|
81;Red Orchestra: Ostfront 41-45;8.6;Mar 14, 2006
|
||||||
|
81;Stronghold;8.9;Oct 21, 2001
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 4: Dangeresque 3: The Criminal Projective;8.5;Nov 17, 2008
|
||||||
|
81;Rochard;8.0;Nov 15, 2011
|
||||||
|
81;Fallout 3: Broken Steel;7.3;May 5, 2009
|
||||||
|
81;Tiger Woods PGA Tour 06;8.1;Sep 20, 2005
|
||||||
|
81;RollerCoaster Tycoon 3;4.9;Oct 26, 2004
|
||||||
|
81;Dragon's Dogma: Dark Arisen;8.3;Jan 15, 2016
|
||||||
|
81;Guild Wars 2: Heart of Thorns;7.3;Oct 23, 2015
|
||||||
|
81;AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity;7.2;Sep 3, 2009
|
||||||
|
81;The Sims 2 University;7.8;Feb 28, 2005
|
||||||
|
81;Far Cry 3: Blood Dragon;8.1;May 1, 2013
|
||||||
|
81;Sid Meier's Civilization: Beyond Earth;5.5;Oct 24, 2014
|
||||||
|
81;Disney's Toontown Online;8.7;Oct 6, 2005
|
||||||
|
81;Combat Mission 3: Afrika Korps;8.4;Dec 3, 2003
|
||||||
|
81;EverQuest: The Planes of Power;8.2;Oct 28, 2002
|
||||||
|
81;Rails Across America;8.0;Sep 18, 2001
|
||||||
|
81;Wasteland 2;7.3;Sep 19, 2014
|
||||||
|
81;Jamestown: Legend of the Lost Colony;7.5;Jun 8, 2011
|
||||||
|
81;Call of Duty: Black Ops;5.1;Nov 9, 2010
|
||||||
|
81;Kohan II: Kings of War;7.9;Sep 20, 2004
|
||||||
|
81;The Age of Decadence;7.9;Oct 15, 2015
|
||||||
|
81;Samorost 3;8.3;Mar 24, 2016
|
||||||
|
81;Order of Battle: Pacific;6.4;Apr 30, 2015
|
||||||
|
81;Empire Earth;8.3;Nov 12, 2001
|
||||||
|
81;Star Trek: Deep Space Nine: The Fallen;7.9;Nov 15, 2000
|
||||||
|
81;Sam & Max Episode 101: Culture Shock;8.7;Oct 18, 2006
|
||||||
|
81;Mirror's Edge (2008);8.1;Jan 12, 2009
|
||||||
|
81;TrackMania 2 Canyon;7.7;Sep 14, 2011
|
||||||
|
81;Sleeping Dogs;8.2;Aug 14, 2012
|
||||||
|
81;Star Wars Jedi Knight: Jedi Academy;8.6;Sep 17, 2003
|
||||||
|
81;Mortal Kombat Komplete Edition;8.7;Aug 6, 2013
|
||||||
|
81;Shadowrun: Dragonfall;8.3;Feb 27, 2014
|
||||||
|
81;Eets;6.4;Mar 29, 2006
|
||||||
|
81;World of Warships;6.6;Sep 17, 2015
|
||||||
|
81;TOCA Race Driver 2: The Ultimate Racing Simulator;8.0;Apr 15, 2004
|
||||||
|
81;Wargame: European Escalation;8.2;Feb 22, 2012
|
||||||
|
81;Dungeon Defenders;7.3;Oct 18, 2011
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 5: The City That Dares Not Sleep;7.9;Aug 30, 2010
|
||||||
|
81;Age of Empires III: The Asian Dynasties;8.5;Oct 23, 2007
|
||||||
|
81;Defense Grid: The Awakening;8.8;Jul 29, 2009
|
||||||
|
81;Codename: Panzers, Phase One;8.8;Sep 30, 2004
|
||||||
|
81;FIFA 16;4.4;Sep 22, 2015
|
||||||
|
81;Europa Universalis IV: Conquest of Paradise;7.7;Jan 14, 2014
|
||||||
|
81;Ghost Master;8.0;Aug 26, 2003
|
||||||
|
81;Divine Divinity;8.5;Sep 22, 2002
|
||||||
|
80;The Book of Unwritten Tales 2;7.7;Feb 20, 2015
|
||||||
|
80;Galactic Civilizations III;6.6;May 14, 2015
|
||||||
|
80;Lovers in a Dangerous Spacetime;7.2;Sep 9, 2015
|
||||||
|
80;Age of Conan: Hyborian Adventures;7.3;May 20, 2008
|
||||||
|
80;Company of Heroes 2: The Western Front Armies;6.8;Jun 23, 2014
|
||||||
|
80;Sid Meier's Civilization V: Gods & Kings;7.7;Jun 19, 2012
|
||||||
|
80;Age of Empires III: The WarChiefs;8.1;Oct 17, 2006
|
||||||
|
80;Metal Gear Solid V: Ground Zeroes;7.7;Dec 18, 2014
|
||||||
|
80;Trials Fusion;6.8;Apr 16, 2014
|
||||||
|
80;Syberia II;8.3;Mar 30, 2004
|
||||||
|
80;Tom Clancy's Ghost Recon;8.4;Nov 13, 2001
|
||||||
|
80;Conquest: Frontier Wars;8.3;Aug 14, 2001
|
||||||
|
80;Gabriel Knight 3: Blood of the Sacred, Blood of the Damned;8.8;Oct 5, 1999
|
||||||
|
80;Westerado: Double Barreled;7.4;Apr 16, 2015
|
||||||
|
80;Anomaly: Warzone Earth;7.3;Apr 8, 2011
|
||||||
|
80;Volume;7.2;Aug 18, 2015
|
||||||
|
80;GRID 2;5.7;May 27, 2013
|
||||||
|
80;The Banner Saga;7.9;Jan 14, 2014
|
||||||
|
80;Sam & Max Episode 202: Moai Better Blues;7.7;Jan 10, 2008
|
||||||
|
80;Age of Wonders III - Eternal Lords;8.4;Apr 14, 2015
|
||||||
|
80;Pro Evolution Soccer 2013;6.8;Sep 25, 2012
|
||||||
|
80;Osmos;7.5;Aug 18, 2009
|
||||||
|
80;Dungeon Siege II;7.9;Aug 16, 2005
|
||||||
|
80;Dead Island;6.8;Sep 6, 2011
|
||||||
|
80;Sam & Max Episode 104: Abe Lincoln Must Die!;7.8;Feb 22, 2007
|
||||||
|
80;Deus Ex: Invisible War;6.3;Dec 2, 2003
|
||||||
|
80;The Sims: Makin' Magic;8.6;Oct 28, 2003
|
||||||
|
80;Tom Clancy's Splinter Cell: Double Agent;5.7;Nov 7, 2006
|
||||||
|
80;Medal of Honor: Pacific Assault;7.4;Nov 4, 2004
|
||||||
|
80;Assassin's Creed: Revelations;7.4;Nov 29, 2011
|
||||||
|
80;Grandia II Anniversary Edition;7.6;Aug 24, 2015
|
||||||
|
80;Assassin's Creed III;6.2;Nov 20, 2012
|
||||||
|
80;Madden NFL 07;7.3;Aug 22, 2006
|
||||||
|
80;Outlast;8.4;Sep 4, 2013
|
||||||
|
80;The Chronicles of Riddick: Assault on Dark Athena;8.0;Apr 7, 2009
|
||||||
|
80;Hearts of Iron II: Doomsday;8.8;Apr 7, 2006
|
||||||
|
80;Dishonored: The Brigmore Witches;8.5;Aug 13, 2013
|
||||||
|
80;Codename: Panzers, Phase Two;8.0;Jul 25, 2005
|
||||||
|
80;Full Spectrum Warrior;7.0;Sep 21, 2004
|
||||||
|
80;AI War: Fleet Command;8.4;May 14, 2009
|
||||||
|
80;Freedom Fighters;8.3;Oct 1, 2003
|
||||||
|
80;NBA Live 2003;8.3;Nov 14, 2002
|
||||||
|
80;The Elder Scrolls III: Tribunal;8.2;Nov 6, 2002
|
||||||
|
80;Elite: Dangerous;6.4;Dec 16, 2014
|
||||||
|
80;Pure;6.9;Sep 16, 2008
|
||||||
|
80;Goodbye Deponia;8.1;Oct 17, 2013
|
||||||
|
80;SWAT 4: The Stetchkov Syndicate;8.3;Feb 28, 2006
|
||||||
|
80;Dropsy;7.3;Sep 10, 2015
|
||||||
|
80;Company of Heroes 2: The British Forces;5.9;Sep 3, 2015
|
||||||
|
80;Ground Control II: Operation Exodus;8.8;Jun 23, 2004
|
||||||
|
80;NBA Live 2004;9.0;Nov 11, 2003
|
||||||
|
80;Brutal Legend;7.8;Feb 26, 2013
|
||||||
|
80;Tomb Raider: Underworld;7.6;Nov 18, 2008
|
||||||
|
80;Oxenfree;7.7;Jan 15, 2016
|
||||||
|
80;Titan Quest: Immortal Throne;8.7;Mar 5, 2007
|
||||||
|
80;La-Mulana (Remake);7.1;Jul 13, 2012
|
||||||
|
80;X-Men Legends II: Rise of Apocalypse;8.4;Sep 20, 2005
|
||||||
|
80;SpellForce 2: Shadow Wars;7.6;May 5, 2006
|
||||||
|
80;Fritz 8 Deluxe;7.8;Dec 1, 2004
|
||||||
|
80;Trine;8.2;Sep 11, 2009
|
||||||
|
80;Dishonored: The Knife of Dunwall;8.1;Apr 16, 2013
|
||||||
|
80;Company of Heroes 2;2.0;Jun 25, 2013
|
||||||
|
80;Natural Selection 2;8.4;Oct 30, 2012
|
||||||
|
80;Read Only Memories;7.2;Oct 5, 2015
|
||||||
|
80;The Sims 3: Into the Future;5.4;Oct 22, 2013
|
||||||
|
80;Borderlands 2: Captain Scarlett and Her Pirate's Booty;7.4;Oct 16, 2012
|
||||||
|
80;FATE;8.3;Sep 19, 2006
|
||||||
|
80;2002 FIFA World Cup;7.9;Apr 30, 2002
|
||||||
|
80;Asheron's Call Dark Majesty;8.1;Nov 4, 2001
|
||||||
|
80;The Bug Butcher;8.2;Jan 19, 2016
|
||||||
|
80;Dragonshard;7.4;Oct 2, 2005
|
||||||
|
80;Icewind Dale: Enhanced Edition;7.6;Oct 30, 2014
|
||||||
|
80;The Magic Circle;7.3;Jul 9, 2015
|
||||||
|
80;Far Cry 4;6.6;Nov 18, 2014
|
||||||
|
80;Super Time Force Ultra;6.6;Aug 25, 2014
|
||||||
|
80;Day of Defeat: Source;9.1;Feb 7, 2006
|
||||||
|
80;Battlefield 2142;6.8;Oct 17, 2006
|
||||||
|
80;World of Tanks;3.8;Sep 6, 2011
|
||||||
|
80;Vampire: The Masquerade - Bloodlines;9.0;Nov 16, 2004
|
||||||
|
80;Dark Souls II: Scholar of the First Sin;7.4;Apr 1, 2015
|
||||||
|
80;Warhammer 40,000: Dawn of War II - Retribution;7.8;Mar 1, 2011
|
||||||
|
80;Panzer Corps;7.5;Jul 11, 2011
|
||||||
|
80;Men of War;8.1;Mar 16, 2009
|
||||||
|
80;Fallen Enchantress: Legendary Heroes;7.7;May 22, 2013
|
||||||
|
80;The Walking Dead: Episode 4 - Around Every Corner;8.5;Oct 10, 2012
|
||||||
|
80;Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood;8.4;Oct 30, 2009
|
||||||
|
80;Penny Arcade Adventures: Episode Two;7.7;Nov 7, 2008
|
||||||
|
80;Time Commando;8.9;Jul 31, 1996
|
||||||
|
80;Sins of a Solar Empire: Entrenchment;8.1;Feb 25, 2009
|
||||||
|
80;F1 2012;6.9;Sep 18, 2012
|
||||||
|
80;Luftrausers;6.8;Mar 18, 2014
|
||||||
|
80;Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst;7.9;Oct 24, 2013
|
||||||
|
80;Stealth Bastard Deluxe;8.3;Nov 28, 2012
|
||||||
|
80;Tom Clancy's Ghost Recon Advanced Warfighter;7.7;May 3, 2006
|
||||||
|
80;LEGO Batman: The Videogame;7.9;Sep 23, 2008
|
||||||
|
80;Stacking;7.9;Mar 6, 2012
|
||||||
|
80;Age of Wonders III;7.8;Mar 31, 2014
|
||||||
|
80;Life is Strange: Episode 3 - Chaos Theory;9.0;May 19, 2015
|
||||||
|
80;The Legend of Heroes: Trails in the Sky SC;8.4;Oct 29, 2015
|
||||||
|
80;Proteus;5.6;Jan 30, 2013
|
||||||
|
80;Robin Hood: The Legend of Sherwood;8.3;Nov 14, 2002
|
||||||
|
80;Soldier of Fortune II: Double Helix;7.3;May 20, 2002
|
||||||
|
80;RollerCoaster Tycoon: Loopy Landscapes;9.0;Sep 30, 2000
|
||||||
|
80;Toki Tori;7.9;Jan 28, 2010
|
||||||
|
80;RoboBlitz;8.3;Nov 7, 2006
|
||||||
|
80;Wargame: AirLand Battle;8.1;May 29, 2013
|
||||||
|
80;Football Manager 2015;6.0;Nov 7, 2014
|
||||||
|
80;The Suffering;8.2;Jun 8, 2004
|
||||||
|
80;Gish;7.2;Sep 17, 2004
|
||||||
|
80;Axiom Verge;8.2;May 14, 2015
|
||||||
|
80;Driver: San Francisco;7.0;Sep 27, 2011
|
||||||
|
80;The Corporate Machine;7.5;Jul 14, 2001
|
||||||
|
80;Dungeons & Dragons: Chronicles of Mystara;6.7;Jun 18, 2013
|
||||||
|
80;Disciples II: Rise of the Elves;8.1;Nov 25, 2003
|
||||||
|
80;MechCommander 2;8.3;Jul 18, 2001
|
||||||
|
80;Waterloo: Napoleon's Last Battle;7.5;Mar 25, 2001
|
||||||
|
80;Chessmaster 8000;6.4;Nov 14, 2000
|
||||||
|
80;Circle of Blood;8.6;Sep 30, 1996
|
||||||
|
80;BioShock Infinite: Burial at Sea - Episode Two;8.5;Mar 25, 2014
|
||||||
|
80;S.T.A.L.K.E.R.: Call of Pripyat;8.7;Feb 2, 2010
|
||||||
|
80;The Walking Dead: Season Two - A Telltale Games Series;8.3;Dec 17, 2013
|
||||||
|
80;FLY'N;8.2;Nov 9, 2012
|
||||||
|
80;Total War: Attila;7.3;Feb 17, 2015
|
||||||
|
80;The Wolf Among Us;8.8;Oct 11, 2013
|
||||||
|
80;Nancy Drew: Secret of the Old Clock;8.1;Jul 26, 2005
|
||||||
|
80;ArcheAge;3.6;Sep 16, 2014
|
||||||
|
80;CAPSIZED;7.1;Apr 29, 2011
|
||||||
|
80;Microsoft Flight Simulator X;7.6;Oct 17, 2006
|
||||||
|
80;Myst V: End of Ages;7.8;Sep 19, 2005
|
||||||
|
80;Railroad Tycoon 3;7.7;Oct 23, 2003
|
||||||
|
80;Hostile Waters: Antaeus Rising;8.1;Jun 13, 2001
|
||||||
|
79;Dustforce;7.9;Jan 17, 2012
|
||||||
|
79;Empire Earth II;7.0;Apr 26, 2005
|
||||||
|
79;Fallout 3: Point Lookout;7.8;Jun 23, 2009
|
||||||
|
79;Test Drive Unlimited;8.1;Mar 20, 2007
|
||||||
|
79;Dying Light: The Following;8.3;Feb 9, 2016
|
||||||
|
79;The Path;7.0;Mar 18, 2009
|
||||||
|
79;Dungeon of the Endless;8.0;Oct 27, 2014
|
||||||
|
79;Revenge of the Titans;7.6;May 24, 2010
|
||||||
|
79;Bookworm Adventures: Volume 2;7.6;Jul 30, 2009
|
||||||
|
79;F1 2001;7.5;Oct 14, 2001
|
||||||
|
79;Brothers in Arms: Hell's Highway;7.9;Oct 7, 2008
|
||||||
|
79;Star Wars: Empire at War;8.4;Feb 15, 2006
|
||||||
|
79;Dariusburst: Chronicle Saviours;8.3;Dec 3, 2015
|
||||||
|
79;Europa Universalis: Rome - Vae Victis;8.6;Nov 19, 2008
|
||||||
|
79;Silent Hunter: Wolves of the Pacific;6.5;Mar 20, 2007
|
||||||
|
79;Pillars of Eternity: The White March - Part 2;6.7;Feb 16, 2016
|
||||||
|
79;1701 A.D.;8.3;Nov 6, 2006
|
||||||
|
79;Stasis;7.6;Aug 31, 2015
|
||||||
|
79;Pro Evolution Soccer 2009;7.4;Nov 12, 2008
|
||||||
|
79;Return to Mysterious Island;8.5;Nov 2, 2004
|
||||||
|
79;Jotun;7.0;Sep 29, 2015
|
||||||
|
79;Else Heart.Break();7.5;Sep 24, 2015
|
||||||
|
79;Kohan: Ahriman's Gift;8.7;Nov 5, 2001
|
||||||
|
79;Emperor: Battle for Dune;8.3;Jun 12, 2001
|
||||||
|
79;Trackmania Turbo;6.9;Mar 24, 2016
|
||||||
|
79;Cart Life;5.9;Jul 29, 2010
|
||||||
|
79;Sword of the Stars: Born of Blood;8.1;Jun 5, 2007
|
||||||
|
79;Worms Reloaded;6.7;Aug 26, 2010
|
||||||
|
79;Warhammer: End Times - Vermintide;7.9;Oct 23, 2015
|
||||||
|
79;Euro Truck Simulator 2;8.7;Jan 16, 2013
|
||||||
|
79;Tropico 3;8.2;Oct 20, 2009
|
||||||
|
79;Cities: Skylines - After Dark;7.9;Sep 24, 2015
|
||||||
|
79;Runaway: A Twist of Fate;8.5;Apr 21, 2011
|
||||||
|
79;Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal;8.2;Jul 7, 2009
|
||||||
|
79;Bloodline Champions;8.0;Jan 13, 2011
|
||||||
|
79;The Sims: Superstar;8.2;May 12, 2003
|
||||||
|
79;NBA Live 2005;8.5;Oct 26, 2004
|
||||||
|
79;Valiant Hearts: The Great War;8.6;Jun 25, 2014
|
||||||
|
79;Payday 2;3.4;Aug 13, 2013
|
||||||
|
79;Dungeons of Dredmor;7.8;Jul 13, 2011
|
||||||
|
79;Geometry Wars 3: Dimensions;6.2;Nov 25, 2014
|
||||||
|
79;Assassin's Creed: Director's Cut Edition;7.5;Apr 8, 2008
|
||||||
|
79;Puzzle Dimension;7.6;Jun 21, 2010
|
||||||
|
79;Split/Second;8.2;May 18, 2010
|
||||||
|
79;Sang-Froid: Tales of Werewolves;7.9;Apr 5, 2013
|
||||||
|
79;The Incredible Adventures of Van Helsing: Final Cut;7.2;Oct 7, 2015
|
||||||
|
79;Hitman: Absolution;7.0;Nov 19, 2012
|
||||||
|
79;Call of Juarez: Gunslinger;8.2;May 22, 2013
|
||||||
|
79;Rome: Total War Alexander;7.6;Jun 19, 2006
|
||||||
|
79;Strong Bad's Cool Game for Attractive People Episode 3: Baddest of the Bands;8.1;Oct 27, 2008
|
||||||
|
79;Sam & Max Episode 102: Situation: Comedy;7.9;Dec 20, 2006
|
||||||
|
79;Tropico 3: Absolute Power;7.7;May 17, 2010
|
||||||
|
79;Sam & Max Episode 106: Bright Side of the Moon;7.3;Apr 26, 2007
|
||||||
|
79;Day of Defeat;9.3;May 6, 2003
|
||||||
|
79;Space Empires: IV;8.3;Nov 6, 2000
|
||||||
|
79;Resident Evil 4: Ultimate HD Edition;7.7;Feb 27, 2014
|
||||||
|
79;Sam & Max Episode 203: Night of the Raving Dead;8.2;Feb 12, 2008
|
||||||
|
79;FlatOut: Ultimate Carnage;7.6;Sep 2, 2008
|
||||||
|
79;Guitar Hero III: Legends of Rock;7.2;Nov 13, 2007
|
||||||
|
79;Sid Meier's Civilization: Beyond Earth - Rising Tide;5.9;Oct 9, 2015
|
||||||
|
79;Memoria;8.5;Aug 29, 2013
|
||||||
|
79;The Last Door;7.8;May 20, 2014
|
||||||
|
79;Shadowgrounds Survivor;7.8;Dec 6, 2007
|
||||||
|
79;Gothic II;8.8;Oct 28, 2003
|
||||||
|
79;Port Royale;8.2;Jun 4, 2003
|
||||||
|
79;Deadly Dozen: Pacific Theater;7.9;Oct 31, 2002
|
||||||
|
79;Shattered Galaxy;8.3;Aug 21, 2001
|
||||||
|
79;Close Combat: Invasion: Normandy;8.2;Oct 10, 2000
|
||||||
|
79;King's Bounty: The Legend;8.6;Sep 23, 2008
|
||||||
|
79;Rage;5.1;Oct 4, 2011
|
||||||
|
79;The Misadventures of P.B. Winterbottom;8.3;Apr 20, 2010
|
||||||
|
79;Uru: Ages Beyond Myst;7.4;Nov 11, 2003
|
||||||
|
79;Guild Wars: Eye of the North;8.6;Aug 28, 2007
|
||||||
|
79;Tales From The Borderlands: Episode 4 - Escape Plan Bravo;8.4;Aug 18, 2015
|
||||||
|
79;EverQuest: Lost Dungeons of Norrath;7.0;Sep 8, 2003
|
||||||
|
79;Battlefield 1942: Secret Weapons of WWII;8.5;Sep 4, 2003
|
||||||
|
79;The Sims: Unleashed;8.0;Sep 23, 2002
|
||||||
|
79;Race the Sun;7.5;Aug 19, 2013
|
||||||
|
79;The Sims 3: Pets;6.1;Oct 18, 2011
|
||||||
|
79;Prototype;7.9;Jun 10, 2009
|
||||||
|
79;Stick it to the Man!;7.2;Dec 13, 2013
|
||||||
|
79;Street Fighter X Tekken;6.4;May 11, 2012
|
||||||
|
79;Frozen Cortex;6.5;Feb 19, 2015
|
||||||
|
79;Free Realms;6.4;Apr 29, 2009
|
||||||
|
79;Homeworld: Deserts of Kharak;8.0;Jan 20, 2016
|
||||||
|
79;Don't Starve;8.3;Apr 23, 2013
|
||||||
|
79;Assault Android Cactus;7.0;Sep 23, 2015
|
||||||
|
79;Trainz;7.2;Feb 10, 2002
|
||||||
|
79;King Arthur: The Role-Playing Wargame;7.9;Nov 24, 2009
|
||||||
|
79;Chivalry: Medieval Warfare;7.8;Oct 16, 2012
|
||||||
|
79;Overlord II;8.1;Jun 23, 2009
|
||||||
|
79;F.E.A.R. 2: Project Origin;7.8;Feb 10, 2009
|
||||||
|
79;Tom Clancy's Rainbow Six Siege;6.9;Dec 1, 2015
|
||||||
|
79;The Settlers 7: Paths to a Kingdom;5.2;Mar 23, 2010
|
||||||
|
79;RollerCoaster Tycoon 3: Soaked!;2.9;Jun 23, 2005
|
||||||
|
79;Dark Souls II: Crown of the Old Iron King;7.6;Aug 26, 2014
|
||||||
|
79;TrackMania 2 Valley;8.3;Jul 4, 2013
|
||||||
|
79;State of Decay;6.8;Nov 5, 2013
|
||||||
|
79;LEGO Harry Potter: Years 1-4;7.8;Jun 29, 2010
|
||||||
|
79;Rift: Storm Legion;7.8;Nov 13, 2012
|
||||||
|
79;Crayon Physics Deluxe;7.6;Jan 7, 2009
|
||||||
|
79;Nancy Drew: Legend of the Crystal Skull;8.5;Oct 8, 2007
|
||||||
|
79;EverQuest II: Desert of Flames;7.8;Sep 12, 2005
|
||||||
|
79;SimCity 4: Rush Hour;8.6;Sep 22, 2003
|
||||||
|
79;Uncommon Valor: Campaign for the South Pacific;7.6;Dec 2, 2002
|
||||||
|
79;Global Operations;8.3;Mar 25, 2002
|
||||||
|
78;Apotheon;7.8;Feb 3, 2015
|
||||||
|
78;Need for Speed: Most Wanted - A Criterion Game;4.4;Oct 30, 2012
|
||||||
|
78;Star Wars: Battlefront II;8.8;Oct 31, 2005
|
||||||
|
78;The Walking Dead: Season Two Episode 1 - All That Remains;8.5;Dec 17, 2013
|
||||||
|
78;The Journey Down: Chapter Two;7.1;Aug 25, 2014
|
||||||
|
78;Star Trek: Elite Force II;7.6;Jun 25, 2003
|
||||||
|
78;Zuma's Revenge!;7.9;Sep 15, 2009
|
||||||
|
78;Baldur's Gate: Enhanced Edition;7.0;Nov 28, 2012
|
||||||
|
78;Doom 3: Resurrection of Evil;6.0;Apr 4, 2005
|
||||||
|
78;LEGO Indiana Jones: The Original Adventures;7.7;Jun 3, 2008
|
||||||
|
78;NASCAR Thunder 2004;7.5;Sep 16, 2003
|
||||||
|
78;Transformers: Fall of Cybertron;7.8;Aug 21, 2012
|
||||||
|
78;FIFA Soccer 06;6.7;Oct 4, 2005
|
||||||
|
78;DeadCore;6.8;Oct 17, 2014
|
||||||
|
78;The Walking Dead: Season Two Episode 5 - No Going Back;8.5;Aug 26, 2014
|
|
@ -0,0 +1,994 @@
|
||||||
|
96;Half-Life 2;9.2;Nov 16, 2004
|
||||||
|
96;Grand Theft Auto V;7.8;Apr 14, 2015
|
||||||
|
96;The Orange Box;9.3;Oct 10, 2007
|
||||||
|
96;Half-Life;9.1;Oct 31, 1998
|
||||||
|
96;BioShock;8.4;Aug 21, 2007
|
||||||
|
95;Baldur's Gate II: Shadows of Amn;9.2;Sep 24, 2000
|
||||||
|
95;Portal 2;8.8;Apr 19, 2011
|
||||||
|
94;The Elder Scrolls V: Skyrim;8.1;Nov 11, 2011
|
||||||
|
94;Mass Effect 2;8.7;Jan 26, 2010
|
||||||
|
94;Grand Theft Auto: Vice City;8.8;May 12, 2003
|
||||||
|
94;Civilization II;9.0;Feb 29, 1996
|
||||||
|
94;Quake;8.8;Jun 22, 1996
|
||||||
|
94;BioShock Infinite;8.5;Mar 26, 2013
|
||||||
|
94;The Elder Scrolls IV: Oblivion;8.0;Mar 20, 2006
|
||||||
|
94;Grim Fandango;9.1;Sep 30, 1998
|
||||||
|
94;Diablo;8.7;Nov 30, 1996
|
||||||
|
94;Sid Meier's Civilization IV;8.2;Oct 25, 2005
|
||||||
|
93;The Witcher 3: Wild Hunt;9.1;May 19, 2015
|
||||||
|
93;Company of Heroes;8.8;Sep 13, 2006
|
||||||
|
93;Unreal Tournament 2004;8.9;Mar 16, 2004
|
||||||
|
93;Starcraft II: Wings of Liberty;8.2;Jul 27, 2010
|
||||||
|
93;Minecraft;7.4;May 10, 2009
|
||||||
|
93;Grand Theft Auto III;8.4;May 20, 2002
|
||||||
|
93;Homeworld;8.9;Aug 31, 1999
|
||||||
|
93;Star Wars: Knights of the Old Republic;9.0;Nov 18, 2003
|
||||||
|
93;World of Warcraft;7.2;Nov 23, 2004
|
||||||
|
93;Grand Theft Auto: San Andreas;8.8;Jun 7, 2005
|
||||||
|
92;Call of Duty 4: Modern Warfare;8.5;Nov 5, 2007
|
||||||
|
92;Warcraft III: Reign of Chaos;9.1;Jul 3, 2002
|
||||||
|
92;The Sims;7.9;Jan 31, 2000
|
||||||
|
92;Sid Meier's Gettysburg!;7.7;Sep 30, 1997
|
||||||
|
92;World Soccer Winning Eleven 7 International;7.9;Apr 9, 2004
|
||||||
|
92;Team Fortress 2;9.2;Apr 8, 2008
|
||||||
|
92;System Shock 2;9.1;Aug 11, 1999
|
||||||
|
92;Tom Clancy's Splinter Cell: Chaos Theory;8.8;Mar 28, 2005
|
||||||
|
92;Undertale;8.2;Sep 15, 2015
|
||||||
|
92;Rome: Total War;9.1;Sep 22, 2004
|
||||||
|
92;Thief: The Dark Project;9.1;Nov 30, 1998
|
||||||
|
92;Age of Empires II: The Age of Kings;9.0;Sep 30, 1999
|
||||||
|
92;Unreal Tournament (1999);9.1;Nov 30, 1999
|
||||||
|
92;Sid Meier's Alpha Centauri;9.1;Feb 12, 1999
|
||||||
|
92;Galactic Civilizations II: Twilight of the Arnor;8.4;Apr 30, 2008
|
||||||
|
92;Tiger Woods PGA Tour 2003;6.0;Oct 31, 2002
|
||||||
|
91;Dishonored;8.4;Oct 9, 2012
|
||||||
|
91;Medal of Honor: Allied Assault;8.6;Jan 20, 2002
|
||||||
|
91;Myth: The Fallen Lords;8.8;Oct 31, 1997
|
||||||
|
91;World of Warcraft: Wrath of the Lich King;7.4;Nov 13, 2008
|
||||||
|
91;F1 Challenge '99-'02;8.3;Jun 24, 2003
|
||||||
|
91;Baldur's Gate;9.0;Nov 30, 1998
|
||||||
|
91;IL-2 Sturmovik;8.7;Nov 18, 2001
|
||||||
|
91;FreeSpace 2;8.8;Sep 30, 1999
|
||||||
|
91;Metal Gear Solid V: The Phantom Pain;7.7;Sep 1, 2015
|
||||||
|
91;Tom Clancy's Splinter Cell;8.6;Feb 19, 2003
|
||||||
|
91;Crysis;8.0;Nov 13, 2007
|
||||||
|
91;World of Warcraft: The Burning Crusade;7.9;Jan 16, 2007
|
||||||
|
91;Tiger Woods PGA Tour 2005;4.6;Sep 20, 2004
|
||||||
|
91;The Longest Journey;8.9;Nov 16, 2000
|
||||||
|
91;Tony Hawk's Pro Skater 2;8.5;Oct 31, 2000
|
||||||
|
91;Star Wars Jedi Knight: Dark Forces II;8.5;Sep 30, 1997
|
||||||
|
91;Batman: Arkham Asylum;8.7;Sep 15, 2009
|
||||||
|
91;Galactic Civilizations II: Dark Avatar;8.2;Feb 14, 2007
|
||||||
|
91;The Operative: No One Lives Forever;8.9;Nov 9, 2000
|
||||||
|
91;Battlefield 2;8.4;Jun 21, 2005
|
||||||
|
91;Street Fighter IV;8.0;Jul 1, 2009
|
||||||
|
91;Fallout 3;7.9;Oct 28, 2008
|
||||||
|
91;Batman: Arkham City;8.6;Nov 22, 2011
|
||||||
|
91;Fez;6.5;May 1, 2013
|
||||||
|
91;Planescape: Torment;9.3;Nov 30, 1999
|
||||||
|
91;Neverwinter Nights;8.1;Jun 16, 2002
|
||||||
|
91;No One Lives Forever 2: A Spy in H.A.R.M.'s Way;8.7;Sep 30, 2002
|
||||||
|
91;Dragon Age: Origins;8.6;Nov 3, 2009
|
||||||
|
91;Mark of the Ninja;8.0;Oct 16, 2012
|
||||||
|
91;Dark Souls II;7.1;Apr 25, 2014
|
||||||
|
91;Call of Duty;8.5;Oct 29, 2003
|
||||||
|
91;Madden NFL 2004;8.2;Aug 12, 2003
|
||||||
|
90;The Sims 2;8.8;Sep 14, 2004
|
||||||
|
90;World of Warcraft: Cataclysm;5.5;Dec 7, 2010
|
||||||
|
90;World of Goo;8.5;Oct 21, 2008
|
||||||
|
90;Spelunky;7.2;Aug 8, 2013
|
||||||
|
90;Black & White;7.6;Mar 26, 2001
|
||||||
|
90;Portal;9.3;Apr 8, 2008
|
||||||
|
90;NHL 2001;6.9;Sep 28, 2000
|
||||||
|
90;Tony Hawk's Pro Skater 3;8.6;Mar 28, 2002
|
||||||
|
90;Deus Ex;9.3;Jun 26, 2000
|
||||||
|
90;Half-Life 2: Episode Two;9.2;Oct 10, 2007
|
||||||
|
90;Braid;8.6;Jan 26, 2010
|
||||||
|
90;The Chronicles of Riddick: Escape From Butcher Bay - Developer's Cut;8.7;Dec 8, 2004
|
||||||
|
90;Sid Meier's Civilization III;8.4;Oct 30, 2001
|
||||||
|
90;Silent Hunter III;7.8;Mar 15, 2005
|
||||||
|
90;Sid Meier's Civilization V;7.8;Sep 21, 2010
|
||||||
|
90;Falcon 4.0: Allied Force;8.6;Jun 28, 2005
|
||||||
|
90;Deus Ex: Human Revolution;8.5;Aug 23, 2011
|
||||||
|
90;Dark Souls III;8.2;Apr 12, 2016
|
||||||
|
90;Flight Simulator 2002;8.4;Oct 19, 2001
|
||||||
|
90;Brothers: A Tale of Two Sons;8.5;Sep 3, 2013
|
||||||
|
90;Dota 2;6.2;Jul 9, 2013
|
||||||
|
90;Guild Wars 2;7.9;Aug 28, 2012
|
||||||
|
90;Freedom Force;8.0;Mar 24, 2002
|
||||||
|
90;GTR 2;8.7;Sep 29, 2006
|
||||||
|
90;Grand Theft Auto IV;6.5;Dec 2, 2008
|
||||||
|
90;Total War: Shogun 2;8.3;Mar 15, 2011
|
||||||
|
90;Empire: Total War;6.9;Mar 3, 2009
|
||||||
|
90;Command & Conquer: Red Alert;8.9;Oct 31, 1996
|
||||||
|
89;Star Wars Jedi Knight II: Jedi Outcast;8.6;Mar 26, 2002
|
||||||
|
89;The Walking Dead: A Telltale Games Series;8.7;Dec 11, 2012
|
||||||
|
89;Age of Mythology;8.9;Nov 1, 2002
|
||||||
|
89;Sacrifice;8.8;Nov 5, 2000
|
||||||
|
89;The Witcher 3: Wild Hunt - Hearts of Stone;8.4;Oct 13, 2015
|
||||||
|
89;Pillars of Eternity;8.3;Mar 26, 2015
|
||||||
|
89;The Elder Scrolls III: Morrowind;9.0;May 1, 2002
|
||||||
|
89;Rocksmith 2014 Edition;7.9;Oct 22, 2013
|
||||||
|
89;Fallout;8.9;Sep 30, 1997
|
||||||
|
89;World Soccer Winning Eleven 9;8.4;Apr 28, 2006
|
||||||
|
89;Worldwide Soccer Manager 2005;8.7;Dec 7, 2004
|
||||||
|
89;Left 4 Dead;9.2;Nov 18, 2008
|
||||||
|
89;Left 4 Dead 2;8.5;Nov 17, 2009
|
||||||
|
89;NASCAR Racing 2002 Season;5.8;Feb 14, 2002
|
||||||
|
89;Mass Effect;8.6;May 28, 2008
|
||||||
|
89;Combat Mission: Barbarossa to Berlin;8.3;Oct 29, 2002
|
||||||
|
89;Homeworld: Cataclysm;8.9;Sep 7, 2000
|
||||||
|
89;The Walking Dead: Episode 5 - No Time Left;8.9;Nov 21, 2012
|
||||||
|
89;Guild Wars;8.4;Apr 26, 2005
|
||||||
|
89;Borderlands 2;8.2;Sep 18, 2012
|
||||||
|
89;Max Payne;9.1;Jul 23, 2001
|
||||||
|
89;Out of the Park Baseball 15;7.2;Apr 21, 2014
|
||||||
|
89;World in Conflict;8.1;Sep 18, 2007
|
||||||
|
89;NASCAR Racing 4;8.2;Feb 6, 2001
|
||||||
|
89;Duke Nukem 3D;8.8;Jan 31, 1996
|
||||||
|
89;Far Cry;8.0;Mar 23, 2004
|
||||||
|
89;FIFA Soccer 12;7.1;Sep 27, 2011
|
||||||
|
89;XCOM: Enemy Unknown;8.2;Oct 9, 2012
|
||||||
|
89;Mass Effect 3;5.4;Mar 6, 2012
|
||||||
|
89;Rise of Nations;9.0;May 20, 2003
|
||||||
|
89;NASCAR Racing 2003 Season;8.6;Feb 14, 2003
|
||||||
|
89;Descent 3;8.3;Jun 14, 2000
|
||||||
|
89;The Curse of Monkey Island;9.1;Oct 31, 1997
|
||||||
|
89;Battlefield 3;7.5;Oct 25, 2011
|
||||||
|
89;Battlefield 1942;8.6;Sep 10, 2002
|
||||||
|
89;Madden NFL 2003;8.4;Aug 12, 2002
|
||||||
|
89;DiRT 2;8.3;Dec 10, 2009
|
||||||
|
89;Stardew Valley;8.5;Feb 26, 2016
|
||||||
|
89;Prince of Persia: The Sands of Time;8.6;Nov 30, 2003
|
||||||
|
89;Railroad Tycoon II;8.4;Oct 31, 1998
|
||||||
|
88;Microsoft Flight Simulator 2004: A Century of Flight;8.2;Jul 29, 2003
|
||||||
|
88;Medieval: Total War;8.8;Aug 19, 2002
|
||||||
|
88;Mafia;9.1;Aug 27, 2002
|
||||||
|
88;LIMBO;8.1;Aug 2, 2011
|
||||||
|
88;Nuclear Throne;7.4;Dec 5, 2015
|
||||||
|
88;Crusader Kings II: The Old Gods;8.8;May 28, 2013
|
||||||
|
88;Assassin's Creed: Brotherhood;8.2;Mar 22, 2011
|
||||||
|
88;Superbike 2001;6.5;Oct 9, 2000
|
||||||
|
88;F.E.A.R.;8.3;Oct 17, 2005
|
||||||
|
88;Kerbal Space Program;8.1;Apr 27, 2015
|
||||||
|
88;Tribes 2;8.5;Mar 28, 2001
|
||||||
|
88;Age of Empires II: The Conquerors Expansion;9.0;Aug 24, 2000
|
||||||
|
88;Tiger Woods PGA Tour 2004;8.8;Sep 22, 2003
|
||||||
|
88;Warcraft III: The Frozen Throne;9.0;Jul 1, 2003
|
||||||
|
88;Starcraft;9.1;Apr 1, 1998
|
||||||
|
88;Far Cry 3;8.2;Dec 4, 2012
|
||||||
|
88;XCOM 2;7.0;Feb 5, 2016
|
||||||
|
88;World Soccer Winning Eleven 8 International;8.5;Feb 16, 2005
|
||||||
|
88;Torchlight II;8.6;Sep 20, 2012
|
||||||
|
88;Myth II: Soulblighter;9.0;Nov 30, 1998
|
||||||
|
88;Return to Castle Wolfenstein;8.7;Nov 19, 2001
|
||||||
|
88;Shogo: Mobile Armor Division;8.9;Sep 30, 1998
|
||||||
|
88;Thirty Flights of Loving;5.0;Aug 20, 2012
|
||||||
|
88;Hearthstone: Heroes of Warcraft;6.3;Mar 11, 2014
|
||||||
|
88;Medieval II: Total War;8.9;Nov 13, 2006
|
||||||
|
88;F1 2002;7.6;Jun 13, 2002
|
||||||
|
88;The Stanley Parable;8.0;Oct 17, 2013
|
||||||
|
88;BioShock 2;8.0;Feb 9, 2010
|
||||||
|
88;Counter-Strike: Source;8.9;Sep 26, 2005
|
||||||
|
88;Starcraft II: Legacy of the Void;8.3;Nov 10, 2015
|
||||||
|
88;Diablo III;4.0;May 15, 2012
|
||||||
|
88;Rise of Nations: Thrones & Patriots;8.8;Apr 27, 2004
|
||||||
|
88;Sid Meier's Pirates!;8.3;Nov 22, 2004
|
||||||
|
88;EVE Online: Special Edition;7.8;Mar 10, 2009
|
||||||
|
88;Guacamelee! Gold Edition;7.3;Aug 8, 2013
|
||||||
|
88;Armadillo Run;8.2;Apr 22, 2006
|
||||||
|
88;Dark Age of Camelot;8.9;Sep 1, 2001
|
||||||
|
88;Baldur's Gate II: Throne of Bhaal;8.9;Jun 21, 2001
|
||||||
|
88;Counter-Strike;9.3;Nov 8, 2000
|
||||||
|
88;Tony Hawk's Pro Skater 4;8.4;Aug 27, 2003
|
||||||
|
88;Ori and the Blind Forest;8.7;Mar 11, 2015
|
||||||
|
88;Diablo II;8.8;Jun 29, 2000
|
||||||
|
88;The Witcher 2: Assassins of Kings;8.5;May 17, 2011
|
||||||
|
87;Plants vs. Zombies;8.9;Aug 18, 2009
|
||||||
|
87;Doom 3;7.5;Aug 3, 2004
|
||||||
|
87;Super Meat Boy;8.3;Apr 5, 2011
|
||||||
|
87;Football Manager 2010;9.1;Nov 3, 2009
|
||||||
|
87;Oddworld: Abe's Oddysee - New 'n' Tasty;7.8;Feb 25, 2015
|
||||||
|
87;Tom Clancy's Splinter Cell: Pandora Tomorrow;8.0;Mar 23, 2004
|
||||||
|
87;Europa Universalis II;8.8;Nov 12, 2001
|
||||||
|
87;Burnout Paradise: The Ultimate Box;7.5;Feb 5, 2009
|
||||||
|
87;Battlefield: Bad Company 2;8.3;Mar 2, 2010
|
||||||
|
87;GRID;7.9;Jun 3, 2008
|
||||||
|
87;Crypt of the NecroDancer;7.7;Apr 23, 2015
|
||||||
|
87;Sins of a Solar Empire;8.2;Feb 4, 2008
|
||||||
|
87;MechWarrior 4: Vengeance;8.2;Nov 23, 2000
|
||||||
|
87;Thief II: The Metal Age;9.1;Feb 29, 2000
|
||||||
|
87;Diablo II: Lord of Destruction;9.1;Jun 27, 2001
|
||||||
|
87;Monkey Island 2 Special Edition: LeChuck's Revenge;9.0;Jul 7, 2010
|
||||||
|
87;Half-Life 2: Episode One;8.6;Jun 1, 2006
|
||||||
|
87;The Swapper;8.7;May 30, 2013
|
||||||
|
87;Hitman 2: Silent Assassin;8.2;Oct 1, 2002
|
||||||
|
87;Year Walk;7.0;Mar 6, 2014
|
||||||
|
87;Max Payne 3;7.6;Jun 1, 2012
|
||||||
|
87;TowerFall Ascension;6.6;Mar 11, 2014
|
||||||
|
87;Battlefield 3: Armored Kill;7.0;Sep 11, 2012
|
||||||
|
87;NHL 2002;8.7;Sep 17, 2001
|
||||||
|
87;Icewind Dale;8.3;Jun 29, 2000
|
||||||
|
87;The Witness;6.6;Jan 26, 2016
|
||||||
|
87;Brothers in Arms: Road to Hill 30;7.1;Mar 15, 2005
|
||||||
|
87;Kohan: Immortal Sovereigns;8.6;Mar 14, 2001
|
||||||
|
87;Day of the Tentacle Remastered;7.9;Mar 21, 2016
|
||||||
|
87;Dead Space 2;8.3;Jan 25, 2011
|
||||||
|
87;Diablo III: Reaper of Souls;6.6;Mar 25, 2014
|
||||||
|
87;Shogun: Total War Warlord Edition;8.7;Aug 13, 2001
|
||||||
|
87;Serious Sam: The First Encounter;8.4;Mar 21, 2001
|
||||||
|
87;Grand Prix 3;8.3;Aug 24, 2000
|
||||||
|
87;Call of Duty: United Offensive;8.3;Sep 14, 2004
|
||||||
|
87;Divinity: Original Sin;8.7;Jan 17, 2014
|
||||||
|
87;Company of Heroes: Opposing Fronts;8.6;Sep 24, 2007
|
||||||
|
87;Psychonauts;8.9;Apr 19, 2005
|
||||||
|
87;Gears of War;7.8;Nov 6, 2007
|
||||||
|
87;Out of the Park Baseball 4;7.8;Feb 28, 2002
|
||||||
|
87;Europa Universalis IV;8.7;Aug 13, 2013
|
||||||
|
87;NHL 2004;8.2;Sep 22, 2003
|
||||||
|
87;Zeus: Master of Olympus;9.0;Oct 22, 2000
|
||||||
|
87;World of Warcraft: Warlords of Draenor;6.0;Nov 13, 2014
|
||||||
|
87;Warhammer 40,000: Dawn of War - Dark Crusade;8.9;Oct 9, 2006
|
||||||
|
87;Commandos 2: Men of Courage;8.8;Sep 20, 2001
|
||||||
|
86;Tales From The Borderlands: Episode 5 - The Vault of the Traveler;8.7;Oct 20, 2015
|
||||||
|
86;Bastion;8.6;Aug 16, 2011
|
||||||
|
86;Gone Home;5.4;Aug 15, 2013
|
||||||
|
86;Pac-Man Championship Edition DX +;7.3;Sep 24, 2013
|
||||||
|
86;Supreme Commander;8.3;Feb 20, 2007
|
||||||
|
86;Total War: Shogun 2 - Fall of the Samurai;8.4;Mar 23, 2012
|
||||||
|
86;Startopia;8.7;Jun 19, 2001
|
||||||
|
86;Enemy Engaged: RAH-66 Comanche Versus Ka-52 Hokum;8.3;Jul 31, 2000
|
||||||
|
86;Fallout 2;9.2;Sep 30, 1998
|
||||||
|
86;Final Fantasy XIV: Heavensward;7.7;Jun 23, 2015
|
||||||
|
86;Football Manager 2013;6.7;Nov 1, 2012
|
||||||
|
86;Out of the Park Baseball 14;8.6;Apr 15, 2013
|
||||||
|
86;The Witcher: Enhanced Edition;8.5;Sep 16, 2008
|
||||||
|
86;Borderlands: The Secret Armory of General Knoxx;7.6;Feb 25, 2010
|
||||||
|
86;Call of Duty 2;8.3;Oct 25, 2005
|
||||||
|
86;Astebreed;7.3;May 30, 2014
|
||||||
|
86;Ground Control;7.8;May 31, 2000
|
||||||
|
86;Rise of the Tomb Raider;8.0;Jan 28, 2016
|
||||||
|
86;Resident Evil 5;7.1;Sep 18, 2009
|
||||||
|
86;Saints Row IV;7.4;Aug 20, 2013
|
||||||
|
86;Black Mesa;9.0;Sep 14, 2012
|
||||||
|
86;EverQuest: Omens of War;7.7;Sep 13, 2004
|
||||||
|
86;Steel Beasts;8.4;Sep 24, 2000
|
||||||
|
86;Total Annihilation;8.9;Sep 30, 1997
|
||||||
|
86;Need for Speed: Hot Pursuit;6.7;Nov 16, 2010
|
||||||
|
86;FIFA Soccer 13;6.6;Sep 25, 2012
|
||||||
|
86;Sid Meier's Civilization IV: Beyond the Sword;8.6;Jul 23, 2007
|
||||||
|
86;The Sims 3;7.6;Jun 2, 2009
|
||||||
|
86;Freedom Force vs The 3rd Reich;7.7;Mar 8, 2005
|
||||||
|
86;The Binding of Isaac: Rebirth;8.3;Nov 4, 2014
|
||||||
|
86;Tribes: Ascend;7.7;Apr 12, 2012
|
||||||
|
86;Titanfall;6.1;Mar 11, 2014
|
||||||
|
86;Rayman Origins;8.4;Mar 29, 2012
|
||||||
|
86;Her Story;5.7;Jun 24, 2015
|
||||||
|
86;Starcraft II: Heart of the Swarm;7.9;Mar 12, 2013
|
||||||
|
86;Mass Effect 2: Lair of the Shadow Broker;8.5;Sep 7, 2010
|
||||||
|
86;LEGO Star Wars II: The Original Trilogy;8.3;Sep 12, 2006
|
||||||
|
86;Dungeon Siege;7.9;Mar 31, 2002
|
||||||
|
86;Crysis 2;6.7;Mar 22, 2011
|
||||||
|
86;Call of Duty: Modern Warfare 2;4.1;Nov 10, 2009
|
||||||
|
86;The Secret of Monkey Island: Special Edition;9.1;Jul 15, 2009
|
||||||
|
86;Max Payne 2: The Fall of Max Payne;9.0;Oct 14, 2003
|
||||||
|
86;Homeworld Remastered Collection;8.2;Feb 25, 2015
|
||||||
|
86;Galactic Civilizations II: Dread Lords;8.0;Feb 21, 2006
|
||||||
|
86;Tomb Raider;8.5;Mar 5, 2013
|
||||||
|
86;Star Trek: Voyager Elite Force;8.2;Sep 20, 2000
|
||||||
|
86;Worldwide Soccer Manager 2008;8.4;Oct 23, 2007
|
||||||
|
86;IL-2 Sturmovik: Forgotten Battles;8.6;Mar 2, 2003
|
||||||
|
86;Hyper Light Drifter;8.1;Mar 31, 2016
|
||||||
|
86;DiRT 3;6.9;May 24, 2011
|
||||||
|
86;Unreal Tournament 2003;8.1;Sep 30, 2002
|
||||||
|
86;Age of Wonders II: The Wizard's Throne;8.4;Jun 12, 2002
|
||||||
|
86;Links 2001;6.8;Oct 24, 2000
|
||||||
|
86;EverQuest: The Ruins of Kunark;8.8;Mar 31, 2000
|
||||||
|
86;Full Throttle;8.8;Apr 30, 1995
|
||||||
|
86;The Lord of the Rings Online: Shadows of Angmar;8.1;Apr 24, 2007
|
||||||
|
86;Pony Island;6.8;Jan 4, 2016
|
||||||
|
86;Warhammer 40,000: Dawn of War;8.8;Sep 20, 2004
|
||||||
|
86;Warhammer Online: Age of Reckoning;7.9;Sep 16, 2008
|
||||||
|
86;Dead Space;8.0;Oct 20, 2008
|
||||||
|
86;Bionic Commando Rearmed;7.0;Aug 13, 2008
|
||||||
|
86;Command & Conquer: Red Alert 2 - Yuri's Revenge;9.0;Oct 10, 2001
|
||||||
|
86;Europa Universalis;8.1;Feb 2, 2001
|
||||||
|
86;Escape from Monkey Island;8.2;Nov 8, 2000
|
||||||
|
86;IL-2 Sturmovik: 1946;8.8;Mar 13, 2007
|
||||||
|
86;XCOM: Enemy Within;7.9;Nov 12, 2013
|
||||||
|
86;Battlefield 3: Back to Karkand;7.2;Dec 13, 2011
|
||||||
|
86;Heroes of the Storm;6.7;Jun 2, 2015
|
||||||
|
86;Civilization III: Conquests;8.4;Nov 4, 2003
|
||||||
|
86;Path of Exile;8.0;Jan 25, 2013
|
||||||
|
86;Battlefield: Bad Company 2 Vietnam;8.1;Dec 18, 2010
|
||||||
|
86;Assassin's Creed II;6.8;Mar 9, 2010
|
||||||
|
86;The Elder Scrolls IV: Shivering Isles;8.4;Mar 26, 2007
|
||||||
|
86;DiRT Rally;8.8;Dec 7, 2015
|
||||||
|
86;Rocket League;8.1;Jul 7, 2015
|
||||||
|
86;Allegiance;8.2;Mar 31, 2000
|
||||||
|
85;The Talos Principle;8.5;Dec 11, 2014
|
||||||
|
85;Cities: Skylines;8.9;Mar 10, 2015
|
||||||
|
85;Falcon 4.0;8.0;Nov 30, 1998
|
||||||
|
85;Tom Clancy's Rainbow Six;8.6;Jul 31, 1998
|
||||||
|
85;Madden NFL 2005;6.4;Sep 14, 2004
|
||||||
|
85;Legend of Grimrock II;8.0;Oct 15, 2014
|
||||||
|
85;Sam & Max Episode 205: What's New, Beelzebub?;8.6;Apr 10, 2008
|
||||||
|
85;Dragon Age: Inquisition;5.8;Nov 18, 2014
|
||||||
|
85;Tales from the Borderlands: A Telltale Game Series;8.7;Apr 26, 2016
|
||||||
|
85;Tom Clancy's Rainbow Six: Vegas;7.7;Dec 12, 2006
|
||||||
|
85;City of Heroes;8.5;Apr 27, 2004
|
||||||
|
85;SWAT 4;8.6;Apr 5, 2005
|
||||||
|
85;Clive Barker's Undying;8.7;Feb 21, 2001
|
||||||
|
85;EverQuest;8.2;Mar 16, 1999
|
||||||
|
85;Warhammer 40,000: Dawn of War II;8.1;Feb 18, 2009
|
||||||
|
85;Command & Conquer 3: Tiberium Wars;8.0;Mar 26, 2007
|
||||||
|
85;Bit.Trip Presents...Runner2: Future Legend of Rhythm Alien;8.2;Feb 26, 2013
|
||||||
|
85;Hotline Miami;8.5;Oct 23, 2012
|
||||||
|
85;Out of the Park Baseball 13;8.2;Apr 9, 2012
|
||||||
|
85;Wizardry 8;8.6;Nov 14, 2001
|
||||||
|
85;Aliens Versus Predator 2;8.7;Oct 31, 2001
|
||||||
|
85;Operation Flashpoint: Cold War Crisis;9.0;Aug 30, 2001
|
||||||
|
85;Tropico;8.4;Apr 5, 2001
|
||||||
|
85;Giants: Citizen Kabuto;8.9;Dec 6, 2000
|
||||||
|
85;NASCAR SimRacing;4.9;Feb 15, 2005
|
||||||
|
85;The Lord of the Rings Online: Mines of Moria;8.3;Nov 17, 2008
|
||||||
|
85;The Binding of Isaac: Afterbirth;8.1;Oct 30, 2015
|
||||||
|
85;Amnesia: The Dark Descent;8.6;Feb 17, 2011
|
||||||
|
85;GTR FIA Racing;8.6;May 3, 2005
|
||||||
|
85;Football Manager 2011;8.4;Nov 23, 2010
|
||||||
|
85;Dust: An Elysian Tail;8.5;May 24, 2013
|
||||||
|
85;South Park: The Stick of Truth;8.6;Mar 4, 2014
|
||||||
|
85;Dark Souls: Prepare to Die Edition;7.4;Aug 24, 2012
|
||||||
|
85;Medieval II: Total War Kingdoms;8.8;Aug 28, 2007
|
||||||
|
85;Shovel Knight;7.9;Jun 26, 2014
|
||||||
|
85;DmC: Devil May Cry;6.7;Jan 24, 2013
|
||||||
|
85;Peggle Deluxe;8.1;Feb 19, 2008
|
||||||
|
85;Monopoly Tycoon;8.0;Sep 24, 2001
|
||||||
|
85;Indigo Prophecy;8.3;Oct 2, 2005
|
||||||
|
85;Prince of Persia: The Two Thrones;8.0;Dec 1, 2005
|
||||||
|
85;Sam & Max Episode 204: Chariots of the Dogs;8.1;Mar 13, 2008
|
||||||
|
85;Assetto Corsa;8.4;Dec 19, 2014
|
||||||
|
85;Machinarium;8.8;Oct 16, 2009
|
||||||
|
85;Frozen Synapse;7.7;May 26, 2011
|
||||||
|
85;Valkyria Chronicles;8.3;Nov 11, 2014
|
||||||
|
85;Freelancer;8.9;Mar 3, 2003
|
||||||
|
85;Zenzizenzic;5.9;Jul 23, 2015
|
||||||
|
85;The Wolf Among Us: Episode 1 - Faith;9.0;Oct 11, 2013
|
||||||
|
85;Mega Man Legacy Collection;7.3;Aug 25, 2015
|
||||||
|
85;Warhammer 40,000: Dawn of War II - Chaos Rising;8.7;Mar 11, 2010
|
||||||
|
85;Far Cry 2;5.8;Oct 21, 2008
|
||||||
|
85;The Walking Dead: Episode 3 - Long Road Ahead;8.4;Aug 29, 2012
|
||||||
|
85;AudioSurf;8.8;Feb 15, 2008
|
||||||
|
85;BattleBlock Theater;8.0;May 15, 2014
|
||||||
|
85;Star Wars: Knights of the Old Republic II - The Sith Lords;8.4;Feb 8, 2005
|
||||||
|
85;MVP Baseball 2005;8.1;Feb 22, 2005
|
||||||
|
85;The Elder Scrolls III: Bloodmoon;8.5;Jun 3, 2003
|
||||||
|
85;Rogue Legacy;7.9;Jun 27, 2013
|
||||||
|
85;Chaos Reborn;8.4;Oct 26, 2015
|
||||||
|
85;Thief: Deadly Shadows;8.4;May 25, 2004
|
||||||
|
85;Football Manager 2014;5.4;Oct 30, 2013
|
||||||
|
85;System Shock: Enhanced Edition;7.9;Sep 22, 2015
|
||||||
|
85;EverQuest: Gates of Discord;6.8;Feb 9, 2004
|
||||||
|
85;FIFA 2001 Major League Soccer;7.3;Oct 30, 2000
|
||||||
|
85;Sid Meier's Civilization V: Brave New World;8.6;Jul 9, 2013
|
||||||
|
85;Final Fantasy XI;7.5;Oct 28, 2003
|
||||||
|
85;Serious Sam: The Second Encounter;8.5;Feb 4, 2002
|
||||||
|
85;The Sims: Hot Date;7.9;Nov 12, 2001
|
||||||
|
85;American McGee's Alice;8.2;Dec 6, 2000
|
||||||
|
85;Trials Evolution: Gold Edition;6.7;Mar 21, 2013
|
||||||
|
85;Warhammer 40,000: Dawn of War - Winter Assault;8.3;Sep 21, 2005
|
||||||
|
85;Tony Hawk's Underground 2;7.9;Oct 4, 2004
|
||||||
|
85;Papers, Please;8.5;Aug 8, 2013
|
||||||
|
85;Star Wars: The Old Republic;5.9;Dec 20, 2011
|
||||||
|
85;Anarchy Online: Shadowlands;8.7;Sep 8, 2003
|
||||||
|
85;Dark Age of Camelot: Shrouded Isles;8.8;Dec 2, 2002
|
||||||
|
85;Obsidian;8.3;Dec 31, 1996
|
||||||
|
84;The Walking Dead: Episode 2 - Starved for Help;8.6;Jun 29, 2012
|
||||||
|
84;Saints Row: The Third;8.1;Nov 15, 2011
|
||||||
|
84;Fallout: New Vegas;8.5;Oct 19, 2010
|
||||||
|
84;The Movies;8.3;Nov 8, 2005
|
||||||
|
84;Neverwinter Nights: Hordes of the Underdark;8.6;Dec 2, 2003
|
||||||
|
84;Command & Conquer: Generals;8.3;Feb 10, 2003
|
||||||
|
84;Sid Meier's SimGolf;8.2;Jan 23, 2002
|
||||||
|
84;Middle-earth: Shadow of Mordor;8.0;Sep 30, 2014
|
||||||
|
84;SpaceChem;8.4;Mar 2, 2011
|
||||||
|
84;Downwell;6.2;Oct 15, 2015
|
||||||
|
84;Pinball FX 2;8.0;Oct 27, 2012
|
||||||
|
84;Devil Daggers;6.7;Feb 18, 2016
|
||||||
|
84;PlanetSide 2;7.0;Nov 20, 2012
|
||||||
|
84;Enter the Gungeon;7.4;Apr 5, 2016
|
||||||
|
84;GT Legends;8.6;Jan 23, 2006
|
||||||
|
84;Hearthstone: Goblins Vs. Gnomes;6.6;Dec 8, 2014
|
||||||
|
84;Space Rangers 2: Rise of the Dominators;9.0;Mar 27, 2006
|
||||||
|
84;Tales From The Borderlands: Episode 1 - Zer0 Sum;8.4;Nov 25, 2014
|
||||||
|
84;Puzzle Quest: Challenge of the Warlords;8.3;Oct 10, 2007
|
||||||
|
84;Heroes of Might and Magic IV;7.6;Mar 29, 2002
|
||||||
|
84;Command & Conquer: Red Alert 2;8.9;Oct 21, 2000
|
||||||
|
84;Shogun: Total War;8.7;Jun 13, 2000
|
||||||
|
84;DiRT;7.2;Jun 19, 2007
|
||||||
|
84;Darkest Dungeon;8.0;Jan 19, 2016
|
||||||
|
84;Super Street Fighter IV: Arcade Edition;7.8;Jul 13, 2011
|
||||||
|
84;Football Manager 2012;8.0;Oct 20, 2011
|
||||||
|
84;Guild Wars Factions;8.5;Apr 28, 2006
|
||||||
|
84;80 Days (2015);6.1;Sep 29, 2015
|
||||||
|
84;Spore;5.2;Sep 7, 2008
|
||||||
|
84;Unity of Command;7.2;Nov 15, 2011
|
||||||
|
84;Hearthstone: The Grand Tournament;4.0;Aug 24, 2015
|
||||||
|
84;Metro Redux;8.0;Aug 26, 2014
|
||||||
|
84;Time Gentlemen, Please!;7.6;Jul 2, 2009
|
||||||
|
84;Europa Universalis IV: Wealth of Nations;8.4;May 29, 2014
|
||||||
|
84;Mass Effect 3: Citadel;7.8;Mar 5, 2013
|
||||||
|
84;Disciples II: Dark Prophecy;8.6;Jan 22, 2002
|
||||||
|
84;Just Cause 2;7.7;Mar 23, 2010
|
||||||
|
84;Crysis Warhead;7.9;Sep 16, 2008
|
||||||
|
84;Assassin's Creed IV: Black Flag;7.7;Nov 19, 2013
|
||||||
|
84;Age of Mythology: The Titans;8.7;Sep 30, 2003
|
||||||
|
84;SimCity 4;8.7;Jan 12, 2003
|
||||||
|
84;Microsoft Train Simulator;8.4;May 31, 2001
|
||||||
|
84;Rise of Nations: Rise of Legends;8.5;May 9, 2006
|
||||||
|
84;TOCA Race Driver 3;7.8;Feb 24, 2006
|
||||||
|
84;FTL: Faster Than Light;8.4;Sep 14, 2012
|
||||||
|
84;SOMA;8.2;Sep 22, 2015
|
||||||
|
84;DEFCON: Everybody Dies;8.3;Mar 26, 2007
|
||||||
|
84;Tron 2.0;8.3;Aug 26, 2003
|
||||||
|
84;Brothers in Arms: Earned in Blood;7.3;Oct 6, 2005
|
||||||
|
84;Grim Fandango Remastered;8.0;Jan 27, 2015
|
||||||
|
84;The Lord of the Rings: The Battle for Middle-Earth II;7.5;Mar 2, 2006
|
||||||
|
84;Battlefield Vietnam;7.4;Mar 16, 2004
|
||||||
|
84;Medieval: Total War - Viking Invasion;8.8;May 7, 2003
|
||||||
|
84;Fallout 4;5.4;Nov 10, 2015
|
||||||
|
84;Guild Wars Nightfall;8.7;Oct 26, 2006
|
||||||
|
84;The Binding of Isaac;8.3;Sep 28, 2011
|
||||||
|
84;Enemy Territory: Quake Wars;8.3;Oct 2, 2007
|
||||||
|
84;Trine 2;8.4;Dec 7, 2011
|
||||||
|
84;Rift;7.3;Mar 1, 2011
|
||||||
|
84;The Wolf Among Us: Episode 5 - Cry Wolf;8.8;Jul 8, 2014
|
||||||
|
84;Shift 2: Unleashed;6.1;Mar 29, 2011
|
||||||
|
84;Sid Meier's Civilization IV: Warlords;8.2;Jul 24, 2006
|
||||||
|
84;Battlefield 1942: The Road to Rome;7.9;Feb 2, 2003
|
||||||
|
84;Poseidon;8.4;Jun 25, 2001
|
||||||
|
84;F1 2010;6.6;Sep 22, 2010
|
||||||
|
84;Shatter;7.4;Mar 15, 2010
|
||||||
|
84;Darwinia;7.9;Jun 12, 2006
|
||||||
|
84;Ultimate General: Gettysburg;8.0;Oct 16, 2014
|
||||||
|
83;Final Fantasy XI: Treasures of Aht Urhgan;7.6;Apr 18, 2006
|
||||||
|
83;MDK2;8.4;May 31, 2000
|
||||||
|
83;Gunpoint;8.4;Jun 3, 2013
|
||||||
|
83;Beyond Good & Evil;8.7;Nov 19, 2003
|
||||||
|
83;Anno 2070;7.0;Nov 17, 2011
|
||||||
|
83;SMITE;8.3;Mar 25, 2014
|
||||||
|
83;Halo: Combat Evolved;7.4;Sep 30, 2003
|
||||||
|
83;Grim Dawn;8.9;Feb 25, 2016
|
||||||
|
83;Silent Storm;8.9;Jan 20, 2004
|
||||||
|
83;Command & Conquer: Generals - Zero Hour;9.0;Sep 22, 2003
|
||||||
|
83;Homeworld 2;8.3;Sep 16, 2003
|
||||||
|
83;Galactic Civilizations;8.1;Mar 26, 2003
|
||||||
|
83;EverQuest: The Shadows of Luclin;7.2;Dec 2, 2001
|
||||||
|
83;Orcs Must Die!;8.1;Oct 11, 2011
|
||||||
|
83;Life is Strange;8.6;Jan 19, 2016
|
||||||
|
83;Fable: The Lost Chapters;8.7;Sep 20, 2005
|
||||||
|
83;Unreal Tournament III;8.0;Nov 19, 2007
|
||||||
|
83;The Blackwell Epiphany;7.6;Apr 24, 2014
|
||||||
|
83;The Lord of the Rings Online: Siege of Mirkwood;7.1;Dec 1, 2009
|
||||||
|
83;Out of the Park Baseball 10;8.3;Jun 2, 2009
|
||||||
|
83;Tomb Raider: Anniversary;8.0;Jun 5, 2007
|
||||||
|
83;Need for Speed: Shift;5.7;Sep 15, 2009
|
||||||
|
83;Hearts of Iron II;8.6;Jan 4, 2005
|
||||||
|
83;FIFA Soccer 11;7.6;Sep 28, 2010
|
||||||
|
83;Project CARS;7.0;May 6, 2015
|
||||||
|
83;FIFA Soccer 2003;6.8;Nov 2, 2002
|
||||||
|
83;Icewind Dale II;8.3;Aug 26, 2002
|
||||||
|
83;Age of Empires;8.8;Sep 30, 1997
|
||||||
|
83;EverQuest II: Echoes of Faydwer;8.4;Nov 13, 2006
|
||||||
|
83;EverQuest II;7.3;Nov 8, 2004
|
||||||
|
83;Terraria;8.5;May 16, 2011
|
||||||
|
83;Final Fantasy XIV Online: A Realm Reborn;6.7;Aug 27, 2013
|
||||||
|
83;Card Hunter (2013);7.9;Sep 12, 2013
|
||||||
|
83;Sam & Max: The Devil's Playhouse - Episode 2: The Tomb of Sammun-Mak;7.9;May 18, 2010
|
||||||
|
83;This War of Mine;8.4;Nov 14, 2014
|
||||||
|
83;Darksiders;7.7;Sep 23, 2010
|
||||||
|
83;Tom Clancy's Rainbow Six 3: Raven Shield;8.9;Mar 19, 2003
|
||||||
|
83;World of Outlaws: Sprint Cars;7.9;Feb 11, 2003
|
||||||
|
83;Colin McRae Rally 2.0;8.4;Feb 14, 2001
|
||||||
|
83;Combat Flight Simulator 2: WWII Pacific Theater;8.1;Oct 13, 2000
|
||||||
|
83;Orcs Must Die! 2;7.9;Jul 30, 2012
|
||||||
|
83;Prey;7.9;Jul 11, 2006
|
||||||
|
83;Metal Gear Rising: Revengeance;7.9;Jan 9, 2014
|
||||||
|
83;Starseed Pilgrim;6.3;Apr 16, 2013
|
||||||
|
83;Age of Conan: Rise of the Godslayer;8.4;May 11, 2010
|
||||||
|
83;Alan Wake;8.0;Feb 16, 2012
|
||||||
|
83;Tiger Woods PGA Tour 2002;5.0;Feb 24, 2002
|
||||||
|
83;Monaco: What's Yours Is Mine;7.7;Apr 24, 2013
|
||||||
|
83;Transistor;8.3;May 20, 2014
|
||||||
|
83;Helldivers;6.9;Dec 7, 2015
|
||||||
|
83;Worldwide Soccer Manager 2009;8.1;Nov 18, 2008
|
||||||
|
83;Call of Duty: World at War;7.5;Nov 10, 2008
|
||||||
|
83;Torchlight;8.0;Jan 5, 2010
|
||||||
|
83;Prison Architect;8.3;Oct 6, 2015
|
||||||
|
83;Valdis Story: Abyssal City;8.1;Oct 30, 2013
|
||||||
|
83;Crimson Skies;8.2;Sep 17, 2000
|
||||||
|
83;RACE 07: Official WTCC Game;9.0;Oct 9, 2007
|
||||||
|
83;SUPERHOT;7.6;Feb 25, 2016
|
||||||
|
83;EverQuest II: Rise of Kunark;7.9;Nov 13, 2007
|
||||||
|
83;Dark Age of Camelot: Catacombs;8.6;Dec 7, 2004
|
||||||
|
83;Spore Creature Creator;8.1;Jun 17, 2008
|
||||||
|
83;Colin McRae Rally 2005;7.0;Oct 28, 2004
|
||||||
|
83;Tom Clancy's Splinter Cell: Conviction;5.2;Apr 27, 2010
|
||||||
|
83;Tribes: Vengeance;7.6;Oct 12, 2004
|
||||||
|
83;L.A. Noire: The Complete Edition;7.9;Nov 8, 2011
|
||||||
|
83;GTR Evolution;8.2;Sep 2, 2008
|
||||||
|
83;Life is Strange: Episode 5 - Polarized;8.4;Oct 20, 2015
|
||||||
|
83;BROFORCE;8.0;Oct 15, 2015
|
||||||
|
83;Independence War 2: Edge of Chaos;8.4;Aug 22, 2001
|
||||||
|
83;Myst III: Exile;8.2;May 8, 2001
|
||||||
|
83;Superbrothers: Sword & Sworcery EP;6.4;Apr 16, 2012
|
||||||
|
83;Sid Meier's Civilization IV: Colonization;6.7;Sep 22, 2008
|
||||||
|
83;Europa Universalis III;8.4;Jan 23, 2007
|
||||||
|
83;F1 2011;7.2;Sep 20, 2011
|
||||||
|
83;Prince of Persia: Warrior Within;8.4;Nov 30, 2004
|
||||||
|
83;Danganronpa: Trigger Happy Havoc;7.6;Feb 18, 2016
|
||||||
|
83;Counter-Strike: Global Offensive;7.8;Aug 21, 2012
|
||||||
|
83;Outland;7.1;Sep 29, 2014
|
||||||
|
83;MechWarrior 4: Mercenaries;8.6;Nov 7, 2002
|
||||||
|
83;Metal Gear Solid;9.0;Sep 24, 2000
|
||||||
|
82;Invisible, Inc.;8.0;May 12, 2015
|
||||||
|
82;Dark Souls II: Crown of the Ivory King;7.8;Sep 29, 2014
|
||||||
|
82;Red Faction: Guerrilla;7.5;Sep 15, 2009
|
||||||
|
82;The Book of Unwritten Tales;8.2;Oct 28, 2011
|
||||||
|
82;Capitalism II;9.0;Dec 16, 2001
|
||||||
|
82;Rally Trophy;8.5;Nov 20, 2001
|
||||||
|
82;Dawn of Discovery;8.8;Jun 17, 2009
|
||||||
|
82;City of Villains;8.1;Oct 31, 2005
|
||||||
|
82;Kentucky Route Zero - Act II;8.0;May 31, 2013
|
||||||
|
82;Tom Clancy's Splinter Cell: Blacklist;7.4;Aug 20, 2013
|
||||||
|
82;Act of War: Direct Action;8.5;Mar 15, 2005
|
||||||
|
82;Sokobond;7.8;Aug 27, 2013
|
||||||
|
82;Sam & Max Episode 105: Reality 2.0;8.4;Mar 29, 2007
|
||||||
|
82;Bejeweled 3;8.0;Dec 7, 2010
|
||||||
|
82;Dangerous Waters;8.8;Feb 22, 2005
|
||||||
|
82;Tomb Raider: Legend;7.8;Apr 11, 2006
|
||||||
|
82;Asheron's Call 2: Fallen Kings;8.8;Nov 20, 2002
|
||||||
|
82;Gemini Rue;8.4;Feb 24, 2011
|
||||||
|
82;Antichamber;8.2;Jan 31, 2013
|
||||||
|
82;Neverwinter Nights 2;6.5;Oct 31, 2006
|
||||||
|
82;Dragon Age: Origins - Awakening;7.7;Mar 16, 2010
|
||||||
|
82;Door Kickers;8.2;Oct 20, 2014
|
||||||
|
82;Hearthstone: Blackrock Mountain;6.4;Apr 2, 2015
|
||||||
|
82;Rome: Total War Barbarian Invasion;8.4;Sep 27, 2005
|
||||||
|
82;Hacknet;7.3;Aug 12, 2015
|
||||||
|
82;Tales of Monkey Island Chapter 3: Lair of the Leviathan;7.8;Sep 29, 2009
|
||||||
|
82;Neverwinter Nights 2: Mask of The Betrayer;8.8;Oct 9, 2007
|
||||||
|
82;Sins of a Solar Empire: Rebellion;7.8;Jun 12, 2012
|
||||||
|
82;Broken Sword: The Sleeping Dragon;7.6;Nov 17, 2003
|
||||||
|
82;Age of Wonders: Shadow Magic;8.5;Jul 25, 2003
|
||||||
|
82;Tom Clancy's Ghost Recon: Desert Siege;8.4;Mar 27, 2002
|
||||||
|
82;Warlords Battlecry II;8.5;Mar 11, 2002
|
||||||
|
82;Football Manager Live;2.9;Jan 23, 2009
|
||||||
|
82;Marvel: Ultimate Alliance;8.3;Oct 24, 2006
|
||||||
|
82;The Talos Principle: Road To Gehenna;7.6;Jul 23, 2015
|
||||||
|
82;Lara Croft and the Guardian of Light;8.2;Sep 28, 2010
|
||||||
|
82;Aquaria;8.3;Dec 7, 2007
|
||||||
|
82;Need for Speed: Underground;8.3;Nov 17, 2003
|
||||||
|
82;TrackMania Sunrise;8.5;May 6, 2005
|
||||||
|
82;King's Quest Chapter 1: A Knight to Remember;7.2;Jul 28, 2015
|
||||||
|
82;Dragon Age II;4.4;Mar 8, 2011
|
||||||
|
82;Endless Legend;7.9;Apr 24, 2014
|
||||||
|
82;Tom Clancy's Ghost Recon: Island Thunder;8.3;Sep 25, 2002
|
||||||
|
82;S.T.A.L.K.E.R.: Shadow of Chernobyl;8.4;Mar 20, 2007
|
||||||
|
82;Kero Blaster;6.9;May 11, 2014
|
||||||
|
82;Monday Night Combat;7.3;Jan 24, 2011
|
||||||
|
82;The Wolf Among Us: Episode 3 - A Crooked Mile;8.6;Apr 8, 2014
|
||||||
|
82;Airborne Assault: Red Devils Over Arnhem;7.4;Jun 17, 2002
|
||||||
|
82;Fallout Tactics: Brotherhood of Steel;7.9;Mar 14, 2001
|
||||||
|
82;Need for Speed: Underground 2;8.5;Nov 9, 2004
|
||||||
|
82;NHL Eastside Hockey Manager 2005;6.6;Oct 5, 2005
|
||||||
|
82;Legend of Grimrock;8.1;Apr 11, 2012
|
||||||
|
82;Dominions 3: The Awakening;8.1;Sep 29, 2006
|
||||||
|
82;Bulletstorm;7.7;Feb 22, 2011
|
||||||
|
82;Borderlands 2: Mr. Torgue's Campaign of Carnage;7.3;Nov 20, 2012
|
||||||
|
82;Desktop Dungeons;8.2;Oct 17, 2010
|
||||||
|
82;Fallout: New Vegas - Old World Blues;7.8;Jul 19, 2011
|
||||||
|
82;Crusader Kings II;8.7;Feb 14, 2012
|
||||||
|
82;MVP Baseball 2004;7.9;Mar 9, 2004
|
||||||
|
82;Europa 1400: The Guild;8.6;Nov 18, 2002
|
||||||
|
82;Battle Realms;8.6;Nov 7, 2001
|
||||||
|
82;Warlords Battlecry;8.2;Jul 9, 2000
|
||||||
|
82;Sam & Max Episode 201: Ice Station Santa;8.6;Nov 8, 2007
|
||||||
|
82;Technobabylon;7.8;May 21, 2015
|
||||||
|
82;World of Warcraft: Mists of Pandaria;4.8;Sep 25, 2012
|
||||||
|
82;FIFA 15;4.2;Sep 23, 2014
|
||||||
|
82;Recettear: An Item Shop's Tale;8.6;Sep 10, 2010
|
||||||
|
82;ETHER One;6.9;Mar 25, 2014
|
||||||
|
82;The Vanishing of Ethan Carter;8.1;Sep 25, 2014
|
||||||
|
82;Flight Simulator X: Acceleration;7.3;Oct 23, 2007
|
||||||
|
82;Blood;9.0;May 31, 1997
|
||||||
|
82;Command & Conquer: Red Alert 3;6.8;Oct 28, 2008
|
||||||
|
82;The Walking Dead: Episode 1 - A New Day;8.4;Apr 24, 2012
|
||||||
|
82;Links 2003;6.8;Sep 16, 2002
|
||||||
|
82;Earth & Beyond;7.1;Sep 2, 2002
|
||||||
|
82;Syberia;8.5;Sep 1, 2002
|
||||||
|
82;Virtual Pool 3;7.3;Nov 14, 2000
|
||||||
|
82;The Sims: Livin' Large;6.6;Aug 27, 2000
|
||||||
|
82;DCS: Black Shark;8.5;Apr 13, 2009
|
||||||
|
82;King's Bounty: Armored Princess;8.7;Sep 10, 2010
|
||||||
|
82;Age of Wonders III - Golden Realms;8.5;Sep 18, 2014
|
||||||
|
82;Strong Bad's Cool Game for Attractive People Episode 5: 8-Bit Is Enough;7.5;Dec 15, 2008
|
||||||
|
82;Prince of Persia;7.2;Dec 2, 2008
|
||||||
|
82;Joint Operations: Typhoon Rising;8.7;Jun 15, 2004
|
||||||
|
82;Xpand Rally;7.4;Apr 20, 2006
|
||||||
|
82;Dark Souls II: Crown of the Sunken King;7.3;Jul 22, 2014
|
||||||
|
82;Resident Evil HD Remaster;8.2;Jan 20, 2015
|
||||||
|
82;Celtic Kings: Rage of War;8.5;Aug 21, 2002
|
||||||
|
82;B-17 Flying Fortress: The Mighty 8th;7.3;Dec 13, 2000
|
||||||
|
82;EverQuest: The Scars of Velious;7.8;Dec 4, 2000
|
||||||
|
82;Metro: Last Light;8.6;May 14, 2013
|
||||||
|
82;Rising Storm;8.5;May 30, 2013
|
||||||
|
82;Lethal League;7.4;Aug 27, 2014
|
||||||
|
82;Botanicula;8.3;Apr 19, 2012
|
||||||
|
82;Pro Evolution Soccer 2015;5.8;Nov 13, 2014
|
||||||
|
82;Bookworm Adventures Deluxe;7.9;Dec 20, 2006
|
||||||
|
82;The Lord of the Rings: The Battle for Middle-Earth;8.6;Dec 6, 2004
|
||||||
|
82;Hitman: Blood Money;8.8;May 30, 2006
|
||||||
|
82;Need for Speed: Most Wanted;8.5;Nov 15, 2005
|
||||||
|
82;OlliOlli2: Welcome to Olliwood;5.2;Aug 11, 2015
|
||||||
|
82;WildStar;7.4;Jun 3, 2014
|
||||||
|
82;Broken Age: Act 1;7.7;Jan 28, 2014
|
||||||
|
82;Divinity II: The Dragon Knight Saga;8.2;Nov 5, 2010
|
||||||
|
82;Out of the Park Baseball 9;7.4;Jun 1, 2008
|
||||||
|
82;The Simpsons: Hit & Run;8.0;Nov 13, 2003
|
||||||
|
82;America's Army;6.1;Aug 28, 2002
|
||||||
|
82;Star Trek Bridge Commander;8.1;Feb 27, 2002
|
||||||
|
82;The Last Express;8.9;Mar 31, 1997
|
||||||
|
81;Quake 4;7.5;Oct 11, 2005
|
||||||
|
81;Nidhogg;7.0;Jan 13, 2014
|
||||||
|
81;Battlefield 4;6.0;Oct 29, 2013
|
||||||
|
81;To the Moon;8.9;Sep 7, 2012
|
||||||
|
81;The Sims 3: World Adventures;8.0;Nov 16, 2009
|
||||||
|
81;Painkiller;8.0;Apr 12, 2004
|
||||||
|
81;Airborne Assault: Highway to the Reich;6.1;Dec 10, 2003
|
||||||
|
81;Nancy Drew: Danger on Deception Island;7.7;Oct 1, 2003
|
||||||
|
81;Shadowrun: Hong Kong;7.7;Aug 20, 2015
|
||||||
|
81;Supreme Commander: Forged Alliance;8.9;Nov 6, 2007
|
||||||
|
81;Sunless Sea;7.4;Jul 1, 2014
|
||||||
|
81;The Walking Dead: Season Two Episode 3 - In Harm's Way;8.3;May 13, 2014
|
||||||
|
81;Marvel Heroes 2015;7.9;Jun 4, 2014
|
||||||
|
81;Football Manager 2016;6.4;Nov 13, 2015
|
||||||
|
81;VVVVVV;8.1;Jan 11, 2010
|
||||||
|
81;Darksiders II;7.9;Aug 14, 2012
|
||||||
|
81;Wolfenstein: The New Order;8.2;May 20, 2014
|
||||||
|
81;Lone Survivor;7.2;Apr 23, 2012
|
||||||
|
81;Alien: Isolation;8.4;Oct 6, 2014
|
||||||
|
81;The Witcher;8.8;Oct 30, 2007
|
||||||
|
81;Kentucky Route Zero - Act I;7.5;Jan 7, 2013
|
||||||
|
81;Jade Empire: Special Edition;8.3;Feb 26, 2007
|
||||||
|
81;SWAT 3: Elite Edition;8.4;Oct 6, 2000
|
||||||
|
81;Asheron's Call;8.8;Oct 31, 1999
|
||||||
|
81;Unravel;8.1;Feb 9, 2016
|
||||||
|
81;Midnight Club II;8.0;Jun 30, 2003
|
||||||
|
81;Chessmaster 10th Edition;7.4;Aug 12, 2004
|
||||||
|
81;Age of Empires III;7.7;Oct 18, 2005
|
||||||
|
81;Tales of Monkey Island Chapter 5: Rise of the Pirate God;8.4;Dec 8, 2009
|
||||||
|
81;Castlevania: Lords of Shadow Ultimate Edition;7.3;Aug 27, 2013
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 2: Strong Badia the Free;8.2;Sep 15, 2008
|
||||||
|
81;The Cat Lady;8.7;Dec 4, 2013
|
||||||
|
81;Vessel;7.9;Mar 1, 2012
|
||||||
|
81;Metro 2033;8.1;Mar 16, 2010
|
||||||
|
81;OutRun 2006: Coast 2 Coast;7.8;Jun 27, 2006
|
||||||
|
81;Blur;7.3;May 25, 2010
|
||||||
|
81;Empires: Dawn of the Modern World;8.2;Oct 21, 2003
|
||||||
|
81;Chessmaster 9000;7.7;Aug 31, 2002
|
||||||
|
81;Gothic;8.6;Nov 23, 2001
|
||||||
|
81;Arcanum: Of Steamworks and Magick Obscura;8.9;Aug 22, 2001
|
||||||
|
81;NASCAR Heat;8.6;Sep 27, 2000
|
||||||
|
81;Company of Heroes 2: Ardennes Assault;6.1;Nov 17, 2014
|
||||||
|
81;PlanetSide;7.3;May 20, 2003
|
||||||
|
81;Tales From The Borderlands: Episode 3 - Catch A Ride;8.4;Jun 23, 2015
|
||||||
|
81;The Walking Dead: Season Two Episode 2 - A House Divided;8.6;Mar 4, 2014
|
||||||
|
81;Kingdoms of Amalur: Reckoning;6.6;Feb 7, 2012
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 1: The Penal Zone;8.5;Apr 15, 2010
|
||||||
|
81;Borderlands;7.8;Oct 26, 2009
|
||||||
|
81;DG2: Defense Grid 2;6.7;Sep 23, 2014
|
||||||
|
81;Napoleon: Total War;7.9;Feb 23, 2010
|
||||||
|
81;Overlord;8.1;Jun 26, 2007
|
||||||
|
81;Firewatch;7.2;Feb 9, 2016
|
||||||
|
81;Victoria II: Heart of Darkness;8.7;Apr 16, 2013
|
||||||
|
81;Waveform;7.6;Jan 25, 2013
|
||||||
|
81;The Elder Scrolls IV: Knights of the Nine;7.5;Nov 21, 2006
|
||||||
|
81;Red Orchestra: Ostfront 41-45;8.6;Mar 14, 2006
|
||||||
|
81;Stronghold;8.9;Oct 21, 2001
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 4: Dangeresque 3: The Criminal Projective;8.5;Nov 17, 2008
|
||||||
|
81;Rochard;8.0;Nov 15, 2011
|
||||||
|
81;Fallout 3: Broken Steel;7.3;May 5, 2009
|
||||||
|
81;Tiger Woods PGA Tour 06;8.1;Sep 20, 2005
|
||||||
|
81;RollerCoaster Tycoon 3;4.9;Oct 26, 2004
|
||||||
|
81;Dragon's Dogma: Dark Arisen;8.3;Jan 15, 2016
|
||||||
|
81;Guild Wars 2: Heart of Thorns;7.3;Oct 23, 2015
|
||||||
|
81;AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity;7.2;Sep 3, 2009
|
||||||
|
81;The Sims 2 University;7.8;Feb 28, 2005
|
||||||
|
81;Far Cry 3: Blood Dragon;8.1;May 1, 2013
|
||||||
|
81;Sid Meier's Civilization: Beyond Earth;5.5;Oct 24, 2014
|
||||||
|
81;Disney's Toontown Online;8.7;Oct 6, 2005
|
||||||
|
81;Combat Mission 3: Afrika Korps;8.4;Dec 3, 2003
|
||||||
|
81;EverQuest: The Planes of Power;8.2;Oct 28, 2002
|
||||||
|
81;Rails Across America;8.0;Sep 18, 2001
|
||||||
|
81;Wasteland 2;7.3;Sep 19, 2014
|
||||||
|
81;Jamestown: Legend of the Lost Colony;7.5;Jun 8, 2011
|
||||||
|
81;Call of Duty: Black Ops;5.1;Nov 9, 2010
|
||||||
|
81;Kohan II: Kings of War;7.9;Sep 20, 2004
|
||||||
|
81;The Age of Decadence;7.9;Oct 15, 2015
|
||||||
|
81;Samorost 3;8.3;Mar 24, 2016
|
||||||
|
81;Order of Battle: Pacific;6.4;Apr 30, 2015
|
||||||
|
81;Empire Earth;8.3;Nov 12, 2001
|
||||||
|
81;Star Trek: Deep Space Nine: The Fallen;7.9;Nov 15, 2000
|
||||||
|
81;Sam & Max Episode 101: Culture Shock;8.7;Oct 18, 2006
|
||||||
|
81;Mirror's Edge (2008);8.1;Jan 12, 2009
|
||||||
|
81;TrackMania 2 Canyon;7.7;Sep 14, 2011
|
||||||
|
81;Sleeping Dogs;8.2;Aug 14, 2012
|
||||||
|
81;Star Wars Jedi Knight: Jedi Academy;8.6;Sep 17, 2003
|
||||||
|
81;Mortal Kombat Komplete Edition;8.7;Aug 6, 2013
|
||||||
|
81;Shadowrun: Dragonfall;8.3;Feb 27, 2014
|
||||||
|
81;Eets;6.4;Mar 29, 2006
|
||||||
|
81;World of Warships;6.6;Sep 17, 2015
|
||||||
|
81;TOCA Race Driver 2: The Ultimate Racing Simulator;8.0;Apr 15, 2004
|
||||||
|
81;Wargame: European Escalation;8.2;Feb 22, 2012
|
||||||
|
81;Dungeon Defenders;7.3;Oct 18, 2011
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 5: The City That Dares Not Sleep;7.9;Aug 30, 2010
|
||||||
|
81;Age of Empires III: The Asian Dynasties;8.5;Oct 23, 2007
|
||||||
|
81;Defense Grid: The Awakening;8.8;Jul 29, 2009
|
||||||
|
81;Codename: Panzers, Phase One;8.8;Sep 30, 2004
|
||||||
|
81;FIFA 16;4.4;Sep 22, 2015
|
||||||
|
81;Europa Universalis IV: Conquest of Paradise;7.7;Jan 14, 2014
|
||||||
|
81;Ghost Master;8.0;Aug 26, 2003
|
||||||
|
81;Divine Divinity;8.5;Sep 22, 2002
|
||||||
|
80;The Book of Unwritten Tales 2;7.7;Feb 20, 2015
|
||||||
|
80;Galactic Civilizations III;6.6;May 14, 2015
|
||||||
|
80;Lovers in a Dangerous Spacetime;7.2;Sep 9, 2015
|
||||||
|
80;Age of Conan: Hyborian Adventures;7.3;May 20, 2008
|
||||||
|
80;Company of Heroes 2: The Western Front Armies;6.8;Jun 23, 2014
|
||||||
|
80;Sid Meier's Civilization V: Gods & Kings;7.7;Jun 19, 2012
|
||||||
|
80;Age of Empires III: The WarChiefs;8.1;Oct 17, 2006
|
||||||
|
80;Metal Gear Solid V: Ground Zeroes;7.7;Dec 18, 2014
|
||||||
|
80;Trials Fusion;6.8;Apr 16, 2014
|
||||||
|
80;Syberia II;8.3;Mar 30, 2004
|
||||||
|
80;Tom Clancy's Ghost Recon;8.4;Nov 13, 2001
|
||||||
|
80;Conquest: Frontier Wars;8.3;Aug 14, 2001
|
||||||
|
80;Gabriel Knight 3: Blood of the Sacred, Blood of the Damned;8.8;Oct 5, 1999
|
||||||
|
80;Westerado: Double Barreled;7.4;Apr 16, 2015
|
||||||
|
80;Anomaly: Warzone Earth;7.3;Apr 8, 2011
|
||||||
|
80;Volume;7.2;Aug 18, 2015
|
||||||
|
80;GRID 2;5.7;May 27, 2013
|
||||||
|
80;The Banner Saga;7.9;Jan 14, 2014
|
||||||
|
80;Sam & Max Episode 202: Moai Better Blues;7.7;Jan 10, 2008
|
||||||
|
80;Age of Wonders III - Eternal Lords;8.4;Apr 14, 2015
|
||||||
|
80;Pro Evolution Soccer 2013;6.8;Sep 25, 2012
|
||||||
|
80;Osmos;7.5;Aug 18, 2009
|
||||||
|
80;Dungeon Siege II;7.9;Aug 16, 2005
|
||||||
|
80;Dead Island;6.8;Sep 6, 2011
|
||||||
|
80;Sam & Max Episode 104: Abe Lincoln Must Die!;7.8;Feb 22, 2007
|
||||||
|
80;Deus Ex: Invisible War;6.3;Dec 2, 2003
|
||||||
|
80;The Sims: Makin' Magic;8.6;Oct 28, 2003
|
||||||
|
80;Tom Clancy's Splinter Cell: Double Agent;5.7;Nov 7, 2006
|
||||||
|
80;Medal of Honor: Pacific Assault;7.4;Nov 4, 2004
|
||||||
|
80;Assassin's Creed: Revelations;7.4;Nov 29, 2011
|
||||||
|
80;Grandia II Anniversary Edition;7.6;Aug 24, 2015
|
||||||
|
80;Assassin's Creed III;6.2;Nov 20, 2012
|
||||||
|
80;Madden NFL 07;7.3;Aug 22, 2006
|
||||||
|
80;Outlast;8.4;Sep 4, 2013
|
||||||
|
80;The Chronicles of Riddick: Assault on Dark Athena;8.0;Apr 7, 2009
|
||||||
|
80;Hearts of Iron II: Doomsday;8.8;Apr 7, 2006
|
||||||
|
80;Dishonored: The Brigmore Witches;8.5;Aug 13, 2013
|
||||||
|
80;Codename: Panzers, Phase Two;8.0;Jul 25, 2005
|
||||||
|
80;Full Spectrum Warrior;7.0;Sep 21, 2004
|
||||||
|
80;AI War: Fleet Command;8.4;May 14, 2009
|
||||||
|
80;Freedom Fighters;8.3;Oct 1, 2003
|
||||||
|
80;NBA Live 2003;8.3;Nov 14, 2002
|
||||||
|
80;The Elder Scrolls III: Tribunal;8.2;Nov 6, 2002
|
||||||
|
80;Elite: Dangerous;6.4;Dec 16, 2014
|
||||||
|
80;Pure;6.9;Sep 16, 2008
|
||||||
|
80;Goodbye Deponia;8.1;Oct 17, 2013
|
||||||
|
80;SWAT 4: The Stetchkov Syndicate;8.3;Feb 28, 2006
|
||||||
|
80;Dropsy;7.3;Sep 10, 2015
|
||||||
|
80;Company of Heroes 2: The British Forces;5.9;Sep 3, 2015
|
||||||
|
80;Ground Control II: Operation Exodus;8.8;Jun 23, 2004
|
||||||
|
80;NBA Live 2004;9.0;Nov 11, 2003
|
||||||
|
80;Brutal Legend;7.8;Feb 26, 2013
|
||||||
|
80;Tomb Raider: Underworld;7.6;Nov 18, 2008
|
||||||
|
80;Oxenfree;7.7;Jan 15, 2016
|
||||||
|
80;Titan Quest: Immortal Throne;8.7;Mar 5, 2007
|
||||||
|
80;La-Mulana (Remake);7.1;Jul 13, 2012
|
||||||
|
80;X-Men Legends II: Rise of Apocalypse;8.4;Sep 20, 2005
|
||||||
|
80;SpellForce 2: Shadow Wars;7.6;May 5, 2006
|
||||||
|
80;Fritz 8 Deluxe;7.8;Dec 1, 2004
|
||||||
|
80;Trine;8.2;Sep 11, 2009
|
||||||
|
80;Dishonored: The Knife of Dunwall;8.1;Apr 16, 2013
|
||||||
|
80;Company of Heroes 2;2.0;Jun 25, 2013
|
||||||
|
80;Natural Selection 2;8.4;Oct 30, 2012
|
||||||
|
80;Read Only Memories;7.2;Oct 5, 2015
|
||||||
|
80;The Sims 3: Into the Future;5.4;Oct 22, 2013
|
||||||
|
80;Borderlands 2: Captain Scarlett and Her Pirate's Booty;7.4;Oct 16, 2012
|
||||||
|
80;FATE;8.3;Sep 19, 2006
|
||||||
|
80;2002 FIFA World Cup;7.9;Apr 30, 2002
|
||||||
|
80;Asheron's Call Dark Majesty;8.1;Nov 4, 2001
|
||||||
|
80;The Bug Butcher;8.2;Jan 19, 2016
|
||||||
|
80;Dragonshard;7.4;Oct 2, 2005
|
||||||
|
80;Icewind Dale: Enhanced Edition;7.6;Oct 30, 2014
|
||||||
|
80;The Magic Circle;7.3;Jul 9, 2015
|
||||||
|
80;Far Cry 4;6.6;Nov 18, 2014
|
||||||
|
80;Super Time Force Ultra;6.6;Aug 25, 2014
|
||||||
|
80;Day of Defeat: Source;9.1;Feb 7, 2006
|
||||||
|
80;Battlefield 2142;6.8;Oct 17, 2006
|
||||||
|
80;World of Tanks;3.8;Sep 6, 2011
|
||||||
|
80;Vampire: The Masquerade - Bloodlines;9.0;Nov 16, 2004
|
||||||
|
80;Dark Souls II: Scholar of the First Sin;7.4;Apr 1, 2015
|
||||||
|
80;Warhammer 40,000: Dawn of War II - Retribution;7.8;Mar 1, 2011
|
||||||
|
80;Panzer Corps;7.5;Jul 11, 2011
|
||||||
|
80;Men of War;8.1;Mar 16, 2009
|
||||||
|
80;Fallen Enchantress: Legendary Heroes;7.7;May 22, 2013
|
||||||
|
80;The Walking Dead: Episode 4 - Around Every Corner;8.5;Oct 10, 2012
|
||||||
|
80;Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood;8.4;Oct 30, 2009
|
||||||
|
80;Penny Arcade Adventures: Episode Two;7.7;Nov 7, 2008
|
||||||
|
80;Time Commando;8.9;Jul 31, 1996
|
||||||
|
80;Sins of a Solar Empire: Entrenchment;8.1;Feb 25, 2009
|
||||||
|
80;F1 2012;6.9;Sep 18, 2012
|
||||||
|
80;Luftrausers;6.8;Mar 18, 2014
|
||||||
|
80;Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst;7.9;Oct 24, 2013
|
||||||
|
80;Stealth Bastard Deluxe;8.3;Nov 28, 2012
|
||||||
|
80;Tom Clancy's Ghost Recon Advanced Warfighter;7.7;May 3, 2006
|
||||||
|
80;LEGO Batman: The Videogame;7.9;Sep 23, 2008
|
||||||
|
80;Stacking;7.9;Mar 6, 2012
|
||||||
|
80;Age of Wonders III;7.8;Mar 31, 2014
|
||||||
|
80;Life is Strange: Episode 3 - Chaos Theory;9.0;May 19, 2015
|
||||||
|
80;The Legend of Heroes: Trails in the Sky SC;8.4;Oct 29, 2015
|
||||||
|
80;Proteus;5.6;Jan 30, 2013
|
||||||
|
80;Robin Hood: The Legend of Sherwood;8.3;Nov 14, 2002
|
||||||
|
80;Soldier of Fortune II: Double Helix;7.3;May 20, 2002
|
||||||
|
80;RollerCoaster Tycoon: Loopy Landscapes;9.0;Sep 30, 2000
|
||||||
|
80;Toki Tori;7.9;Jan 28, 2010
|
||||||
|
80;RoboBlitz;8.3;Nov 7, 2006
|
||||||
|
80;Wargame: AirLand Battle;8.1;May 29, 2013
|
||||||
|
80;Football Manager 2015;6.0;Nov 7, 2014
|
||||||
|
80;The Suffering;8.2;Jun 8, 2004
|
||||||
|
80;Gish;7.2;Sep 17, 2004
|
||||||
|
80;Axiom Verge;8.2;May 14, 2015
|
||||||
|
80;Driver: San Francisco;7.0;Sep 27, 2011
|
||||||
|
80;The Corporate Machine;7.5;Jul 14, 2001
|
||||||
|
80;Dungeons & Dragons: Chronicles of Mystara;6.7;Jun 18, 2013
|
||||||
|
80;Disciples II: Rise of the Elves;8.1;Nov 25, 2003
|
||||||
|
80;MechCommander 2;8.3;Jul 18, 2001
|
||||||
|
80;Waterloo: Napoleon's Last Battle;7.5;Mar 25, 2001
|
||||||
|
80;Chessmaster 8000;6.4;Nov 14, 2000
|
||||||
|
80;Circle of Blood;8.6;Sep 30, 1996
|
||||||
|
80;BioShock Infinite: Burial at Sea - Episode Two;8.5;Mar 25, 2014
|
||||||
|
80;S.T.A.L.K.E.R.: Call of Pripyat;8.7;Feb 2, 2010
|
||||||
|
80;The Walking Dead: Season Two - A Telltale Games Series;8.3;Dec 17, 2013
|
||||||
|
80;FLY'N;8.2;Nov 9, 2012
|
||||||
|
80;Total War: Attila;7.3;Feb 17, 2015
|
||||||
|
80;The Wolf Among Us;8.8;Oct 11, 2013
|
||||||
|
80;Nancy Drew: Secret of the Old Clock;8.1;Jul 26, 2005
|
||||||
|
80;ArcheAge;3.6;Sep 16, 2014
|
||||||
|
80;CAPSIZED;7.1;Apr 29, 2011
|
||||||
|
80;Microsoft Flight Simulator X;7.6;Oct 17, 2006
|
||||||
|
80;Myst V: End of Ages;7.8;Sep 19, 2005
|
||||||
|
80;Railroad Tycoon 3;7.7;Oct 23, 2003
|
||||||
|
80;Hostile Waters: Antaeus Rising;8.1;Jun 13, 2001
|
||||||
|
79;Dustforce;7.9;Jan 17, 2012
|
||||||
|
79;Empire Earth II;7.0;Apr 26, 2005
|
||||||
|
79;Fallout 3: Point Lookout;7.8;Jun 23, 2009
|
||||||
|
79;Test Drive Unlimited;8.1;Mar 20, 2007
|
||||||
|
79;Dying Light: The Following;8.3;Feb 9, 2016
|
||||||
|
79;The Path;7.0;Mar 18, 2009
|
||||||
|
79;Dungeon of the Endless;8.0;Oct 27, 2014
|
||||||
|
79;Revenge of the Titans;7.6;May 24, 2010
|
||||||
|
79;Bookworm Adventures: Volume 2;7.6;Jul 30, 2009
|
||||||
|
79;F1 2001;7.5;Oct 14, 2001
|
||||||
|
79;Brothers in Arms: Hell's Highway;7.9;Oct 7, 2008
|
||||||
|
79;Star Wars: Empire at War;8.4;Feb 15, 2006
|
||||||
|
79;Dariusburst: Chronicle Saviours;8.3;Dec 3, 2015
|
||||||
|
79;Europa Universalis: Rome - Vae Victis;8.6;Nov 19, 2008
|
||||||
|
79;Silent Hunter: Wolves of the Pacific;6.5;Mar 20, 2007
|
||||||
|
79;Pillars of Eternity: The White March - Part 2;6.7;Feb 16, 2016
|
||||||
|
79;1701 A.D.;8.3;Nov 6, 2006
|
||||||
|
79;Stasis;7.6;Aug 31, 2015
|
||||||
|
79;Pro Evolution Soccer 2009;7.4;Nov 12, 2008
|
||||||
|
79;Return to Mysterious Island;8.5;Nov 2, 2004
|
||||||
|
79;Jotun;7.0;Sep 29, 2015
|
||||||
|
79;Else Heart.Break();7.5;Sep 24, 2015
|
||||||
|
79;Kohan: Ahriman's Gift;8.7;Nov 5, 2001
|
||||||
|
79;Emperor: Battle for Dune;8.3;Jun 12, 2001
|
||||||
|
79;Trackmania Turbo;6.9;Mar 24, 2016
|
||||||
|
79;Cart Life;5.9;Jul 29, 2010
|
||||||
|
79;Sword of the Stars: Born of Blood;8.1;Jun 5, 2007
|
||||||
|
79;Worms Reloaded;6.7;Aug 26, 2010
|
||||||
|
79;Warhammer: End Times - Vermintide;7.9;Oct 23, 2015
|
||||||
|
79;Euro Truck Simulator 2;8.7;Jan 16, 2013
|
||||||
|
79;Tropico 3;8.2;Oct 20, 2009
|
||||||
|
79;Cities: Skylines - After Dark;7.9;Sep 24, 2015
|
||||||
|
79;Runaway: A Twist of Fate;8.5;Apr 21, 2011
|
||||||
|
79;Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal;8.2;Jul 7, 2009
|
||||||
|
79;Bloodline Champions;8.0;Jan 13, 2011
|
||||||
|
79;The Sims: Superstar;8.2;May 12, 2003
|
||||||
|
79;NBA Live 2005;8.5;Oct 26, 2004
|
||||||
|
79;Valiant Hearts: The Great War;8.6;Jun 25, 2014
|
||||||
|
79;Payday 2;3.4;Aug 13, 2013
|
||||||
|
79;Dungeons of Dredmor;7.8;Jul 13, 2011
|
||||||
|
79;Geometry Wars 3: Dimensions;6.2;Nov 25, 2014
|
||||||
|
79;Assassin's Creed: Director's Cut Edition;7.5;Apr 8, 2008
|
||||||
|
79;Puzzle Dimension;7.6;Jun 21, 2010
|
||||||
|
79;Split/Second;8.2;May 18, 2010
|
||||||
|
79;Sang-Froid: Tales of Werewolves;7.9;Apr 5, 2013
|
||||||
|
79;The Incredible Adventures of Van Helsing: Final Cut;7.2;Oct 7, 2015
|
||||||
|
79;Hitman: Absolution;7.0;Nov 19, 2012
|
||||||
|
79;Call of Juarez: Gunslinger;8.2;May 22, 2013
|
||||||
|
79;Rome: Total War Alexander;7.6;Jun 19, 2006
|
||||||
|
79;Strong Bad's Cool Game for Attractive People Episode 3: Baddest of the Bands;8.1;Oct 27, 2008
|
||||||
|
79;Sam & Max Episode 102: Situation: Comedy;7.9;Dec 20, 2006
|
||||||
|
79;Tropico 3: Absolute Power;7.7;May 17, 2010
|
||||||
|
79;Sam & Max Episode 106: Bright Side of the Moon;7.3;Apr 26, 2007
|
||||||
|
79;Day of Defeat;9.3;May 6, 2003
|
||||||
|
79;Space Empires: IV;8.3;Nov 6, 2000
|
||||||
|
79;Resident Evil 4: Ultimate HD Edition;7.7;Feb 27, 2014
|
||||||
|
79;Sam & Max Episode 203: Night of the Raving Dead;8.2;Feb 12, 2008
|
||||||
|
79;FlatOut: Ultimate Carnage;7.6;Sep 2, 2008
|
||||||
|
79;Guitar Hero III: Legends of Rock;7.2;Nov 13, 2007
|
||||||
|
79;Sid Meier's Civilization: Beyond Earth - Rising Tide;5.9;Oct 9, 2015
|
||||||
|
79;Memoria;8.5;Aug 29, 2013
|
||||||
|
79;The Last Door;7.8;May 20, 2014
|
||||||
|
79;Shadowgrounds Survivor;7.8;Dec 6, 2007
|
||||||
|
79;Gothic II;8.8;Oct 28, 2003
|
||||||
|
79;Port Royale;8.2;Jun 4, 2003
|
||||||
|
79;Deadly Dozen: Pacific Theater;7.9;Oct 31, 2002
|
||||||
|
79;Shattered Galaxy;8.3;Aug 21, 2001
|
||||||
|
79;Close Combat: Invasion: Normandy;8.2;Oct 10, 2000
|
||||||
|
79;King's Bounty: The Legend;8.6;Sep 23, 2008
|
||||||
|
79;Rage;5.1;Oct 4, 2011
|
||||||
|
79;The Misadventures of P.B. Winterbottom;8.3;Apr 20, 2010
|
||||||
|
79;Uru: Ages Beyond Myst;7.4;Nov 11, 2003
|
||||||
|
79;Guild Wars: Eye of the North;8.6;Aug 28, 2007
|
||||||
|
79;Tales From The Borderlands: Episode 4 - Escape Plan Bravo;8.4;Aug 18, 2015
|
||||||
|
79;EverQuest: Lost Dungeons of Norrath;7.0;Sep 8, 2003
|
||||||
|
79;Battlefield 1942: Secret Weapons of WWII;8.5;Sep 4, 2003
|
||||||
|
79;The Sims: Unleashed;8.0;Sep 23, 2002
|
||||||
|
79;Race the Sun;7.5;Aug 19, 2013
|
||||||
|
79;The Sims 3: Pets;6.1;Oct 18, 2011
|
||||||
|
79;Prototype;7.9;Jun 10, 2009
|
||||||
|
79;Stick it to the Man!;7.2;Dec 13, 2013
|
||||||
|
79;Street Fighter X Tekken;6.4;May 11, 2012
|
||||||
|
79;Frozen Cortex;6.5;Feb 19, 2015
|
||||||
|
79;Free Realms;6.4;Apr 29, 2009
|
||||||
|
79;Homeworld: Deserts of Kharak;8.0;Jan 20, 2016
|
||||||
|
79;Don't Starve;8.3;Apr 23, 2013
|
||||||
|
79;Assault Android Cactus;7.0;Sep 23, 2015
|
||||||
|
79;Trainz;7.2;Feb 10, 2002
|
||||||
|
79;King Arthur: The Role-Playing Wargame;7.9;Nov 24, 2009
|
||||||
|
79;Chivalry: Medieval Warfare;7.8;Oct 16, 2012
|
||||||
|
79;Overlord II;8.1;Jun 23, 2009
|
||||||
|
79;F.E.A.R. 2: Project Origin;7.8;Feb 10, 2009
|
||||||
|
79;Tom Clancy's Rainbow Six Siege;6.9;Dec 1, 2015
|
||||||
|
79;The Settlers 7: Paths to a Kingdom;5.2;Mar 23, 2010
|
||||||
|
79;RollerCoaster Tycoon 3: Soaked!;2.9;Jun 23, 2005
|
||||||
|
79;Dark Souls II: Crown of the Old Iron King;7.6;Aug 26, 2014
|
||||||
|
79;TrackMania 2 Valley;8.3;Jul 4, 2013
|
||||||
|
79;State of Decay;6.8;Nov 5, 2013
|
||||||
|
79;LEGO Harry Potter: Years 1-4;7.8;Jun 29, 2010
|
||||||
|
79;Rift: Storm Legion;7.8;Nov 13, 2012
|
||||||
|
79;Crayon Physics Deluxe;7.6;Jan 7, 2009
|
||||||
|
79;Nancy Drew: Legend of the Crystal Skull;8.5;Oct 8, 2007
|
||||||
|
79;EverQuest II: Desert of Flames;7.8;Sep 12, 2005
|
||||||
|
79;SimCity 4: Rush Hour;8.6;Sep 22, 2003
|
||||||
|
79;Uncommon Valor: Campaign for the South Pacific;7.6;Dec 2, 2002
|
||||||
|
79;Global Operations;8.3;Mar 25, 2002
|
||||||
|
78;Apotheon;7.8;Feb 3, 2015
|
||||||
|
78;Need for Speed: Most Wanted - A Criterion Game;4.4;Oct 30, 2012
|
||||||
|
78;Star Wars: Battlefront II;8.8;Oct 31, 2005
|
||||||
|
78;The Walking Dead: Season Two Episode 1 - All That Remains;8.5;Dec 17, 2013
|
||||||
|
78;The Journey Down: Chapter Two;7.1;Aug 25, 2014
|
||||||
|
78;Star Trek: Elite Force II;7.6;Jun 25, 2003
|
||||||
|
78;Zuma's Revenge!;7.9;Sep 15, 2009
|
||||||
|
78;Baldur's Gate: Enhanced Edition;7.0;Nov 28, 2012
|
||||||
|
78;Doom 3: Resurrection of Evil;6.0;Apr 4, 2005
|
||||||
|
78;LEGO Indiana Jones: The Original Adventures;7.7;Jun 3, 2008
|
||||||
|
78;NASCAR Thunder 2004;7.5;Sep 16, 2003
|
||||||
|
78;Transformers: Fall of Cybertron;7.8;Aug 21, 2012
|
||||||
|
78;FIFA Soccer 06;6.7;Oct 4, 2005
|
||||||
|
78;DeadCore;6.8;Oct 17, 2014
|
||||||
|
78;The Walking Dead: Season Two Episode 5 - No Going Back;8.5;Aug 26, 2014
|
|
@ -0,0 +1,994 @@
|
||||||
|
96;Half-Life 2;9.2;Nov 16, 2004
|
||||||
|
96;Grand Theft Auto V;7.8;Apr 14, 2015
|
||||||
|
96;The Orange Box;9.3;Oct 10, 2007
|
||||||
|
96;Half-Life;9.1;Oct 31, 1998
|
||||||
|
96;BioShock;8.4;Aug 21, 2007
|
||||||
|
95;Baldur's Gate II: Shadows of Amn;9.2;Sep 24, 2000
|
||||||
|
95;Portal 2;8.8;Apr 19, 2011
|
||||||
|
94;The Elder Scrolls V: Skyrim;8.1;Nov 11, 2011
|
||||||
|
94;Mass Effect 2;8.7;Jan 26, 2010
|
||||||
|
94;Grand Theft Auto: Vice City;8.8;May 12, 2003
|
||||||
|
94;Civilization II;9.0;Feb 29, 1996
|
||||||
|
94;Quake;8.8;Jun 22, 1996
|
||||||
|
94;BioShock Infinite;8.5;Mar 26, 2013
|
||||||
|
94;The Elder Scrolls IV: Oblivion;8.0;Mar 20, 2006
|
||||||
|
94;Grim Fandango;9.1;Sep 30, 1998
|
||||||
|
94;Diablo;8.7;Nov 30, 1996
|
||||||
|
94;Sid Meier's Civilization IV;8.2;Oct 25, 2005
|
||||||
|
93;The Witcher 3: Wild Hunt;9.1;May 19, 2015
|
||||||
|
93;Company of Heroes;8.8;Sep 13, 2006
|
||||||
|
93;Unreal Tournament 2004;8.9;Mar 16, 2004
|
||||||
|
93;Starcraft II: Wings of Liberty;8.2;Jul 27, 2010
|
||||||
|
93;Minecraft;7.4;May 10, 2009
|
||||||
|
93;Grand Theft Auto III;8.4;May 20, 2002
|
||||||
|
93;Homeworld;8.9;Aug 31, 1999
|
||||||
|
93;Star Wars: Knights of the Old Republic;9.0;Nov 18, 2003
|
||||||
|
93;World of Warcraft;7.2;Nov 23, 2004
|
||||||
|
93;Grand Theft Auto: San Andreas;8.8;Jun 7, 2005
|
||||||
|
92;Call of Duty 4: Modern Warfare;8.5;Nov 5, 2007
|
||||||
|
92;Warcraft III: Reign of Chaos;9.1;Jul 3, 2002
|
||||||
|
92;The Sims;7.9;Jan 31, 2000
|
||||||
|
92;Sid Meier's Gettysburg!;7.7;Sep 30, 1997
|
||||||
|
92;World Soccer Winning Eleven 7 International;7.9;Apr 9, 2004
|
||||||
|
92;Team Fortress 2;9.2;Apr 8, 2008
|
||||||
|
92;System Shock 2;9.1;Aug 11, 1999
|
||||||
|
92;Tom Clancy's Splinter Cell: Chaos Theory;8.8;Mar 28, 2005
|
||||||
|
92;Undertale;8.2;Sep 15, 2015
|
||||||
|
92;Rome: Total War;9.1;Sep 22, 2004
|
||||||
|
92;Thief: The Dark Project;9.1;Nov 30, 1998
|
||||||
|
92;Age of Empires II: The Age of Kings;9.0;Sep 30, 1999
|
||||||
|
92;Unreal Tournament (1999);9.1;Nov 30, 1999
|
||||||
|
92;Sid Meier's Alpha Centauri;9.1;Feb 12, 1999
|
||||||
|
92;Galactic Civilizations II: Twilight of the Arnor;8.4;Apr 30, 2008
|
||||||
|
92;Tiger Woods PGA Tour 2003;6.0;Oct 31, 2002
|
||||||
|
91;Dishonored;8.4;Oct 9, 2012
|
||||||
|
91;Medal of Honor: Allied Assault;8.6;Jan 20, 2002
|
||||||
|
91;Myth: The Fallen Lords;8.8;Oct 31, 1997
|
||||||
|
91;World of Warcraft: Wrath of the Lich King;7.4;Nov 13, 2008
|
||||||
|
91;F1 Challenge '99-'02;8.3;Jun 24, 2003
|
||||||
|
91;Baldur's Gate;9.0;Nov 30, 1998
|
||||||
|
91;IL-2 Sturmovik;8.7;Nov 18, 2001
|
||||||
|
91;FreeSpace 2;8.8;Sep 30, 1999
|
||||||
|
91;Metal Gear Solid V: The Phantom Pain;7.7;Sep 1, 2015
|
||||||
|
91;Tom Clancy's Splinter Cell;8.6;Feb 19, 2003
|
||||||
|
91;Crysis;8.0;Nov 13, 2007
|
||||||
|
91;World of Warcraft: The Burning Crusade;7.9;Jan 16, 2007
|
||||||
|
91;Tiger Woods PGA Tour 2005;4.6;Sep 20, 2004
|
||||||
|
91;The Longest Journey;8.9;Nov 16, 2000
|
||||||
|
91;Tony Hawk's Pro Skater 2;8.5;Oct 31, 2000
|
||||||
|
91;Star Wars Jedi Knight: Dark Forces II;8.5;Sep 30, 1997
|
||||||
|
91;Batman: Arkham Asylum;8.7;Sep 15, 2009
|
||||||
|
91;Galactic Civilizations II: Dark Avatar;8.2;Feb 14, 2007
|
||||||
|
91;The Operative: No One Lives Forever;8.9;Nov 9, 2000
|
||||||
|
91;Battlefield 2;8.4;Jun 21, 2005
|
||||||
|
91;Street Fighter IV;8.0;Jul 1, 2009
|
||||||
|
91;Fallout 3;7.9;Oct 28, 2008
|
||||||
|
91;Batman: Arkham City;8.6;Nov 22, 2011
|
||||||
|
91;Fez;6.5;May 1, 2013
|
||||||
|
91;Planescape: Torment;9.3;Nov 30, 1999
|
||||||
|
91;Neverwinter Nights;8.1;Jun 16, 2002
|
||||||
|
91;No One Lives Forever 2: A Spy in H.A.R.M.'s Way;8.7;Sep 30, 2002
|
||||||
|
91;Dragon Age: Origins;8.6;Nov 3, 2009
|
||||||
|
91;Mark of the Ninja;8.0;Oct 16, 2012
|
||||||
|
91;Dark Souls II;7.1;Apr 25, 2014
|
||||||
|
91;Call of Duty;8.5;Oct 29, 2003
|
||||||
|
91;Madden NFL 2004;8.2;Aug 12, 2003
|
||||||
|
90;The Sims 2;8.8;Sep 14, 2004
|
||||||
|
90;World of Warcraft: Cataclysm;5.5;Dec 7, 2010
|
||||||
|
90;World of Goo;8.5;Oct 21, 2008
|
||||||
|
90;Spelunky;7.2;Aug 8, 2013
|
||||||
|
90;Black & White;7.6;Mar 26, 2001
|
||||||
|
90;Portal;9.3;Apr 8, 2008
|
||||||
|
90;NHL 2001;6.9;Sep 28, 2000
|
||||||
|
90;Tony Hawk's Pro Skater 3;8.6;Mar 28, 2002
|
||||||
|
90;Deus Ex;9.3;Jun 26, 2000
|
||||||
|
90;Half-Life 2: Episode Two;9.2;Oct 10, 2007
|
||||||
|
90;Braid;8.6;Jan 26, 2010
|
||||||
|
90;The Chronicles of Riddick: Escape From Butcher Bay - Developer's Cut;8.7;Dec 8, 2004
|
||||||
|
90;Sid Meier's Civilization III;8.4;Oct 30, 2001
|
||||||
|
90;Silent Hunter III;7.8;Mar 15, 2005
|
||||||
|
90;Sid Meier's Civilization V;7.8;Sep 21, 2010
|
||||||
|
90;Falcon 4.0: Allied Force;8.6;Jun 28, 2005
|
||||||
|
90;Deus Ex: Human Revolution;8.5;Aug 23, 2011
|
||||||
|
90;Dark Souls III;8.2;Apr 12, 2016
|
||||||
|
90;Flight Simulator 2002;8.4;Oct 19, 2001
|
||||||
|
90;Brothers: A Tale of Two Sons;8.5;Sep 3, 2013
|
||||||
|
90;Dota 2;6.2;Jul 9, 2013
|
||||||
|
90;Guild Wars 2;7.9;Aug 28, 2012
|
||||||
|
90;Freedom Force;8.0;Mar 24, 2002
|
||||||
|
90;GTR 2;8.7;Sep 29, 2006
|
||||||
|
90;Grand Theft Auto IV;6.5;Dec 2, 2008
|
||||||
|
90;Total War: Shogun 2;8.3;Mar 15, 2011
|
||||||
|
90;Empire: Total War;6.9;Mar 3, 2009
|
||||||
|
90;Command & Conquer: Red Alert;8.9;Oct 31, 1996
|
||||||
|
89;Star Wars Jedi Knight II: Jedi Outcast;8.6;Mar 26, 2002
|
||||||
|
89;The Walking Dead: A Telltale Games Series;8.7;Dec 11, 2012
|
||||||
|
89;Age of Mythology;8.9;Nov 1, 2002
|
||||||
|
89;Sacrifice;8.8;Nov 5, 2000
|
||||||
|
89;The Witcher 3: Wild Hunt - Hearts of Stone;8.4;Oct 13, 2015
|
||||||
|
89;Pillars of Eternity;8.3;Mar 26, 2015
|
||||||
|
89;The Elder Scrolls III: Morrowind;9.0;May 1, 2002
|
||||||
|
89;Rocksmith 2014 Edition;7.9;Oct 22, 2013
|
||||||
|
89;Fallout;8.9;Sep 30, 1997
|
||||||
|
89;World Soccer Winning Eleven 9;8.4;Apr 28, 2006
|
||||||
|
89;Worldwide Soccer Manager 2005;8.7;Dec 7, 2004
|
||||||
|
89;Left 4 Dead;9.2;Nov 18, 2008
|
||||||
|
89;Left 4 Dead 2;8.5;Nov 17, 2009
|
||||||
|
89;NASCAR Racing 2002 Season;5.8;Feb 14, 2002
|
||||||
|
89;Mass Effect;8.6;May 28, 2008
|
||||||
|
89;Combat Mission: Barbarossa to Berlin;8.3;Oct 29, 2002
|
||||||
|
89;Homeworld: Cataclysm;8.9;Sep 7, 2000
|
||||||
|
89;The Walking Dead: Episode 5 - No Time Left;8.9;Nov 21, 2012
|
||||||
|
89;Guild Wars;8.4;Apr 26, 2005
|
||||||
|
89;Borderlands 2;8.2;Sep 18, 2012
|
||||||
|
89;Max Payne;9.1;Jul 23, 2001
|
||||||
|
89;Out of the Park Baseball 15;7.2;Apr 21, 2014
|
||||||
|
89;World in Conflict;8.1;Sep 18, 2007
|
||||||
|
89;NASCAR Racing 4;8.2;Feb 6, 2001
|
||||||
|
89;Duke Nukem 3D;8.8;Jan 31, 1996
|
||||||
|
89;Far Cry;8.0;Mar 23, 2004
|
||||||
|
89;FIFA Soccer 12;7.1;Sep 27, 2011
|
||||||
|
89;XCOM: Enemy Unknown;8.2;Oct 9, 2012
|
||||||
|
89;Mass Effect 3;5.4;Mar 6, 2012
|
||||||
|
89;Rise of Nations;9.0;May 20, 2003
|
||||||
|
89;NASCAR Racing 2003 Season;8.6;Feb 14, 2003
|
||||||
|
89;Descent 3;8.3;Jun 14, 2000
|
||||||
|
89;The Curse of Monkey Island;9.1;Oct 31, 1997
|
||||||
|
89;Battlefield 3;7.5;Oct 25, 2011
|
||||||
|
89;Battlefield 1942;8.6;Sep 10, 2002
|
||||||
|
89;Madden NFL 2003;8.4;Aug 12, 2002
|
||||||
|
89;DiRT 2;8.3;Dec 10, 2009
|
||||||
|
89;Stardew Valley;8.5;Feb 26, 2016
|
||||||
|
89;Prince of Persia: The Sands of Time;8.6;Nov 30, 2003
|
||||||
|
89;Railroad Tycoon II;8.4;Oct 31, 1998
|
||||||
|
88;Microsoft Flight Simulator 2004: A Century of Flight;8.2;Jul 29, 2003
|
||||||
|
88;Medieval: Total War;8.8;Aug 19, 2002
|
||||||
|
88;Mafia;9.1;Aug 27, 2002
|
||||||
|
88;LIMBO;8.1;Aug 2, 2011
|
||||||
|
88;Nuclear Throne;7.4;Dec 5, 2015
|
||||||
|
88;Crusader Kings II: The Old Gods;8.8;May 28, 2013
|
||||||
|
88;Assassin's Creed: Brotherhood;8.2;Mar 22, 2011
|
||||||
|
88;Superbike 2001;6.5;Oct 9, 2000
|
||||||
|
88;F.E.A.R.;8.3;Oct 17, 2005
|
||||||
|
88;Kerbal Space Program;8.1;Apr 27, 2015
|
||||||
|
88;Tribes 2;8.5;Mar 28, 2001
|
||||||
|
88;Age of Empires II: The Conquerors Expansion;9.0;Aug 24, 2000
|
||||||
|
88;Tiger Woods PGA Tour 2004;8.8;Sep 22, 2003
|
||||||
|
88;Warcraft III: The Frozen Throne;9.0;Jul 1, 2003
|
||||||
|
88;Starcraft;9.1;Apr 1, 1998
|
||||||
|
88;Far Cry 3;8.2;Dec 4, 2012
|
||||||
|
88;XCOM 2;7.0;Feb 5, 2016
|
||||||
|
88;World Soccer Winning Eleven 8 International;8.5;Feb 16, 2005
|
||||||
|
88;Torchlight II;8.6;Sep 20, 2012
|
||||||
|
88;Myth II: Soulblighter;9.0;Nov 30, 1998
|
||||||
|
88;Return to Castle Wolfenstein;8.7;Nov 19, 2001
|
||||||
|
88;Shogo: Mobile Armor Division;8.9;Sep 30, 1998
|
||||||
|
88;Thirty Flights of Loving;5.0;Aug 20, 2012
|
||||||
|
88;Hearthstone: Heroes of Warcraft;6.3;Mar 11, 2014
|
||||||
|
88;Medieval II: Total War;8.9;Nov 13, 2006
|
||||||
|
88;F1 2002;7.6;Jun 13, 2002
|
||||||
|
88;The Stanley Parable;8.0;Oct 17, 2013
|
||||||
|
88;BioShock 2;8.0;Feb 9, 2010
|
||||||
|
88;Counter-Strike: Source;8.9;Sep 26, 2005
|
||||||
|
88;Starcraft II: Legacy of the Void;8.3;Nov 10, 2015
|
||||||
|
88;Diablo III;4.0;May 15, 2012
|
||||||
|
88;Rise of Nations: Thrones & Patriots;8.8;Apr 27, 2004
|
||||||
|
88;Sid Meier's Pirates!;8.3;Nov 22, 2004
|
||||||
|
88;EVE Online: Special Edition;7.8;Mar 10, 2009
|
||||||
|
88;Guacamelee! Gold Edition;7.3;Aug 8, 2013
|
||||||
|
88;Armadillo Run;8.2;Apr 22, 2006
|
||||||
|
88;Dark Age of Camelot;8.9;Sep 1, 2001
|
||||||
|
88;Baldur's Gate II: Throne of Bhaal;8.9;Jun 21, 2001
|
||||||
|
88;Counter-Strike;9.3;Nov 8, 2000
|
||||||
|
88;Tony Hawk's Pro Skater 4;8.4;Aug 27, 2003
|
||||||
|
88;Ori and the Blind Forest;8.7;Mar 11, 2015
|
||||||
|
88;Diablo II;8.8;Jun 29, 2000
|
||||||
|
88;The Witcher 2: Assassins of Kings;8.5;May 17, 2011
|
||||||
|
87;Plants vs. Zombies;8.9;Aug 18, 2009
|
||||||
|
87;Doom 3;7.5;Aug 3, 2004
|
||||||
|
87;Super Meat Boy;8.3;Apr 5, 2011
|
||||||
|
87;Football Manager 2010;9.1;Nov 3, 2009
|
||||||
|
87;Oddworld: Abe's Oddysee - New 'n' Tasty;7.8;Feb 25, 2015
|
||||||
|
87;Tom Clancy's Splinter Cell: Pandora Tomorrow;8.0;Mar 23, 2004
|
||||||
|
87;Europa Universalis II;8.8;Nov 12, 2001
|
||||||
|
87;Burnout Paradise: The Ultimate Box;7.5;Feb 5, 2009
|
||||||
|
87;Battlefield: Bad Company 2;8.3;Mar 2, 2010
|
||||||
|
87;GRID;7.9;Jun 3, 2008
|
||||||
|
87;Crypt of the NecroDancer;7.7;Apr 23, 2015
|
||||||
|
87;Sins of a Solar Empire;8.2;Feb 4, 2008
|
||||||
|
87;MechWarrior 4: Vengeance;8.2;Nov 23, 2000
|
||||||
|
87;Thief II: The Metal Age;9.1;Feb 29, 2000
|
||||||
|
87;Diablo II: Lord of Destruction;9.1;Jun 27, 2001
|
||||||
|
87;Monkey Island 2 Special Edition: LeChuck's Revenge;9.0;Jul 7, 2010
|
||||||
|
87;Half-Life 2: Episode One;8.6;Jun 1, 2006
|
||||||
|
87;The Swapper;8.7;May 30, 2013
|
||||||
|
87;Hitman 2: Silent Assassin;8.2;Oct 1, 2002
|
||||||
|
87;Year Walk;7.0;Mar 6, 2014
|
||||||
|
87;Max Payne 3;7.6;Jun 1, 2012
|
||||||
|
87;TowerFall Ascension;6.6;Mar 11, 2014
|
||||||
|
87;Battlefield 3: Armored Kill;7.0;Sep 11, 2012
|
||||||
|
87;NHL 2002;8.7;Sep 17, 2001
|
||||||
|
87;Icewind Dale;8.3;Jun 29, 2000
|
||||||
|
87;The Witness;6.6;Jan 26, 2016
|
||||||
|
87;Brothers in Arms: Road to Hill 30;7.1;Mar 15, 2005
|
||||||
|
87;Kohan: Immortal Sovereigns;8.6;Mar 14, 2001
|
||||||
|
87;Day of the Tentacle Remastered;7.9;Mar 21, 2016
|
||||||
|
87;Dead Space 2;8.3;Jan 25, 2011
|
||||||
|
87;Diablo III: Reaper of Souls;6.6;Mar 25, 2014
|
||||||
|
87;Shogun: Total War Warlord Edition;8.7;Aug 13, 2001
|
||||||
|
87;Serious Sam: The First Encounter;8.4;Mar 21, 2001
|
||||||
|
87;Grand Prix 3;8.3;Aug 24, 2000
|
||||||
|
87;Call of Duty: United Offensive;8.3;Sep 14, 2004
|
||||||
|
87;Divinity: Original Sin;8.7;Jan 17, 2014
|
||||||
|
87;Company of Heroes: Opposing Fronts;8.6;Sep 24, 2007
|
||||||
|
87;Psychonauts;8.9;Apr 19, 2005
|
||||||
|
87;Gears of War;7.8;Nov 6, 2007
|
||||||
|
87;Out of the Park Baseball 4;7.8;Feb 28, 2002
|
||||||
|
87;Europa Universalis IV;8.7;Aug 13, 2013
|
||||||
|
87;NHL 2004;8.2;Sep 22, 2003
|
||||||
|
87;Zeus: Master of Olympus;9.0;Oct 22, 2000
|
||||||
|
87;World of Warcraft: Warlords of Draenor;6.0;Nov 13, 2014
|
||||||
|
87;Warhammer 40,000: Dawn of War - Dark Crusade;8.9;Oct 9, 2006
|
||||||
|
87;Commandos 2: Men of Courage;8.8;Sep 20, 2001
|
||||||
|
86;Tales From The Borderlands: Episode 5 - The Vault of the Traveler;8.7;Oct 20, 2015
|
||||||
|
86;Bastion;8.6;Aug 16, 2011
|
||||||
|
86;Gone Home;5.4;Aug 15, 2013
|
||||||
|
86;Pac-Man Championship Edition DX +;7.3;Sep 24, 2013
|
||||||
|
86;Supreme Commander;8.3;Feb 20, 2007
|
||||||
|
86;Total War: Shogun 2 - Fall of the Samurai;8.4;Mar 23, 2012
|
||||||
|
86;Startopia;8.7;Jun 19, 2001
|
||||||
|
86;Enemy Engaged: RAH-66 Comanche Versus Ka-52 Hokum;8.3;Jul 31, 2000
|
||||||
|
86;Fallout 2;9.2;Sep 30, 1998
|
||||||
|
86;Final Fantasy XIV: Heavensward;7.7;Jun 23, 2015
|
||||||
|
86;Football Manager 2013;6.7;Nov 1, 2012
|
||||||
|
86;Out of the Park Baseball 14;8.6;Apr 15, 2013
|
||||||
|
86;The Witcher: Enhanced Edition;8.5;Sep 16, 2008
|
||||||
|
86;Borderlands: The Secret Armory of General Knoxx;7.6;Feb 25, 2010
|
||||||
|
86;Call of Duty 2;8.3;Oct 25, 2005
|
||||||
|
86;Astebreed;7.3;May 30, 2014
|
||||||
|
86;Ground Control;7.8;May 31, 2000
|
||||||
|
86;Rise of the Tomb Raider;8.0;Jan 28, 2016
|
||||||
|
86;Resident Evil 5;7.1;Sep 18, 2009
|
||||||
|
86;Saints Row IV;7.4;Aug 20, 2013
|
||||||
|
86;Black Mesa;9.0;Sep 14, 2012
|
||||||
|
86;EverQuest: Omens of War;7.7;Sep 13, 2004
|
||||||
|
86;Steel Beasts;8.4;Sep 24, 2000
|
||||||
|
86;Total Annihilation;8.9;Sep 30, 1997
|
||||||
|
86;Need for Speed: Hot Pursuit;6.7;Nov 16, 2010
|
||||||
|
86;FIFA Soccer 13;6.6;Sep 25, 2012
|
||||||
|
86;Sid Meier's Civilization IV: Beyond the Sword;8.6;Jul 23, 2007
|
||||||
|
86;The Sims 3;7.6;Jun 2, 2009
|
||||||
|
86;Freedom Force vs The 3rd Reich;7.7;Mar 8, 2005
|
||||||
|
86;The Binding of Isaac: Rebirth;8.3;Nov 4, 2014
|
||||||
|
86;Tribes: Ascend;7.7;Apr 12, 2012
|
||||||
|
86;Titanfall;6.1;Mar 11, 2014
|
||||||
|
86;Rayman Origins;8.4;Mar 29, 2012
|
||||||
|
86;Her Story;5.7;Jun 24, 2015
|
||||||
|
86;Starcraft II: Heart of the Swarm;7.9;Mar 12, 2013
|
||||||
|
86;Mass Effect 2: Lair of the Shadow Broker;8.5;Sep 7, 2010
|
||||||
|
86;LEGO Star Wars II: The Original Trilogy;8.3;Sep 12, 2006
|
||||||
|
86;Dungeon Siege;7.9;Mar 31, 2002
|
||||||
|
86;Crysis 2;6.7;Mar 22, 2011
|
||||||
|
86;Call of Duty: Modern Warfare 2;4.1;Nov 10, 2009
|
||||||
|
86;The Secret of Monkey Island: Special Edition;9.1;Jul 15, 2009
|
||||||
|
86;Max Payne 2: The Fall of Max Payne;9.0;Oct 14, 2003
|
||||||
|
86;Homeworld Remastered Collection;8.2;Feb 25, 2015
|
||||||
|
86;Galactic Civilizations II: Dread Lords;8.0;Feb 21, 2006
|
||||||
|
86;Tomb Raider;8.5;Mar 5, 2013
|
||||||
|
86;Star Trek: Voyager Elite Force;8.2;Sep 20, 2000
|
||||||
|
86;Worldwide Soccer Manager 2008;8.4;Oct 23, 2007
|
||||||
|
86;IL-2 Sturmovik: Forgotten Battles;8.6;Mar 2, 2003
|
||||||
|
86;Hyper Light Drifter;8.1;Mar 31, 2016
|
||||||
|
86;DiRT 3;6.9;May 24, 2011
|
||||||
|
86;Unreal Tournament 2003;8.1;Sep 30, 2002
|
||||||
|
86;Age of Wonders II: The Wizard's Throne;8.4;Jun 12, 2002
|
||||||
|
86;Links 2001;6.8;Oct 24, 2000
|
||||||
|
86;EverQuest: The Ruins of Kunark;8.8;Mar 31, 2000
|
||||||
|
86;Full Throttle;8.8;Apr 30, 1995
|
||||||
|
86;The Lord of the Rings Online: Shadows of Angmar;8.1;Apr 24, 2007
|
||||||
|
86;Pony Island;6.8;Jan 4, 2016
|
||||||
|
86;Warhammer 40,000: Dawn of War;8.8;Sep 20, 2004
|
||||||
|
86;Warhammer Online: Age of Reckoning;7.9;Sep 16, 2008
|
||||||
|
86;Dead Space;8.0;Oct 20, 2008
|
||||||
|
86;Bionic Commando Rearmed;7.0;Aug 13, 2008
|
||||||
|
86;Command & Conquer: Red Alert 2 - Yuri's Revenge;9.0;Oct 10, 2001
|
||||||
|
86;Europa Universalis;8.1;Feb 2, 2001
|
||||||
|
86;Escape from Monkey Island;8.2;Nov 8, 2000
|
||||||
|
86;IL-2 Sturmovik: 1946;8.8;Mar 13, 2007
|
||||||
|
86;XCOM: Enemy Within;7.9;Nov 12, 2013
|
||||||
|
86;Battlefield 3: Back to Karkand;7.2;Dec 13, 2011
|
||||||
|
86;Heroes of the Storm;6.7;Jun 2, 2015
|
||||||
|
86;Civilization III: Conquests;8.4;Nov 4, 2003
|
||||||
|
86;Path of Exile;8.0;Jan 25, 2013
|
||||||
|
86;Battlefield: Bad Company 2 Vietnam;8.1;Dec 18, 2010
|
||||||
|
86;Assassin's Creed II;6.8;Mar 9, 2010
|
||||||
|
86;The Elder Scrolls IV: Shivering Isles;8.4;Mar 26, 2007
|
||||||
|
86;DiRT Rally;8.8;Dec 7, 2015
|
||||||
|
86;Rocket League;8.1;Jul 7, 2015
|
||||||
|
86;Allegiance;8.2;Mar 31, 2000
|
||||||
|
85;The Talos Principle;8.5;Dec 11, 2014
|
||||||
|
85;Cities: Skylines;8.9;Mar 10, 2015
|
||||||
|
85;Falcon 4.0;8.0;Nov 30, 1998
|
||||||
|
85;Tom Clancy's Rainbow Six;8.6;Jul 31, 1998
|
||||||
|
85;Madden NFL 2005;6.4;Sep 14, 2004
|
||||||
|
85;Legend of Grimrock II;8.0;Oct 15, 2014
|
||||||
|
85;Sam & Max Episode 205: What's New, Beelzebub?;8.6;Apr 10, 2008
|
||||||
|
85;Dragon Age: Inquisition;5.8;Nov 18, 2014
|
||||||
|
85;Tales from the Borderlands: A Telltale Game Series;8.7;Apr 26, 2016
|
||||||
|
85;Tom Clancy's Rainbow Six: Vegas;7.7;Dec 12, 2006
|
||||||
|
85;City of Heroes;8.5;Apr 27, 2004
|
||||||
|
85;SWAT 4;8.6;Apr 5, 2005
|
||||||
|
85;Clive Barker's Undying;8.7;Feb 21, 2001
|
||||||
|
85;EverQuest;8.2;Mar 16, 1999
|
||||||
|
85;Warhammer 40,000: Dawn of War II;8.1;Feb 18, 2009
|
||||||
|
85;Command & Conquer 3: Tiberium Wars;8.0;Mar 26, 2007
|
||||||
|
85;Bit.Trip Presents...Runner2: Future Legend of Rhythm Alien;8.2;Feb 26, 2013
|
||||||
|
85;Hotline Miami;8.5;Oct 23, 2012
|
||||||
|
85;Out of the Park Baseball 13;8.2;Apr 9, 2012
|
||||||
|
85;Wizardry 8;8.6;Nov 14, 2001
|
||||||
|
85;Aliens Versus Predator 2;8.7;Oct 31, 2001
|
||||||
|
85;Operation Flashpoint: Cold War Crisis;9.0;Aug 30, 2001
|
||||||
|
85;Tropico;8.4;Apr 5, 2001
|
||||||
|
85;Giants: Citizen Kabuto;8.9;Dec 6, 2000
|
||||||
|
85;NASCAR SimRacing;4.9;Feb 15, 2005
|
||||||
|
85;The Lord of the Rings Online: Mines of Moria;8.3;Nov 17, 2008
|
||||||
|
85;The Binding of Isaac: Afterbirth;8.1;Oct 30, 2015
|
||||||
|
85;Amnesia: The Dark Descent;8.6;Feb 17, 2011
|
||||||
|
85;GTR FIA Racing;8.6;May 3, 2005
|
||||||
|
85;Football Manager 2011;8.4;Nov 23, 2010
|
||||||
|
85;Dust: An Elysian Tail;8.5;May 24, 2013
|
||||||
|
85;South Park: The Stick of Truth;8.6;Mar 4, 2014
|
||||||
|
85;Dark Souls: Prepare to Die Edition;7.4;Aug 24, 2012
|
||||||
|
85;Medieval II: Total War Kingdoms;8.8;Aug 28, 2007
|
||||||
|
85;Shovel Knight;7.9;Jun 26, 2014
|
||||||
|
85;DmC: Devil May Cry;6.7;Jan 24, 2013
|
||||||
|
85;Peggle Deluxe;8.1;Feb 19, 2008
|
||||||
|
85;Monopoly Tycoon;8.0;Sep 24, 2001
|
||||||
|
85;Indigo Prophecy;8.3;Oct 2, 2005
|
||||||
|
85;Prince of Persia: The Two Thrones;8.0;Dec 1, 2005
|
||||||
|
85;Sam & Max Episode 204: Chariots of the Dogs;8.1;Mar 13, 2008
|
||||||
|
85;Assetto Corsa;8.4;Dec 19, 2014
|
||||||
|
85;Machinarium;8.8;Oct 16, 2009
|
||||||
|
85;Frozen Synapse;7.7;May 26, 2011
|
||||||
|
85;Valkyria Chronicles;8.3;Nov 11, 2014
|
||||||
|
85;Freelancer;8.9;Mar 3, 2003
|
||||||
|
85;Zenzizenzic;5.9;Jul 23, 2015
|
||||||
|
85;The Wolf Among Us: Episode 1 - Faith;9.0;Oct 11, 2013
|
||||||
|
85;Mega Man Legacy Collection;7.3;Aug 25, 2015
|
||||||
|
85;Warhammer 40,000: Dawn of War II - Chaos Rising;8.7;Mar 11, 2010
|
||||||
|
85;Far Cry 2;5.8;Oct 21, 2008
|
||||||
|
85;The Walking Dead: Episode 3 - Long Road Ahead;8.4;Aug 29, 2012
|
||||||
|
85;AudioSurf;8.8;Feb 15, 2008
|
||||||
|
85;BattleBlock Theater;8.0;May 15, 2014
|
||||||
|
85;Star Wars: Knights of the Old Republic II - The Sith Lords;8.4;Feb 8, 2005
|
||||||
|
85;MVP Baseball 2005;8.1;Feb 22, 2005
|
||||||
|
85;The Elder Scrolls III: Bloodmoon;8.5;Jun 3, 2003
|
||||||
|
85;Rogue Legacy;7.9;Jun 27, 2013
|
||||||
|
85;Chaos Reborn;8.4;Oct 26, 2015
|
||||||
|
85;Thief: Deadly Shadows;8.4;May 25, 2004
|
||||||
|
85;Football Manager 2014;5.4;Oct 30, 2013
|
||||||
|
85;System Shock: Enhanced Edition;7.9;Sep 22, 2015
|
||||||
|
85;EverQuest: Gates of Discord;6.8;Feb 9, 2004
|
||||||
|
85;FIFA 2001 Major League Soccer;7.3;Oct 30, 2000
|
||||||
|
85;Sid Meier's Civilization V: Brave New World;8.6;Jul 9, 2013
|
||||||
|
85;Final Fantasy XI;7.5;Oct 28, 2003
|
||||||
|
85;Serious Sam: The Second Encounter;8.5;Feb 4, 2002
|
||||||
|
85;The Sims: Hot Date;7.9;Nov 12, 2001
|
||||||
|
85;American McGee's Alice;8.2;Dec 6, 2000
|
||||||
|
85;Trials Evolution: Gold Edition;6.7;Mar 21, 2013
|
||||||
|
85;Warhammer 40,000: Dawn of War - Winter Assault;8.3;Sep 21, 2005
|
||||||
|
85;Tony Hawk's Underground 2;7.9;Oct 4, 2004
|
||||||
|
85;Papers, Please;8.5;Aug 8, 2013
|
||||||
|
85;Star Wars: The Old Republic;5.9;Dec 20, 2011
|
||||||
|
85;Anarchy Online: Shadowlands;8.7;Sep 8, 2003
|
||||||
|
85;Dark Age of Camelot: Shrouded Isles;8.8;Dec 2, 2002
|
||||||
|
85;Obsidian;8.3;Dec 31, 1996
|
||||||
|
84;The Walking Dead: Episode 2 - Starved for Help;8.6;Jun 29, 2012
|
||||||
|
84;Saints Row: The Third;8.1;Nov 15, 2011
|
||||||
|
84;Fallout: New Vegas;8.5;Oct 19, 2010
|
||||||
|
84;The Movies;8.3;Nov 8, 2005
|
||||||
|
84;Neverwinter Nights: Hordes of the Underdark;8.6;Dec 2, 2003
|
||||||
|
84;Command & Conquer: Generals;8.3;Feb 10, 2003
|
||||||
|
84;Sid Meier's SimGolf;8.2;Jan 23, 2002
|
||||||
|
84;Middle-earth: Shadow of Mordor;8.0;Sep 30, 2014
|
||||||
|
84;SpaceChem;8.4;Mar 2, 2011
|
||||||
|
84;Downwell;6.2;Oct 15, 2015
|
||||||
|
84;Pinball FX 2;8.0;Oct 27, 2012
|
||||||
|
84;Devil Daggers;6.7;Feb 18, 2016
|
||||||
|
84;PlanetSide 2;7.0;Nov 20, 2012
|
||||||
|
84;Enter the Gungeon;7.4;Apr 5, 2016
|
||||||
|
84;GT Legends;8.6;Jan 23, 2006
|
||||||
|
84;Hearthstone: Goblins Vs. Gnomes;6.6;Dec 8, 2014
|
||||||
|
84;Space Rangers 2: Rise of the Dominators;9.0;Mar 27, 2006
|
||||||
|
84;Tales From The Borderlands: Episode 1 - Zer0 Sum;8.4;Nov 25, 2014
|
||||||
|
84;Puzzle Quest: Challenge of the Warlords;8.3;Oct 10, 2007
|
||||||
|
84;Heroes of Might and Magic IV;7.6;Mar 29, 2002
|
||||||
|
84;Command & Conquer: Red Alert 2;8.9;Oct 21, 2000
|
||||||
|
84;Shogun: Total War;8.7;Jun 13, 2000
|
||||||
|
84;DiRT;7.2;Jun 19, 2007
|
||||||
|
84;Darkest Dungeon;8.0;Jan 19, 2016
|
||||||
|
84;Super Street Fighter IV: Arcade Edition;7.8;Jul 13, 2011
|
||||||
|
84;Football Manager 2012;8.0;Oct 20, 2011
|
||||||
|
84;Guild Wars Factions;8.5;Apr 28, 2006
|
||||||
|
84;80 Days (2015);6.1;Sep 29, 2015
|
||||||
|
84;Spore;5.2;Sep 7, 2008
|
||||||
|
84;Unity of Command;7.2;Nov 15, 2011
|
||||||
|
84;Hearthstone: The Grand Tournament;4.0;Aug 24, 2015
|
||||||
|
84;Metro Redux;8.0;Aug 26, 2014
|
||||||
|
84;Time Gentlemen, Please!;7.6;Jul 2, 2009
|
||||||
|
84;Europa Universalis IV: Wealth of Nations;8.4;May 29, 2014
|
||||||
|
84;Mass Effect 3: Citadel;7.8;Mar 5, 2013
|
||||||
|
84;Disciples II: Dark Prophecy;8.6;Jan 22, 2002
|
||||||
|
84;Just Cause 2;7.7;Mar 23, 2010
|
||||||
|
84;Crysis Warhead;7.9;Sep 16, 2008
|
||||||
|
84;Assassin's Creed IV: Black Flag;7.7;Nov 19, 2013
|
||||||
|
84;Age of Mythology: The Titans;8.7;Sep 30, 2003
|
||||||
|
84;SimCity 4;8.7;Jan 12, 2003
|
||||||
|
84;Microsoft Train Simulator;8.4;May 31, 2001
|
||||||
|
84;Rise of Nations: Rise of Legends;8.5;May 9, 2006
|
||||||
|
84;TOCA Race Driver 3;7.8;Feb 24, 2006
|
||||||
|
84;FTL: Faster Than Light;8.4;Sep 14, 2012
|
||||||
|
84;SOMA;8.2;Sep 22, 2015
|
||||||
|
84;DEFCON: Everybody Dies;8.3;Mar 26, 2007
|
||||||
|
84;Tron 2.0;8.3;Aug 26, 2003
|
||||||
|
84;Brothers in Arms: Earned in Blood;7.3;Oct 6, 2005
|
||||||
|
84;Grim Fandango Remastered;8.0;Jan 27, 2015
|
||||||
|
84;The Lord of the Rings: The Battle for Middle-Earth II;7.5;Mar 2, 2006
|
||||||
|
84;Battlefield Vietnam;7.4;Mar 16, 2004
|
||||||
|
84;Medieval: Total War - Viking Invasion;8.8;May 7, 2003
|
||||||
|
84;Fallout 4;5.4;Nov 10, 2015
|
||||||
|
84;Guild Wars Nightfall;8.7;Oct 26, 2006
|
||||||
|
84;The Binding of Isaac;8.3;Sep 28, 2011
|
||||||
|
84;Enemy Territory: Quake Wars;8.3;Oct 2, 2007
|
||||||
|
84;Trine 2;8.4;Dec 7, 2011
|
||||||
|
84;Rift;7.3;Mar 1, 2011
|
||||||
|
84;The Wolf Among Us: Episode 5 - Cry Wolf;8.8;Jul 8, 2014
|
||||||
|
84;Shift 2: Unleashed;6.1;Mar 29, 2011
|
||||||
|
84;Sid Meier's Civilization IV: Warlords;8.2;Jul 24, 2006
|
||||||
|
84;Battlefield 1942: The Road to Rome;7.9;Feb 2, 2003
|
||||||
|
84;Poseidon;8.4;Jun 25, 2001
|
||||||
|
84;F1 2010;6.6;Sep 22, 2010
|
||||||
|
84;Shatter;7.4;Mar 15, 2010
|
||||||
|
84;Darwinia;7.9;Jun 12, 2006
|
||||||
|
84;Ultimate General: Gettysburg;8.0;Oct 16, 2014
|
||||||
|
83;Final Fantasy XI: Treasures of Aht Urhgan;7.6;Apr 18, 2006
|
||||||
|
83;MDK2;8.4;May 31, 2000
|
||||||
|
83;Gunpoint;8.4;Jun 3, 2013
|
||||||
|
83;Beyond Good & Evil;8.7;Nov 19, 2003
|
||||||
|
83;Anno 2070;7.0;Nov 17, 2011
|
||||||
|
83;SMITE;8.3;Mar 25, 2014
|
||||||
|
83;Halo: Combat Evolved;7.4;Sep 30, 2003
|
||||||
|
83;Grim Dawn;8.9;Feb 25, 2016
|
||||||
|
83;Silent Storm;8.9;Jan 20, 2004
|
||||||
|
83;Command & Conquer: Generals - Zero Hour;9.0;Sep 22, 2003
|
||||||
|
83;Homeworld 2;8.3;Sep 16, 2003
|
||||||
|
83;Galactic Civilizations;8.1;Mar 26, 2003
|
||||||
|
83;EverQuest: The Shadows of Luclin;7.2;Dec 2, 2001
|
||||||
|
83;Orcs Must Die!;8.1;Oct 11, 2011
|
||||||
|
83;Life is Strange;8.6;Jan 19, 2016
|
||||||
|
83;Fable: The Lost Chapters;8.7;Sep 20, 2005
|
||||||
|
83;Unreal Tournament III;8.0;Nov 19, 2007
|
||||||
|
83;The Blackwell Epiphany;7.6;Apr 24, 2014
|
||||||
|
83;The Lord of the Rings Online: Siege of Mirkwood;7.1;Dec 1, 2009
|
||||||
|
83;Out of the Park Baseball 10;8.3;Jun 2, 2009
|
||||||
|
83;Tomb Raider: Anniversary;8.0;Jun 5, 2007
|
||||||
|
83;Need for Speed: Shift;5.7;Sep 15, 2009
|
||||||
|
83;Hearts of Iron II;8.6;Jan 4, 2005
|
||||||
|
83;FIFA Soccer 11;7.6;Sep 28, 2010
|
||||||
|
83;Project CARS;7.0;May 6, 2015
|
||||||
|
83;FIFA Soccer 2003;6.8;Nov 2, 2002
|
||||||
|
83;Icewind Dale II;8.3;Aug 26, 2002
|
||||||
|
83;Age of Empires;8.8;Sep 30, 1997
|
||||||
|
83;EverQuest II: Echoes of Faydwer;8.4;Nov 13, 2006
|
||||||
|
83;EverQuest II;7.3;Nov 8, 2004
|
||||||
|
83;Terraria;8.5;May 16, 2011
|
||||||
|
83;Final Fantasy XIV Online: A Realm Reborn;6.7;Aug 27, 2013
|
||||||
|
83;Card Hunter (2013);7.9;Sep 12, 2013
|
||||||
|
83;Sam & Max: The Devil's Playhouse - Episode 2: The Tomb of Sammun-Mak;7.9;May 18, 2010
|
||||||
|
83;This War of Mine;8.4;Nov 14, 2014
|
||||||
|
83;Darksiders;7.7;Sep 23, 2010
|
||||||
|
83;Tom Clancy's Rainbow Six 3: Raven Shield;8.9;Mar 19, 2003
|
||||||
|
83;World of Outlaws: Sprint Cars;7.9;Feb 11, 2003
|
||||||
|
83;Colin McRae Rally 2.0;8.4;Feb 14, 2001
|
||||||
|
83;Combat Flight Simulator 2: WWII Pacific Theater;8.1;Oct 13, 2000
|
||||||
|
83;Orcs Must Die! 2;7.9;Jul 30, 2012
|
||||||
|
83;Prey;7.9;Jul 11, 2006
|
||||||
|
83;Metal Gear Rising: Revengeance;7.9;Jan 9, 2014
|
||||||
|
83;Starseed Pilgrim;6.3;Apr 16, 2013
|
||||||
|
83;Age of Conan: Rise of the Godslayer;8.4;May 11, 2010
|
||||||
|
83;Alan Wake;8.0;Feb 16, 2012
|
||||||
|
83;Tiger Woods PGA Tour 2002;5.0;Feb 24, 2002
|
||||||
|
83;Monaco: What's Yours Is Mine;7.7;Apr 24, 2013
|
||||||
|
83;Transistor;8.3;May 20, 2014
|
||||||
|
83;Helldivers;6.9;Dec 7, 2015
|
||||||
|
83;Worldwide Soccer Manager 2009;8.1;Nov 18, 2008
|
||||||
|
83;Call of Duty: World at War;7.5;Nov 10, 2008
|
||||||
|
83;Torchlight;8.0;Jan 5, 2010
|
||||||
|
83;Prison Architect;8.3;Oct 6, 2015
|
||||||
|
83;Valdis Story: Abyssal City;8.1;Oct 30, 2013
|
||||||
|
83;Crimson Skies;8.2;Sep 17, 2000
|
||||||
|
83;RACE 07: Official WTCC Game;9.0;Oct 9, 2007
|
||||||
|
83;SUPERHOT;7.6;Feb 25, 2016
|
||||||
|
83;EverQuest II: Rise of Kunark;7.9;Nov 13, 2007
|
||||||
|
83;Dark Age of Camelot: Catacombs;8.6;Dec 7, 2004
|
||||||
|
83;Spore Creature Creator;8.1;Jun 17, 2008
|
||||||
|
83;Colin McRae Rally 2005;7.0;Oct 28, 2004
|
||||||
|
83;Tom Clancy's Splinter Cell: Conviction;5.2;Apr 27, 2010
|
||||||
|
83;Tribes: Vengeance;7.6;Oct 12, 2004
|
||||||
|
83;L.A. Noire: The Complete Edition;7.9;Nov 8, 2011
|
||||||
|
83;GTR Evolution;8.2;Sep 2, 2008
|
||||||
|
83;Life is Strange: Episode 5 - Polarized;8.4;Oct 20, 2015
|
||||||
|
83;BROFORCE;8.0;Oct 15, 2015
|
||||||
|
83;Independence War 2: Edge of Chaos;8.4;Aug 22, 2001
|
||||||
|
83;Myst III: Exile;8.2;May 8, 2001
|
||||||
|
83;Superbrothers: Sword & Sworcery EP;6.4;Apr 16, 2012
|
||||||
|
83;Sid Meier's Civilization IV: Colonization;6.7;Sep 22, 2008
|
||||||
|
83;Europa Universalis III;8.4;Jan 23, 2007
|
||||||
|
83;F1 2011;7.2;Sep 20, 2011
|
||||||
|
83;Prince of Persia: Warrior Within;8.4;Nov 30, 2004
|
||||||
|
83;Danganronpa: Trigger Happy Havoc;7.6;Feb 18, 2016
|
||||||
|
83;Counter-Strike: Global Offensive;7.8;Aug 21, 2012
|
||||||
|
83;Outland;7.1;Sep 29, 2014
|
||||||
|
83;MechWarrior 4: Mercenaries;8.6;Nov 7, 2002
|
||||||
|
83;Metal Gear Solid;9.0;Sep 24, 2000
|
||||||
|
82;Invisible, Inc.;8.0;May 12, 2015
|
||||||
|
82;Dark Souls II: Crown of the Ivory King;7.8;Sep 29, 2014
|
||||||
|
82;Red Faction: Guerrilla;7.5;Sep 15, 2009
|
||||||
|
82;The Book of Unwritten Tales;8.2;Oct 28, 2011
|
||||||
|
82;Capitalism II;9.0;Dec 16, 2001
|
||||||
|
82;Rally Trophy;8.5;Nov 20, 2001
|
||||||
|
82;Dawn of Discovery;8.8;Jun 17, 2009
|
||||||
|
82;City of Villains;8.1;Oct 31, 2005
|
||||||
|
82;Kentucky Route Zero - Act II;8.0;May 31, 2013
|
||||||
|
82;Tom Clancy's Splinter Cell: Blacklist;7.4;Aug 20, 2013
|
||||||
|
82;Act of War: Direct Action;8.5;Mar 15, 2005
|
||||||
|
82;Sokobond;7.8;Aug 27, 2013
|
||||||
|
82;Sam & Max Episode 105: Reality 2.0;8.4;Mar 29, 2007
|
||||||
|
82;Bejeweled 3;8.0;Dec 7, 2010
|
||||||
|
82;Dangerous Waters;8.8;Feb 22, 2005
|
||||||
|
82;Tomb Raider: Legend;7.8;Apr 11, 2006
|
||||||
|
82;Asheron's Call 2: Fallen Kings;8.8;Nov 20, 2002
|
||||||
|
82;Gemini Rue;8.4;Feb 24, 2011
|
||||||
|
82;Antichamber;8.2;Jan 31, 2013
|
||||||
|
82;Neverwinter Nights 2;6.5;Oct 31, 2006
|
||||||
|
82;Dragon Age: Origins - Awakening;7.7;Mar 16, 2010
|
||||||
|
82;Door Kickers;8.2;Oct 20, 2014
|
||||||
|
82;Hearthstone: Blackrock Mountain;6.4;Apr 2, 2015
|
||||||
|
82;Rome: Total War Barbarian Invasion;8.4;Sep 27, 2005
|
||||||
|
82;Hacknet;7.3;Aug 12, 2015
|
||||||
|
82;Tales of Monkey Island Chapter 3: Lair of the Leviathan;7.8;Sep 29, 2009
|
||||||
|
82;Neverwinter Nights 2: Mask of The Betrayer;8.8;Oct 9, 2007
|
||||||
|
82;Sins of a Solar Empire: Rebellion;7.8;Jun 12, 2012
|
||||||
|
82;Broken Sword: The Sleeping Dragon;7.6;Nov 17, 2003
|
||||||
|
82;Age of Wonders: Shadow Magic;8.5;Jul 25, 2003
|
||||||
|
82;Tom Clancy's Ghost Recon: Desert Siege;8.4;Mar 27, 2002
|
||||||
|
82;Warlords Battlecry II;8.5;Mar 11, 2002
|
||||||
|
82;Football Manager Live;2.9;Jan 23, 2009
|
||||||
|
82;Marvel: Ultimate Alliance;8.3;Oct 24, 2006
|
||||||
|
82;The Talos Principle: Road To Gehenna;7.6;Jul 23, 2015
|
||||||
|
82;Lara Croft and the Guardian of Light;8.2;Sep 28, 2010
|
||||||
|
82;Aquaria;8.3;Dec 7, 2007
|
||||||
|
82;Need for Speed: Underground;8.3;Nov 17, 2003
|
||||||
|
82;TrackMania Sunrise;8.5;May 6, 2005
|
||||||
|
82;King's Quest Chapter 1: A Knight to Remember;7.2;Jul 28, 2015
|
||||||
|
82;Dragon Age II;4.4;Mar 8, 2011
|
||||||
|
82;Endless Legend;7.9;Apr 24, 2014
|
||||||
|
82;Tom Clancy's Ghost Recon: Island Thunder;8.3;Sep 25, 2002
|
||||||
|
82;S.T.A.L.K.E.R.: Shadow of Chernobyl;8.4;Mar 20, 2007
|
||||||
|
82;Kero Blaster;6.9;May 11, 2014
|
||||||
|
82;Monday Night Combat;7.3;Jan 24, 2011
|
||||||
|
82;The Wolf Among Us: Episode 3 - A Crooked Mile;8.6;Apr 8, 2014
|
||||||
|
82;Airborne Assault: Red Devils Over Arnhem;7.4;Jun 17, 2002
|
||||||
|
82;Fallout Tactics: Brotherhood of Steel;7.9;Mar 14, 2001
|
||||||
|
82;Need for Speed: Underground 2;8.5;Nov 9, 2004
|
||||||
|
82;NHL Eastside Hockey Manager 2005;6.6;Oct 5, 2005
|
||||||
|
82;Legend of Grimrock;8.1;Apr 11, 2012
|
||||||
|
82;Dominions 3: The Awakening;8.1;Sep 29, 2006
|
||||||
|
82;Bulletstorm;7.7;Feb 22, 2011
|
||||||
|
82;Borderlands 2: Mr. Torgue's Campaign of Carnage;7.3;Nov 20, 2012
|
||||||
|
82;Desktop Dungeons;8.2;Oct 17, 2010
|
||||||
|
82;Fallout: New Vegas - Old World Blues;7.8;Jul 19, 2011
|
||||||
|
82;Crusader Kings II;8.7;Feb 14, 2012
|
||||||
|
82;MVP Baseball 2004;7.9;Mar 9, 2004
|
||||||
|
82;Europa 1400: The Guild;8.6;Nov 18, 2002
|
||||||
|
82;Battle Realms;8.6;Nov 7, 2001
|
||||||
|
82;Warlords Battlecry;8.2;Jul 9, 2000
|
||||||
|
82;Sam & Max Episode 201: Ice Station Santa;8.6;Nov 8, 2007
|
||||||
|
82;Technobabylon;7.8;May 21, 2015
|
||||||
|
82;World of Warcraft: Mists of Pandaria;4.8;Sep 25, 2012
|
||||||
|
82;FIFA 15;4.2;Sep 23, 2014
|
||||||
|
82;Recettear: An Item Shop's Tale;8.6;Sep 10, 2010
|
||||||
|
82;ETHER One;6.9;Mar 25, 2014
|
||||||
|
82;The Vanishing of Ethan Carter;8.1;Sep 25, 2014
|
||||||
|
82;Flight Simulator X: Acceleration;7.3;Oct 23, 2007
|
||||||
|
82;Blood;9.0;May 31, 1997
|
||||||
|
82;Command & Conquer: Red Alert 3;6.8;Oct 28, 2008
|
||||||
|
82;The Walking Dead: Episode 1 - A New Day;8.4;Apr 24, 2012
|
||||||
|
82;Links 2003;6.8;Sep 16, 2002
|
||||||
|
82;Earth & Beyond;7.1;Sep 2, 2002
|
||||||
|
82;Syberia;8.5;Sep 1, 2002
|
||||||
|
82;Virtual Pool 3;7.3;Nov 14, 2000
|
||||||
|
82;The Sims: Livin' Large;6.6;Aug 27, 2000
|
||||||
|
82;DCS: Black Shark;8.5;Apr 13, 2009
|
||||||
|
82;King's Bounty: Armored Princess;8.7;Sep 10, 2010
|
||||||
|
82;Age of Wonders III - Golden Realms;8.5;Sep 18, 2014
|
||||||
|
82;Strong Bad's Cool Game for Attractive People Episode 5: 8-Bit Is Enough;7.5;Dec 15, 2008
|
||||||
|
82;Prince of Persia;7.2;Dec 2, 2008
|
||||||
|
82;Joint Operations: Typhoon Rising;8.7;Jun 15, 2004
|
||||||
|
82;Xpand Rally;7.4;Apr 20, 2006
|
||||||
|
82;Dark Souls II: Crown of the Sunken King;7.3;Jul 22, 2014
|
||||||
|
82;Resident Evil HD Remaster;8.2;Jan 20, 2015
|
||||||
|
82;Celtic Kings: Rage of War;8.5;Aug 21, 2002
|
||||||
|
82;B-17 Flying Fortress: The Mighty 8th;7.3;Dec 13, 2000
|
||||||
|
82;EverQuest: The Scars of Velious;7.8;Dec 4, 2000
|
||||||
|
82;Metro: Last Light;8.6;May 14, 2013
|
||||||
|
82;Rising Storm;8.5;May 30, 2013
|
||||||
|
82;Lethal League;7.4;Aug 27, 2014
|
||||||
|
82;Botanicula;8.3;Apr 19, 2012
|
||||||
|
82;Pro Evolution Soccer 2015;5.8;Nov 13, 2014
|
||||||
|
82;Bookworm Adventures Deluxe;7.9;Dec 20, 2006
|
||||||
|
82;The Lord of the Rings: The Battle for Middle-Earth;8.6;Dec 6, 2004
|
||||||
|
82;Hitman: Blood Money;8.8;May 30, 2006
|
||||||
|
82;Need for Speed: Most Wanted;8.5;Nov 15, 2005
|
||||||
|
82;OlliOlli2: Welcome to Olliwood;5.2;Aug 11, 2015
|
||||||
|
82;WildStar;7.4;Jun 3, 2014
|
||||||
|
82;Broken Age: Act 1;7.7;Jan 28, 2014
|
||||||
|
82;Divinity II: The Dragon Knight Saga;8.2;Nov 5, 2010
|
||||||
|
82;Out of the Park Baseball 9;7.4;Jun 1, 2008
|
||||||
|
82;The Simpsons: Hit & Run;8.0;Nov 13, 2003
|
||||||
|
82;America's Army;6.1;Aug 28, 2002
|
||||||
|
82;Star Trek Bridge Commander;8.1;Feb 27, 2002
|
||||||
|
82;The Last Express;8.9;Mar 31, 1997
|
||||||
|
81;Quake 4;7.5;Oct 11, 2005
|
||||||
|
81;Nidhogg;7.0;Jan 13, 2014
|
||||||
|
81;Battlefield 4;6.0;Oct 29, 2013
|
||||||
|
81;To the Moon;8.9;Sep 7, 2012
|
||||||
|
81;The Sims 3: World Adventures;8.0;Nov 16, 2009
|
||||||
|
81;Painkiller;8.0;Apr 12, 2004
|
||||||
|
81;Airborne Assault: Highway to the Reich;6.1;Dec 10, 2003
|
||||||
|
81;Nancy Drew: Danger on Deception Island;7.7;Oct 1, 2003
|
||||||
|
81;Shadowrun: Hong Kong;7.7;Aug 20, 2015
|
||||||
|
81;Supreme Commander: Forged Alliance;8.9;Nov 6, 2007
|
||||||
|
81;Sunless Sea;7.4;Jul 1, 2014
|
||||||
|
81;The Walking Dead: Season Two Episode 3 - In Harm's Way;8.3;May 13, 2014
|
||||||
|
81;Marvel Heroes 2015;7.9;Jun 4, 2014
|
||||||
|
81;Football Manager 2016;6.4;Nov 13, 2015
|
||||||
|
81;VVVVVV;8.1;Jan 11, 2010
|
||||||
|
81;Darksiders II;7.9;Aug 14, 2012
|
||||||
|
81;Wolfenstein: The New Order;8.2;May 20, 2014
|
||||||
|
81;Lone Survivor;7.2;Apr 23, 2012
|
||||||
|
81;Alien: Isolation;8.4;Oct 6, 2014
|
||||||
|
81;The Witcher;8.8;Oct 30, 2007
|
||||||
|
81;Kentucky Route Zero - Act I;7.5;Jan 7, 2013
|
||||||
|
81;Jade Empire: Special Edition;8.3;Feb 26, 2007
|
||||||
|
81;SWAT 3: Elite Edition;8.4;Oct 6, 2000
|
||||||
|
81;Asheron's Call;8.8;Oct 31, 1999
|
||||||
|
81;Unravel;8.1;Feb 9, 2016
|
||||||
|
81;Midnight Club II;8.0;Jun 30, 2003
|
||||||
|
81;Chessmaster 10th Edition;7.4;Aug 12, 2004
|
||||||
|
81;Age of Empires III;7.7;Oct 18, 2005
|
||||||
|
81;Tales of Monkey Island Chapter 5: Rise of the Pirate God;8.4;Dec 8, 2009
|
||||||
|
81;Castlevania: Lords of Shadow Ultimate Edition;7.3;Aug 27, 2013
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 2: Strong Badia the Free;8.2;Sep 15, 2008
|
||||||
|
81;The Cat Lady;8.7;Dec 4, 2013
|
||||||
|
81;Vessel;7.9;Mar 1, 2012
|
||||||
|
81;Metro 2033;8.1;Mar 16, 2010
|
||||||
|
81;OutRun 2006: Coast 2 Coast;7.8;Jun 27, 2006
|
||||||
|
81;Blur;7.3;May 25, 2010
|
||||||
|
81;Empires: Dawn of the Modern World;8.2;Oct 21, 2003
|
||||||
|
81;Chessmaster 9000;7.7;Aug 31, 2002
|
||||||
|
81;Gothic;8.6;Nov 23, 2001
|
||||||
|
81;Arcanum: Of Steamworks and Magick Obscura;8.9;Aug 22, 2001
|
||||||
|
81;NASCAR Heat;8.6;Sep 27, 2000
|
||||||
|
81;Company of Heroes 2: Ardennes Assault;6.1;Nov 17, 2014
|
||||||
|
81;PlanetSide;7.3;May 20, 2003
|
||||||
|
81;Tales From The Borderlands: Episode 3 - Catch A Ride;8.4;Jun 23, 2015
|
||||||
|
81;The Walking Dead: Season Two Episode 2 - A House Divided;8.6;Mar 4, 2014
|
||||||
|
81;Kingdoms of Amalur: Reckoning;6.6;Feb 7, 2012
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 1: The Penal Zone;8.5;Apr 15, 2010
|
||||||
|
81;Borderlands;7.8;Oct 26, 2009
|
||||||
|
81;DG2: Defense Grid 2;6.7;Sep 23, 2014
|
||||||
|
81;Napoleon: Total War;7.9;Feb 23, 2010
|
||||||
|
81;Overlord;8.1;Jun 26, 2007
|
||||||
|
81;Firewatch;7.2;Feb 9, 2016
|
||||||
|
81;Victoria II: Heart of Darkness;8.7;Apr 16, 2013
|
||||||
|
81;Waveform;7.6;Jan 25, 2013
|
||||||
|
81;The Elder Scrolls IV: Knights of the Nine;7.5;Nov 21, 2006
|
||||||
|
81;Red Orchestra: Ostfront 41-45;8.6;Mar 14, 2006
|
||||||
|
81;Stronghold;8.9;Oct 21, 2001
|
||||||
|
81;Strong Bad's Cool Game for Attractive People Episode 4: Dangeresque 3: The Criminal Projective;8.5;Nov 17, 2008
|
||||||
|
81;Rochard;8.0;Nov 15, 2011
|
||||||
|
81;Fallout 3: Broken Steel;7.3;May 5, 2009
|
||||||
|
81;Tiger Woods PGA Tour 06;8.1;Sep 20, 2005
|
||||||
|
81;RollerCoaster Tycoon 3;4.9;Oct 26, 2004
|
||||||
|
81;Dragon's Dogma: Dark Arisen;8.3;Jan 15, 2016
|
||||||
|
81;Guild Wars 2: Heart of Thorns;7.3;Oct 23, 2015
|
||||||
|
81;AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity;7.2;Sep 3, 2009
|
||||||
|
81;The Sims 2 University;7.8;Feb 28, 2005
|
||||||
|
81;Far Cry 3: Blood Dragon;8.1;May 1, 2013
|
||||||
|
81;Sid Meier's Civilization: Beyond Earth;5.5;Oct 24, 2014
|
||||||
|
81;Disney's Toontown Online;8.7;Oct 6, 2005
|
||||||
|
81;Combat Mission 3: Afrika Korps;8.4;Dec 3, 2003
|
||||||
|
81;EverQuest: The Planes of Power;8.2;Oct 28, 2002
|
||||||
|
81;Rails Across America;8.0;Sep 18, 2001
|
||||||
|
81;Wasteland 2;7.3;Sep 19, 2014
|
||||||
|
81;Jamestown: Legend of the Lost Colony;7.5;Jun 8, 2011
|
||||||
|
81;Call of Duty: Black Ops;5.1;Nov 9, 2010
|
||||||
|
81;Kohan II: Kings of War;7.9;Sep 20, 2004
|
||||||
|
81;The Age of Decadence;7.9;Oct 15, 2015
|
||||||
|
81;Samorost 3;8.3;Mar 24, 2016
|
||||||
|
81;Order of Battle: Pacific;6.4;Apr 30, 2015
|
||||||
|
81;Empire Earth;8.3;Nov 12, 2001
|
||||||
|
81;Star Trek: Deep Space Nine: The Fallen;7.9;Nov 15, 2000
|
||||||
|
81;Sam & Max Episode 101: Culture Shock;8.7;Oct 18, 2006
|
||||||
|
81;Mirror's Edge (2008);8.1;Jan 12, 2009
|
||||||
|
81;TrackMania 2 Canyon;7.7;Sep 14, 2011
|
||||||
|
81;Sleeping Dogs;8.2;Aug 14, 2012
|
||||||
|
81;Star Wars Jedi Knight: Jedi Academy;8.6;Sep 17, 2003
|
||||||
|
81;Mortal Kombat Komplete Edition;8.7;Aug 6, 2013
|
||||||
|
81;Shadowrun: Dragonfall;8.3;Feb 27, 2014
|
||||||
|
81;Eets;6.4;Mar 29, 2006
|
||||||
|
81;World of Warships;6.6;Sep 17, 2015
|
||||||
|
81;TOCA Race Driver 2: The Ultimate Racing Simulator;8.0;Apr 15, 2004
|
||||||
|
81;Wargame: European Escalation;8.2;Feb 22, 2012
|
||||||
|
81;Dungeon Defenders;7.3;Oct 18, 2011
|
||||||
|
81;Sam & Max: The Devil's Playhouse - Episode 5: The City That Dares Not Sleep;7.9;Aug 30, 2010
|
||||||
|
81;Age of Empires III: The Asian Dynasties;8.5;Oct 23, 2007
|
||||||
|
81;Defense Grid: The Awakening;8.8;Jul 29, 2009
|
||||||
|
81;Codename: Panzers, Phase One;8.8;Sep 30, 2004
|
||||||
|
81;FIFA 16;4.4;Sep 22, 2015
|
||||||
|
81;Europa Universalis IV: Conquest of Paradise;7.7;Jan 14, 2014
|
||||||
|
81;Ghost Master;8.0;Aug 26, 2003
|
||||||
|
81;Divine Divinity;8.5;Sep 22, 2002
|
||||||
|
80;The Book of Unwritten Tales 2;7.7;Feb 20, 2015
|
||||||
|
80;Galactic Civilizations III;6.6;May 14, 2015
|
||||||
|
80;Lovers in a Dangerous Spacetime;7.2;Sep 9, 2015
|
||||||
|
80;Age of Conan: Hyborian Adventures;7.3;May 20, 2008
|
||||||
|
80;Company of Heroes 2: The Western Front Armies;6.8;Jun 23, 2014
|
||||||
|
80;Sid Meier's Civilization V: Gods & Kings;7.7;Jun 19, 2012
|
||||||
|
80;Age of Empires III: The WarChiefs;8.1;Oct 17, 2006
|
||||||
|
80;Metal Gear Solid V: Ground Zeroes;7.7;Dec 18, 2014
|
||||||
|
80;Trials Fusion;6.8;Apr 16, 2014
|
||||||
|
80;Syberia II;8.3;Mar 30, 2004
|
||||||
|
80;Tom Clancy's Ghost Recon;8.4;Nov 13, 2001
|
||||||
|
80;Conquest: Frontier Wars;8.3;Aug 14, 2001
|
||||||
|
80;Gabriel Knight 3: Blood of the Sacred, Blood of the Damned;8.8;Oct 5, 1999
|
||||||
|
80;Westerado: Double Barreled;7.4;Apr 16, 2015
|
||||||
|
80;Anomaly: Warzone Earth;7.3;Apr 8, 2011
|
||||||
|
80;Volume;7.2;Aug 18, 2015
|
||||||
|
80;GRID 2;5.7;May 27, 2013
|
||||||
|
80;The Banner Saga;7.9;Jan 14, 2014
|
||||||
|
80;Sam & Max Episode 202: Moai Better Blues;7.7;Jan 10, 2008
|
||||||
|
80;Age of Wonders III - Eternal Lords;8.4;Apr 14, 2015
|
||||||
|
80;Pro Evolution Soccer 2013;6.8;Sep 25, 2012
|
||||||
|
80;Osmos;7.5;Aug 18, 2009
|
||||||
|
80;Dungeon Siege II;7.9;Aug 16, 2005
|
||||||
|
80;Dead Island;6.8;Sep 6, 2011
|
||||||
|
80;Sam & Max Episode 104: Abe Lincoln Must Die!;7.8;Feb 22, 2007
|
||||||
|
80;Deus Ex: Invisible War;6.3;Dec 2, 2003
|
||||||
|
80;The Sims: Makin' Magic;8.6;Oct 28, 2003
|
||||||
|
80;Tom Clancy's Splinter Cell: Double Agent;5.7;Nov 7, 2006
|
||||||
|
80;Medal of Honor: Pacific Assault;7.4;Nov 4, 2004
|
||||||
|
80;Assassin's Creed: Revelations;7.4;Nov 29, 2011
|
||||||
|
80;Grandia II Anniversary Edition;7.6;Aug 24, 2015
|
||||||
|
80;Assassin's Creed III;6.2;Nov 20, 2012
|
||||||
|
80;Madden NFL 07;7.3;Aug 22, 2006
|
||||||
|
80;Outlast;8.4;Sep 4, 2013
|
||||||
|
80;The Chronicles of Riddick: Assault on Dark Athena;8.0;Apr 7, 2009
|
||||||
|
80;Hearts of Iron II: Doomsday;8.8;Apr 7, 2006
|
||||||
|
80;Dishonored: The Brigmore Witches;8.5;Aug 13, 2013
|
||||||
|
80;Codename: Panzers, Phase Two;8.0;Jul 25, 2005
|
||||||
|
80;Full Spectrum Warrior;7.0;Sep 21, 2004
|
||||||
|
80;AI War: Fleet Command;8.4;May 14, 2009
|
||||||
|
80;Freedom Fighters;8.3;Oct 1, 2003
|
||||||
|
80;NBA Live 2003;8.3;Nov 14, 2002
|
||||||
|
80;The Elder Scrolls III: Tribunal;8.2;Nov 6, 2002
|
||||||
|
80;Elite: Dangerous;6.4;Dec 16, 2014
|
||||||
|
80;Pure;6.9;Sep 16, 2008
|
||||||
|
80;Goodbye Deponia;8.1;Oct 17, 2013
|
||||||
|
80;SWAT 4: The Stetchkov Syndicate;8.3;Feb 28, 2006
|
||||||
|
80;Dropsy;7.3;Sep 10, 2015
|
||||||
|
80;Company of Heroes 2: The British Forces;5.9;Sep 3, 2015
|
||||||
|
80;Ground Control II: Operation Exodus;8.8;Jun 23, 2004
|
||||||
|
80;NBA Live 2004;9.0;Nov 11, 2003
|
||||||
|
80;Brutal Legend;7.8;Feb 26, 2013
|
||||||
|
80;Tomb Raider: Underworld;7.6;Nov 18, 2008
|
||||||
|
80;Oxenfree;7.7;Jan 15, 2016
|
||||||
|
80;Titan Quest: Immortal Throne;8.7;Mar 5, 2007
|
||||||
|
80;La-Mulana (Remake);7.1;Jul 13, 2012
|
||||||
|
80;X-Men Legends II: Rise of Apocalypse;8.4;Sep 20, 2005
|
||||||
|
80;SpellForce 2: Shadow Wars;7.6;May 5, 2006
|
||||||
|
80;Fritz 8 Deluxe;7.8;Dec 1, 2004
|
||||||
|
80;Trine;8.2;Sep 11, 2009
|
||||||
|
80;Dishonored: The Knife of Dunwall;8.1;Apr 16, 2013
|
||||||
|
80;Company of Heroes 2;2.0;Jun 25, 2013
|
||||||
|
80;Natural Selection 2;8.4;Oct 30, 2012
|
||||||
|
80;Read Only Memories;7.2;Oct 5, 2015
|
||||||
|
80;The Sims 3: Into the Future;5.4;Oct 22, 2013
|
||||||
|
80;Borderlands 2: Captain Scarlett and Her Pirate's Booty;7.4;Oct 16, 2012
|
||||||
|
80;FATE;8.3;Sep 19, 2006
|
||||||
|
80;2002 FIFA World Cup;7.9;Apr 30, 2002
|
||||||
|
80;Asheron's Call Dark Majesty;8.1;Nov 4, 2001
|
||||||
|
80;The Bug Butcher;8.2;Jan 19, 2016
|
||||||
|
80;Dragonshard;7.4;Oct 2, 2005
|
||||||
|
80;Icewind Dale: Enhanced Edition;7.6;Oct 30, 2014
|
||||||
|
80;The Magic Circle;7.3;Jul 9, 2015
|
||||||
|
80;Far Cry 4;6.6;Nov 18, 2014
|
||||||
|
80;Super Time Force Ultra;6.6;Aug 25, 2014
|
||||||
|
80;Day of Defeat: Source;9.1;Feb 7, 2006
|
||||||
|
80;Battlefield 2142;6.8;Oct 17, 2006
|
||||||
|
80;World of Tanks;3.8;Sep 6, 2011
|
||||||
|
80;Vampire: The Masquerade - Bloodlines;9.0;Nov 16, 2004
|
||||||
|
80;Dark Souls II: Scholar of the First Sin;7.4;Apr 1, 2015
|
||||||
|
80;Warhammer 40,000: Dawn of War II - Retribution;7.8;Mar 1, 2011
|
||||||
|
80;Panzer Corps;7.5;Jul 11, 2011
|
||||||
|
80;Men of War;8.1;Mar 16, 2009
|
||||||
|
80;Fallen Enchantress: Legendary Heroes;7.7;May 22, 2013
|
||||||
|
80;The Walking Dead: Episode 4 - Around Every Corner;8.5;Oct 10, 2012
|
||||||
|
80;Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood;8.4;Oct 30, 2009
|
||||||
|
80;Penny Arcade Adventures: Episode Two;7.7;Nov 7, 2008
|
||||||
|
80;Time Commando;8.9;Jul 31, 1996
|
||||||
|
80;Sins of a Solar Empire: Entrenchment;8.1;Feb 25, 2009
|
||||||
|
80;F1 2012;6.9;Sep 18, 2012
|
||||||
|
80;Luftrausers;6.8;Mar 18, 2014
|
||||||
|
80;Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst;7.9;Oct 24, 2013
|
||||||
|
80;Stealth Bastard Deluxe;8.3;Nov 28, 2012
|
||||||
|
80;Tom Clancy's Ghost Recon Advanced Warfighter;7.7;May 3, 2006
|
||||||
|
80;LEGO Batman: The Videogame;7.9;Sep 23, 2008
|
||||||
|
80;Stacking;7.9;Mar 6, 2012
|
||||||
|
80;Age of Wonders III;7.8;Mar 31, 2014
|
||||||
|
80;Life is Strange: Episode 3 - Chaos Theory;9.0;May 19, 2015
|
||||||
|
80;The Legend of Heroes: Trails in the Sky SC;8.4;Oct 29, 2015
|
||||||
|
80;Proteus;5.6;Jan 30, 2013
|
||||||
|
80;Robin Hood: The Legend of Sherwood;8.3;Nov 14, 2002
|
||||||
|
80;Soldier of Fortune II: Double Helix;7.3;May 20, 2002
|
||||||
|
80;RollerCoaster Tycoon: Loopy Landscapes;9.0;Sep 30, 2000
|
||||||
|
80;Toki Tori;7.9;Jan 28, 2010
|
||||||
|
80;RoboBlitz;8.3;Nov 7, 2006
|
||||||
|
80;Wargame: AirLand Battle;8.1;May 29, 2013
|
||||||
|
80;Football Manager 2015;6.0;Nov 7, 2014
|
||||||
|
80;The Suffering;8.2;Jun 8, 2004
|
||||||
|
80;Gish;7.2;Sep 17, 2004
|
||||||
|
80;Axiom Verge;8.2;May 14, 2015
|
||||||
|
80;Driver: San Francisco;7.0;Sep 27, 2011
|
||||||
|
80;The Corporate Machine;7.5;Jul 14, 2001
|
||||||
|
80;Dungeons & Dragons: Chronicles of Mystara;6.7;Jun 18, 2013
|
||||||
|
80;Disciples II: Rise of the Elves;8.1;Nov 25, 2003
|
||||||
|
80;MechCommander 2;8.3;Jul 18, 2001
|
||||||
|
80;Waterloo: Napoleon's Last Battle;7.5;Mar 25, 2001
|
||||||
|
80;Chessmaster 8000;6.4;Nov 14, 2000
|
||||||
|
80;Circle of Blood;8.6;Sep 30, 1996
|
||||||
|
80;BioShock Infinite: Burial at Sea - Episode Two;8.5;Mar 25, 2014
|
||||||
|
80;S.T.A.L.K.E.R.: Call of Pripyat;8.7;Feb 2, 2010
|
||||||
|
80;The Walking Dead: Season Two - A Telltale Games Series;8.3;Dec 17, 2013
|
||||||
|
80;FLY'N;8.2;Nov 9, 2012
|
||||||
|
80;Total War: Attila;7.3;Feb 17, 2015
|
||||||
|
80;The Wolf Among Us;8.8;Oct 11, 2013
|
||||||
|
80;Nancy Drew: Secret of the Old Clock;8.1;Jul 26, 2005
|
||||||
|
80;ArcheAge;3.6;Sep 16, 2014
|
||||||
|
80;CAPSIZED;7.1;Apr 29, 2011
|
||||||
|
80;Microsoft Flight Simulator X;7.6;Oct 17, 2006
|
||||||
|
80;Myst V: End of Ages;7.8;Sep 19, 2005
|
||||||
|
80;Railroad Tycoon 3;7.7;Oct 23, 2003
|
||||||
|
80;Hostile Waters: Antaeus Rising;8.1;Jun 13, 2001
|
||||||
|
79;Dustforce;7.9;Jan 17, 2012
|
||||||
|
79;Empire Earth II;7.0;Apr 26, 2005
|
||||||
|
79;Fallout 3: Point Lookout;7.8;Jun 23, 2009
|
||||||
|
79;Test Drive Unlimited;8.1;Mar 20, 2007
|
||||||
|
79;Dying Light: The Following;8.3;Feb 9, 2016
|
||||||
|
79;The Path;7.0;Mar 18, 2009
|
||||||
|
79;Dungeon of the Endless;8.0;Oct 27, 2014
|
||||||
|
79;Revenge of the Titans;7.6;May 24, 2010
|
||||||
|
79;Bookworm Adventures: Volume 2;7.6;Jul 30, 2009
|
||||||
|
79;F1 2001;7.5;Oct 14, 2001
|
||||||
|
79;Brothers in Arms: Hell's Highway;7.9;Oct 7, 2008
|
||||||
|
79;Star Wars: Empire at War;8.4;Feb 15, 2006
|
||||||
|
79;Dariusburst: Chronicle Saviours;8.3;Dec 3, 2015
|
||||||
|
79;Europa Universalis: Rome - Vae Victis;8.6;Nov 19, 2008
|
||||||
|
79;Silent Hunter: Wolves of the Pacific;6.5;Mar 20, 2007
|
||||||
|
79;Pillars of Eternity: The White March - Part 2;6.7;Feb 16, 2016
|
||||||
|
79;1701 A.D.;8.3;Nov 6, 2006
|
||||||
|
79;Stasis;7.6;Aug 31, 2015
|
||||||
|
79;Pro Evolution Soccer 2009;7.4;Nov 12, 2008
|
||||||
|
79;Return to Mysterious Island;8.5;Nov 2, 2004
|
||||||
|
79;Jotun;7.0;Sep 29, 2015
|
||||||
|
79;Else Heart.Break();7.5;Sep 24, 2015
|
||||||
|
79;Kohan: Ahriman's Gift;8.7;Nov 5, 2001
|
||||||
|
79;Emperor: Battle for Dune;8.3;Jun 12, 2001
|
||||||
|
79;Trackmania Turbo;6.9;Mar 24, 2016
|
||||||
|
79;Cart Life;5.9;Jul 29, 2010
|
||||||
|
79;Sword of the Stars: Born of Blood;8.1;Jun 5, 2007
|
||||||
|
79;Worms Reloaded;6.7;Aug 26, 2010
|
||||||
|
79;Warhammer: End Times - Vermintide;7.9;Oct 23, 2015
|
||||||
|
79;Euro Truck Simulator 2;8.7;Jan 16, 2013
|
||||||
|
79;Tropico 3;8.2;Oct 20, 2009
|
||||||
|
79;Cities: Skylines - After Dark;7.9;Sep 24, 2015
|
||||||
|
79;Runaway: A Twist of Fate;8.5;Apr 21, 2011
|
||||||
|
79;Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal;8.2;Jul 7, 2009
|
||||||
|
79;Bloodline Champions;8.0;Jan 13, 2011
|
||||||
|
79;The Sims: Superstar;8.2;May 12, 2003
|
||||||
|
79;NBA Live 2005;8.5;Oct 26, 2004
|
||||||
|
79;Valiant Hearts: The Great War;8.6;Jun 25, 2014
|
||||||
|
79;Payday 2;3.4;Aug 13, 2013
|
||||||
|
79;Dungeons of Dredmor;7.8;Jul 13, 2011
|
||||||
|
79;Geometry Wars 3: Dimensions;6.2;Nov 25, 2014
|
||||||
|
79;Assassin's Creed: Director's Cut Edition;7.5;Apr 8, 2008
|
||||||
|
79;Puzzle Dimension;7.6;Jun 21, 2010
|
||||||
|
79;Split/Second;8.2;May 18, 2010
|
||||||
|
79;Sang-Froid: Tales of Werewolves;7.9;Apr 5, 2013
|
||||||
|
79;The Incredible Adventures of Van Helsing: Final Cut;7.2;Oct 7, 2015
|
||||||
|
79;Hitman: Absolution;7.0;Nov 19, 2012
|
||||||
|
79;Call of Juarez: Gunslinger;8.2;May 22, 2013
|
||||||
|
79;Rome: Total War Alexander;7.6;Jun 19, 2006
|
||||||
|
79;Strong Bad's Cool Game for Attractive People Episode 3: Baddest of the Bands;8.1;Oct 27, 2008
|
||||||
|
79;Sam & Max Episode 102: Situation: Comedy;7.9;Dec 20, 2006
|
||||||
|
79;Tropico 3: Absolute Power;7.7;May 17, 2010
|
||||||
|
79;Sam & Max Episode 106: Bright Side of the Moon;7.3;Apr 26, 2007
|
||||||
|
79;Day of Defeat;9.3;May 6, 2003
|
||||||
|
79;Space Empires: IV;8.3;Nov 6, 2000
|
||||||
|
79;Resident Evil 4: Ultimate HD Edition;7.7;Feb 27, 2014
|
||||||
|
79;Sam & Max Episode 203: Night of the Raving Dead;8.2;Feb 12, 2008
|
||||||
|
79;FlatOut: Ultimate Carnage;7.6;Sep 2, 2008
|
||||||
|
79;Guitar Hero III: Legends of Rock;7.2;Nov 13, 2007
|
||||||
|
79;Sid Meier's Civilization: Beyond Earth - Rising Tide;5.9;Oct 9, 2015
|
||||||
|
79;Memoria;8.5;Aug 29, 2013
|
||||||
|
79;The Last Door;7.8;May 20, 2014
|
||||||
|
79;Shadowgrounds Survivor;7.8;Dec 6, 2007
|
||||||
|
79;Gothic II;8.8;Oct 28, 2003
|
||||||
|
79;Port Royale;8.2;Jun 4, 2003
|
||||||
|
79;Deadly Dozen: Pacific Theater;7.9;Oct 31, 2002
|
||||||
|
79;Shattered Galaxy;8.3;Aug 21, 2001
|
||||||
|
79;Close Combat: Invasion: Normandy;8.2;Oct 10, 2000
|
||||||
|
79;King's Bounty: The Legend;8.6;Sep 23, 2008
|
||||||
|
79;Rage;5.1;Oct 4, 2011
|
||||||
|
79;The Misadventures of P.B. Winterbottom;8.3;Apr 20, 2010
|
||||||
|
79;Uru: Ages Beyond Myst;7.4;Nov 11, 2003
|
||||||
|
79;Guild Wars: Eye of the North;8.6;Aug 28, 2007
|
||||||
|
79;Tales From The Borderlands: Episode 4 - Escape Plan Bravo;8.4;Aug 18, 2015
|
||||||
|
79;EverQuest: Lost Dungeons of Norrath;7.0;Sep 8, 2003
|
||||||
|
79;Battlefield 1942: Secret Weapons of WWII;8.5;Sep 4, 2003
|
||||||
|
79;The Sims: Unleashed;8.0;Sep 23, 2002
|
||||||
|
79;Race the Sun;7.5;Aug 19, 2013
|
||||||
|
79;The Sims 3: Pets;6.1;Oct 18, 2011
|
||||||
|
79;Prototype;7.9;Jun 10, 2009
|
||||||
|
79;Stick it to the Man!;7.2;Dec 13, 2013
|
||||||
|
79;Street Fighter X Tekken;6.4;May 11, 2012
|
||||||
|
79;Frozen Cortex;6.5;Feb 19, 2015
|
||||||
|
79;Free Realms;6.4;Apr 29, 2009
|
||||||
|
79;Homeworld: Deserts of Kharak;8.0;Jan 20, 2016
|
||||||
|
79;Don't Starve;8.3;Apr 23, 2013
|
||||||
|
79;Assault Android Cactus;7.0;Sep 23, 2015
|
||||||
|
79;Trainz;7.2;Feb 10, 2002
|
||||||
|
79;King Arthur: The Role-Playing Wargame;7.9;Nov 24, 2009
|
||||||
|
79;Chivalry: Medieval Warfare;7.8;Oct 16, 2012
|
||||||
|
79;Overlord II;8.1;Jun 23, 2009
|
||||||
|
79;F.E.A.R. 2: Project Origin;7.8;Feb 10, 2009
|
||||||
|
79;Tom Clancy's Rainbow Six Siege;6.9;Dec 1, 2015
|
||||||
|
79;The Settlers 7: Paths to a Kingdom;5.2;Mar 23, 2010
|
||||||
|
79;RollerCoaster Tycoon 3: Soaked!;2.9;Jun 23, 2005
|
||||||
|
79;Dark Souls II: Crown of the Old Iron King;7.6;Aug 26, 2014
|
||||||
|
79;TrackMania 2 Valley;8.3;Jul 4, 2013
|
||||||
|
79;State of Decay;6.8;Nov 5, 2013
|
||||||
|
79;LEGO Harry Potter: Years 1-4;7.8;Jun 29, 2010
|
||||||
|
79;Rift: Storm Legion;7.8;Nov 13, 2012
|
||||||
|
79;Crayon Physics Deluxe;7.6;Jan 7, 2009
|
||||||
|
79;Nancy Drew: Legend of the Crystal Skull;8.5;Oct 8, 2007
|
||||||
|
79;EverQuest II: Desert of Flames;7.8;Sep 12, 2005
|
||||||
|
79;SimCity 4: Rush Hour;8.6;Sep 22, 2003
|
||||||
|
79;Uncommon Valor: Campaign for the South Pacific;7.6;Dec 2, 2002
|
||||||
|
79;Global Operations;8.3;Mar 25, 2002
|
||||||
|
78;Apotheon;7.8;Feb 3, 2015
|
||||||
|
78;Need for Speed: Most Wanted - A Criterion Game;4.4;Oct 30, 2012
|
||||||
|
78;Star Wars: Battlefront II;8.8;Oct 31, 2005
|
||||||
|
78;The Walking Dead: Season Two Episode 1 - All That Remains;8.5;Dec 17, 2013
|
||||||
|
78;The Journey Down: Chapter Two;7.1;Aug 25, 2014
|
||||||
|
78;Star Trek: Elite Force II;7.6;Jun 25, 2003
|
||||||
|
78;Zuma's Revenge!;7.9;Sep 15, 2009
|
||||||
|
78;Baldur's Gate: Enhanced Edition;7.0;Nov 28, 2012
|
||||||
|
78;Doom 3: Resurrection of Evil;6.0;Apr 4, 2005
|
||||||
|
78;LEGO Indiana Jones: The Original Adventures;7.7;Jun 3, 2008
|
||||||
|
78;NASCAR Thunder 2004;7.5;Sep 16, 2003
|
||||||
|
78;Transformers: Fall of Cybertron;7.8;Aug 21, 2012
|
||||||
|
78;FIFA Soccer 06;6.7;Oct 4, 2005
|
||||||
|
78;DeadCore;6.8;Oct 17, 2014
|
||||||
|
78;The Walking Dead: Season Two Episode 5 - No Going Back;8.5;Aug 26, 2014
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 221 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 221 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 35 KiB |