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:
Guilherme Werner 2023-11-12 06:38:59 -03:00 committed by GitHub
parent c49d463858
commit a8bc7521f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 280 additions and 3 deletions

12
protocols/asa.js Normal file
View 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'
}
}