fix: Added c query requests for gtasao (open.mp) (#547)

* Added full OMP support

* Added a new protocol for OMP which extends SAMP

* Edited the changelog
This commit is contained in:
Focus 2024-02-22 22:57:41 +02:00 committed by GitHub
parent cf0144683d
commit 6bfc3426e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 15 additions and 3 deletions

8
protocols/gtasao.js Normal file
View file

@ -0,0 +1,8 @@
import samp from './samp.js'
export default class gtasao extends samp {
constructor() {
super()
this.isOmp = true
}
}