mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
Added arma 3
This commit is contained in:
parent
43a613b7c0
commit
3588b97b83
3 changed files with 8 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. |
|
||||
|
|
|
|||
|
|
@ -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,12 @@ game_query_mod!(
|
|||
Engine::new(33930),
|
||||
2304
|
||||
);
|
||||
game_query_mod!(
|
||||
arma3,
|
||||
"ARMA 3",
|
||||
Engine::new(33930),
|
||||
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