mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
feat: add myth of empires support
This commit is contained in:
parent
cca938674c
commit
9264d5fe4a
4 changed files with 4 additions and 0 deletions
1
GAMES.md
1
GAMES.md
|
|
@ -84,6 +84,7 @@ Beware of the `Notes` column, as it contains information about query port offset
|
||||||
| Double Action: Boogaloo | DAB | Valve | |
|
| Double Action: Boogaloo | DAB | Valve | |
|
||||||
| Mordhau | MORDHAU | Valve | |
|
| Mordhau | MORDHAU | Valve | |
|
||||||
| Enshrouded | ENSHROUDED | Valve | |
|
| Enshrouded | ENSHROUDED | Valve | |
|
||||||
|
| Myth of Empires | MOE | Valve | |
|
||||||
|
|
||||||
## Planned to add support:
|
## Planned to add support:
|
||||||
_
|
_
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ Who knows what the future holds...
|
||||||
Games:
|
Games:
|
||||||
- [Mordhau](https://store.steampowered.com/app/629760/MORDHAU/) support.
|
- [Mordhau](https://store.steampowered.com/app/629760/MORDHAU/) support.
|
||||||
- [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support.
|
- [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support.
|
||||||
|
- [Myth of Empires](https://store.steampowered.com/app/1371580/Myth_of_Empires/) support.
|
||||||
|
|
||||||
# 0.5.0 - 15/03/2024
|
# 0.5.0 - 15/03/2024
|
||||||
### Changes:
|
### Changes:
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
||||||
"unrealtournament2004" => game!("Unreal Tournament 2004", 7778, Protocol::Unreal2),
|
"unrealtournament2004" => game!("Unreal Tournament 2004", 7778, Protocol::Unreal2),
|
||||||
"eco" => game!("Eco", 3000, Protocol::PROPRIETARY(ProprietaryProtocol::Eco)),
|
"eco" => game!("Eco", 3000, Protocol::PROPRIETARY(ProprietaryProtocol::Eco)),
|
||||||
"zps" => game!("Zombie Panic: Source", 27015, Protocol::Valve(Engine::new(17_500))),
|
"zps" => game!("Zombie Panic: Source", 27015, Protocol::Valve(Engine::new(17_500))),
|
||||||
|
"moe" => game!("Myth Of Empires", 12888, Protocol::Valve(Engine::new(1_371_580))),
|
||||||
"mordhau" => game!("Mordhau", 27015, Protocol::Valve(Engine::new(629_760))),
|
"mordhau" => game!("Mordhau", 27015, Protocol::Valve(Engine::new(629_760))),
|
||||||
"mindustry" => game!("Mindustry", crate::games::mindustry::DEFAULT_PORT, Protocol::PROPRIETARY(ProprietaryProtocol::Mindustry)),
|
"mindustry" => game!("Mindustry", crate::games::mindustry::DEFAULT_PORT, Protocol::PROPRIETARY(ProprietaryProtocol::Mindustry)),
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -158,4 +158,5 @@ game_query_mod!(
|
||||||
);
|
);
|
||||||
game_query_mod!(vrising, "V Rising", Engine::new(1_604_030), 27016);
|
game_query_mod!(vrising, "V Rising", Engine::new(1_604_030), 27016);
|
||||||
game_query_mod!(zps, "Zombie Panic: Source", Engine::new(17_500), 27015);
|
game_query_mod!(zps, "Zombie Panic: Source", Engine::new(17_500), 27015);
|
||||||
|
game_query_mod!(moe, "Myth of Empires", Engine::new(1_371_580), 12888);
|
||||||
game_query_mod!(mordhau, "Mordhau", Engine::new(629_760), 27015);
|
game_query_mod!(mordhau, "Mordhau", Engine::new(629_760), 27015);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue