Merge branch 'master' into izio38-patch-1

This commit is contained in:
LazarusOfTheFallen
2021-02-01 15:27:54 -06:00
committed by GitHub
5 changed files with 42 additions and 23 deletions
+27 -18
View File
@@ -1,32 +1,41 @@
# esx_voice
FXServer ESX Voice
#### Description
This is a proximity voice controller script. The default control for this is `Left Shift + H` (QWERTY).
#### Download
## Download & Installation
**1) Using [fvm](https://github.com/qlaffont/fvm-installer)**
### Using [fvm](https://github.com/qlaffont/fvm-installer)
```
fvm install --save --folder=esx esx-org/esx_voice
```
**2) Manually**
- Download https://github.com/ESX-Org/esx_voice/releases/latest
- Put it in resource/[esx] directory
**3) Using Git**
### Using Git
```
cd resouces
git clone https://github.com/ESX-Org/esx_voice
cd resources
git clone https://github.com/ESX-Org/esx_voice [esx]/esx_voice
```
#### Installation
### Manually
- Download https://github.com/ESX-Org/esx_voice/archive/master.zip
- Put it in the `[esx]` directory
1) Add `start esx_voice` to your server.cfg
## Installation
Add this into your `server.cfg`
```
start esx_voice
```
## Credits
#### Credits
Original Script by [aabbfive](https://github.com/aabbfive/voicecontroller)
[aabbfive](https://github.com/aabbfive/voicecontroller) - Original author
# Legal
### License
esx_voice
Copyright (C) 2015-2020 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
+1 -1
View File
@@ -73,4 +73,4 @@ Citizen.CreateThread(function()
drawLevel(185, 185, 185, 255)
end
end
end)
end)
+3 -2
View File
@@ -1,2 +1,3 @@
Config = {}
Config.Locale = 'en'
Config = {}
Config.Locale = 'en'
+5 -2
View File
@@ -1,4 +1,6 @@
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
fx_version 'adamant'
game 'gta5'
description 'ESX Voice Controller'
@@ -9,9 +11,10 @@ client_scripts {
'locales/br.lua',
'locales/en.lua',
'locales/fi.lua',
'locales/fr.lua',
'locales/fr.lua',
'locales/pl.lua',
'locales/sv.lua',
'locales/ko.lua',
'config.lua',
'client/main.lua'
}
+6
View File
@@ -0,0 +1,6 @@
Locales ['ko'] = {
['voice'] = '~y~목소리: ~s~%s',
['normal'] = '보통',
['shout'] = '외침',
['whisper'] = '속삭임',
}