mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 02:38:53 +00:00
Final commit v2.0.0
This commit is contained in:
@@ -1,3 +1,40 @@
|
||||
# esx_drugs
|
||||
|
||||
This is a WIP re-write of the resource. Currently feautures a weed farm with actual weed plant objects.
|
||||
Adds the well-known drugs for the people who want to make quick money. Weed Field require you to run around and harvest weed plants, process and then sell at the beach of San Andreas!
|
||||
|
||||
## Download & Installation
|
||||
|
||||
### Using [fvm](https://github.com/qlaffont/fvm-installer)
|
||||
```
|
||||
fvm install --save --folder=esx esx-org/esx_drugs
|
||||
```
|
||||
|
||||
### Using Git
|
||||
```
|
||||
cd resources
|
||||
git clone https://github.com/ESX-Org/esx_drugs [esx]/esx_drugs
|
||||
```
|
||||
|
||||
### Manually
|
||||
- Download https://github.com/ESX-Org/esx_drugs/archive/master.zip
|
||||
- Put it in the `[esx]` directory
|
||||
|
||||
## Installation
|
||||
- Import `esx_drugs.sql` in your database
|
||||
- Add this in your `server.cfg`:
|
||||
|
||||
```
|
||||
start esx_drugs
|
||||
```
|
||||
|
||||
# Legal
|
||||
### License
|
||||
esx_drugs - drugs job
|
||||
|
||||
Copyright (C) 2015-2018 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
@@ -2,7 +2,7 @@ resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
|
||||
|
||||
description 'ESX Drugs'
|
||||
|
||||
version '0.1.0'
|
||||
version '2.0.0'
|
||||
|
||||
server_scripts {
|
||||
'@mysql-async/lib/MySQL.lua',
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
USE `essentialmode`;
|
||||
|
||||
INSERT INTO `items` (`name`, `label`, `limit`, `rare`, `can_remove`) VALUES
|
||||
('cannabis', 'Cannabis', 40, 0, 1)
|
||||
('marijuana', 'Marijuana', 14, 0, 1)
|
||||
;
|
||||
Reference in New Issue
Block a user