mirror of
https://github.com/tribufu/node-gamedig
synced 2026-06-01 09:42:41 +00:00
feat: Add support for ARK: Survival Ascended using EOS protocol (#402)
* Add epic protocol * Add support for ARK: Survival Ascended - Using epic protocol * Fix online player count * Final cleanup
This commit is contained in:
parent
c49d463858
commit
a8bc7521f6
7 changed files with 280 additions and 3 deletions
12
protocols/asa.js
Normal file
12
protocols/asa.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import Epic from './epic.js'
|
||||
|
||||
export default class asa extends Epic {
|
||||
constructor () {
|
||||
super()
|
||||
|
||||
// OAuth2 credentials extracted from ARK: Survival Ascended files.
|
||||
this.clientId = 'xyza7891muomRmynIIHaJB9COBKkwj6n'
|
||||
this.clientSecret = 'PP5UGxysEieNfSrEicaD1N2Bb3TdXuD7xHYcsdUHZ7s'
|
||||
this.deploymentId = 'ad9a8feffb3b4b2ca315546f038c3ae2'
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue