This commit is contained in:
Jérémie N'gadi
2017-08-08 19:15:40 +02:00
2 changed files with 20 additions and 3 deletions
+18 -1
View File
@@ -5,9 +5,26 @@ FXServer ES Extended
https://discord.me/fivem_esx
[SCREENSHOT]
![screenshot](http://i.imgur.com/aPFdJl3.jpg)
[DESCRIPTION]
Add support for accounts (bank / black money) you can also add others accounts
Add support for inventory (press F2 ingame) => Players can now remove items from inventory
Add support for jobs
Loadouts are saved in database and restored on spawn
Positions are saved in database and restored on spawn
[REQUIREMENTS]
- essentialmode-mysql : https://github.com/FXServer-ESX/fxserver-essentialmode-mysql
- essentialmode + es_admin => https://forum.fivem.net/t/release-essentialmode-base/3665
- esplugin_mysql => https://forum.fivem.net/t/release-essentialmode-base/3665/1181
[INSTALLATION]
+2 -2
View File
@@ -1,4 +1,4 @@
USE `gta5_gamemode_essential`;
USE `essentialmode`;
ALTER TABLE `users`
ADD COLUMN `name` VARCHAR(255) NULL DEFAULT '' AFTER `money`,
@@ -63,4 +63,4 @@ CREATE TABLE `user_inventory` (
`count` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
);