fix(qb-core): post-update recovery + centralizare notify 17mov_Hud
Restaurat jobs.lua din git (Quasar fork a suprascris joburile 17mov). Adăugat item map în items.lua (lipsea, rupt rv-maphold). Setat licences.driver = false în config.lua. Override QBCore.Functions.Notify + QBCore:Notify event → 17mov_Hud:ShowNotification (toate notificările merg automat prin 17mov_Hud).
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
# OxMySQL exports wrapper for FiveM
|
||||
|
||||
Types are fully supported and you will get intellisense on the `oxmysql` object when using it.
|
||||
|
||||
## Installation
|
||||
|
||||
```yaml
|
||||
# With pnpm
|
||||
pnpm add @overextended/oxmysql
|
||||
|
||||
# With Yarn
|
||||
yarn add @overextended/oxmysql
|
||||
|
||||
# With npm
|
||||
npm install @overextended/oxmysql
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Import as module:
|
||||
|
||||
```js
|
||||
import { oxmysql } from '@overextended/oxmysql';
|
||||
```
|
||||
|
||||
Import with require:
|
||||
|
||||
```js
|
||||
const { oxmysql } = require('@overextended/oxmysql');
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
[View documentation](https://overextended.github.io/docs/oxmysql)
|
||||
|
||||
```js
|
||||
oxmysql.scalar('SELECT username FROM users', (result) => {
|
||||
console.log(result)
|
||||
}).catch(console.error)
|
||||
|
||||
oxmysql.scalar('SELECT username FROM users').then((result) => {
|
||||
console.log(result)
|
||||
}).catch(console.error)
|
||||
|
||||
const result = await oxmysql.scalar('SELECT username FROM users').catch(console.error)
|
||||
console.log(result)
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
LGPL-3.0
|
||||
Reference in New Issue
Block a user