mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
feat(game): arma 3 support (#240)
This commit is contained in:
commit
0a304c7513
4 changed files with 9 additions and 0 deletions
1
GAMES.md
1
GAMES.md
|
|
@ -32,6 +32,7 @@ requirements/information.
|
|||
| Rust | RUST | Valve | |
|
||||
| Counter-Strike | COUNTERSTRIKE | Valve GoldSrc | |
|
||||
| Arma 2: Operation Arrowhead | A2OA | Valve | Query port offset: 1. |
|
||||
| Arma 3 | ARMA3 | Valve | |
|
||||
| Day of Infamy | DOI | Valve | |
|
||||
| Half-Life Deathmatch: Source | HLDS | Valve | |
|
||||
| Risk of Rain 2 | ROR2 | Valve | Query port offset: 1. |
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@ Who knows what the future holds...
|
|||
|
||||
# X.Y.Z - DD/MM/YYYY
|
||||
|
||||
# 0.6.2 - DD/MM/YYYY
|
||||
|
||||
Games:
|
||||
|
||||
- Added `Arma 3` support (by @Perondas).
|
||||
|
||||
# 0.6.1 - 05/12/2024
|
||||
|
||||
Games:
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
|||
"alienswarm" => game!("Alien Swarm", 27015, Protocol::Valve(Engine::new(630))),
|
||||
"aoc" => game!("Age of Chivalry", 27015, Protocol::Valve(Engine::new(17510))),
|
||||
"a2oa" => game!("ARMA 2: Operation Arrowhead", 2304, Protocol::Valve(Engine::new(33930))),
|
||||
"arma3" => game!("ARMA 3", 2303, Protocol::Valve(Engine::new(107_410))),
|
||||
"ase" => game!("ARK: Survival Evolved", 27015, Protocol::Valve(Engine::new(346_110))),
|
||||
"asrd" => game!("Alien Swarm: Reactive Drop", 2304, Protocol::Valve(Engine::new(563_560))),
|
||||
"armareforger" => game!("Arma Reforger", 17777, Protocol::Valve(Engine::new(1_874_880)), GatheringSettings {
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ game_query_mod!(
|
|||
Engine::new(33930),
|
||||
2304
|
||||
);
|
||||
game_query_mod!(arma3, "ARMA 3", Engine::new(107_410), 2303);
|
||||
game_query_mod!(basedefense, "Base Defense", Engine::new(632_730), 27015);
|
||||
game_query_mod!(alienswarm, "Alien Swarm", Engine::new(630), 27015);
|
||||
game_query_mod!(aoc, "Age of Chivalry", Engine::new(17510), 27015);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue