feat: add PixARK support.

This commit is contained in:
CosminPerRam 2024-04-14 23:15:17 +03:00
parent 3c9f109942
commit 66a9ed8b3f
4 changed files with 5 additions and 1 deletions

View file

@ -87,7 +87,8 @@ requirements/information.
| Mordhau | MORDHAU | Valve | |
| Enshrouded | ENSHROUDED | Valve | |
| Myth of Empires | MOE | Valve | |
| Pirates, Vikings, and Knights II | PVAK2 | Valve |
| Pirates, Vikings, and Knights II | PVAK2 | Valve | |
| PixARK | PIXARK | | |
## Planned to add support:

View file

@ -8,6 +8,7 @@ Games:
- [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support.
- [Myth of Empires](https://store.steampowered.com/app/1371580/Myth_of_Empires/) support.
- [Pirates, Vikings, and Knights II](https://store.steampowered.com/app/17570/Pirates_Vikings_and_Knights_II/) support.
- [PixARK](https://store.steampowered.com/app/593600/PixARK/) support.
# 0.5.0 - 15/03/2024

View file

@ -96,6 +96,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
"l4d2" => game!("Left 4 Dead 2", 27015, Protocol::Valve(Engine::new(550))),
"ohd" => game!("Operation: Harsh Doorstop", 27005, Protocol::Valve(Engine::new_with_dedicated(736_590, 950_900))),
"onset" => game!("Onset", 7776, Protocol::Valve(Engine::new(1_105_810))),
"pixark" => game!("PixARK", 27015, Protocol::Valve(Engine::new(593_600))),
"postscriptum" => game!("Post Scriptum", 10037, Protocol::Valve(Engine::new(736_220))),
"projectzomboid" => game!("Project Zomboid", 16261, Protocol::Valve(Engine::new(108_600))),
"pvak2" => game!("Pirates, Vikings, and Knights II", 27015, Protocol::Valve(Engine::new(17570))),

View file

@ -166,3 +166,4 @@ game_query_mod!(
Engine::new(17570),
27015
);
game_query_mod!(pixark, "PixARK", Engine::new(593_600), 27015);