From 176adafc08c037f892c28e9ae44263893b223844 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Sat, 4 Jan 2020 11:15:47 +0100 Subject: [PATCH] Added missing requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: EDWernars Co-Authored-By: Petr 'celestian' Čech Co-Authored-By: kandasoranyan --- README.md | 18 ++++++++++++++---- __resource.lua | 3 ++- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c8757c21..ec62e9de 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,16 @@ # esx_policejob +This resource for ESX adds police armories, vehicle garages and ability for cops to search, handcuff people and much more. + ### Requirements * Auto mode - * [esx_billing](https://github.com/FXServer-ESX/fxserver-esx_billing) + * [esx_billing](https://github.com/ESX-Org/esx_billing) + * [esx_vehicleshop](https://github.com/ESX-Org/esx_vehicleshop) * Player management (boss actions and armory with buyable weapons) - * [esx_society](https://github.com/FXServer-ESX/fxserver-esx_society) - * [esx_datastore](https://github.com/FXServer-ESX/fxserver-esx_datastore) + * [esx_addoninventory](https://github.com/ESX-Org/esx_addoninventory) + * [esx_datastore](https://github.com/ESX-Org/esx_datastore) + * [esx_society](https://github.com/ESX-Org/esx_society) * ESX Identity Support * [esx_identity](https://github.com/ESX-Org/esx_identity) @@ -14,6 +18,9 @@ * ESX License Support * [esx_license](https://github.com/ESX-Org/esx_license) +* ESX Service Support + * [esx_service](https://github.com/ESX-Org/esx_service) + ## Download & Installation ### Using [fvm](https://github.com/qlaffont/fvm-installer) @@ -39,15 +46,18 @@ git clone https://github.com/ESX-Org/esx_policejob [esx]/esx_policejob ``` start esx_policejob ``` + - * If you want player management you have to set `Config.EnablePlayerManagement` to `true` in `config.lua` * If you want armory management you have to set `Config.EnableArmoryManagement` to `true` in `config.lua` * If you want license management you have to set `Config.EnableLicenses` to `true` in `config.lua` + * If you want service management you have to set `Config.MaxInService` to a higher value than `-1` in `config.lua` + # Legal ### License esx_policejob - police script for ESX -Copyright (C) 2015-2018 Jérémie N'gadi +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. diff --git a/__resource.lua b/__resource.lua index dca1b4b1..76c7da85 100644 --- a/__resource.lua +++ b/__resource.lua @@ -35,5 +35,6 @@ client_scripts { dependencies { 'es_extended', - 'esx_billing' + 'esx_billing', + 'esx_vehicleshop' } \ No newline at end of file